body {
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  background: radial-gradient(circle at top, #020617, #000);
  color: #e5e7eb;
}

/* HERO */
.hero {
  text-align: center;
  padding: 90px 20px 50px;
}

.hero-top {
  color: #00ffa6;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero p {
  max-width: 720px;
  margin: auto;
  color: #9ca3af;
}

/* GRID */
.tools-grid {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px 80px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 22px;
}

/* CARD */
.tool-card {
  background: linear-gradient(180deg, #0f172a, #020617);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.25s ease;
}

.tool-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 0 30px rgba(0,255,170,0.18);
}

.tool-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.tool-content {
  padding: 18px;
}

.tool-tag {
  display: inline-block;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(0,255,170,0.15);
  color: #00ffa6;
  margin-bottom: 10px;
}

.tool-title {
  font-weight: 600;
  font-size: 18px;
}

.tool-desc {
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

/* BUTTON */
.tool-btn {
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  background: #00ffa6;
  color: #000;
  border-radius: 8px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}

.tool-btn:hover {
  background: #7cffd2;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 50px 0;
  font-size: 13px;
  color: #6b7280;
}

footer span {
  color: #00ffa6;
}

.filters {
  text-align: center;
  margin-bottom: 30px;
}

.filters button {
  margin: 6px;
  padding: 8px 16px;
  background: #020617;
  border: 1px solid rgba(255,255,255,0.1);
  color: #00ffa6;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.filters button:hover {
  background: rgba(0,255,170,0.15);
}

.booking-row {
  max-width: 1100px;
  margin: 10px auto 45px;
  padding: 22px 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15,23,42,0.9), rgba(2,6,23,0.95));
  border: 1px solid rgba(0,255,170,0.18);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  box-shadow: inset 0 0 18px rgba(0,255,170,0.06), 0 0 25px rgba(0,255,170,0.08);
}

.booking-label {
  color: #00ffa6;
  font-size: 12px;
  letter-spacing: 2px;
}

.booking-text h3 {
  font-size: 20px;
  margin: 6px 0 4px;
}

.booking-text p {
  font-size: 13px;
  color: #9ca3af;
}

.booking-btn {
  padding: 10px 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, #00ffa6, #22c55e);
  color: #000;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.booking-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,170,0.35);
}

.social-bar {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 18px;
}

.social-bar a {
  margin: 0 14px;
  font-size: 14px;
  color: #9ca3af;
  text-decoration: none;
  transition: 0.2s ease;
}

.social-bar a:hover {
  color: #00ffa6;
  text-shadow: 0 0 12px rgba(0,255,170,0.6);
}

.email { 
  background: linear-gradient(135deg, #f59e0b, #f97316); 
}
/* SOCIAL SECTION (NEW PREMIUM FOOTER) */
.social-section {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 35px;
}

.social-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.social-subtitle {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 22px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: 0.2s ease;
}

/* Platform colors */
.youtube { background: #ff0033; }
.twitter { background: #1d9bf0; }
.telegram { background: #229ed9; }
.email { background: linear-gradient(135deg, #f59e0b, #f97316); }

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

.site-disclaimer {
  max-width: 1100px;
  margin: 40px auto 10px;
  padding: 14px 18px;
  font-size: 12px;
  text-align: center;
  color: #fca5a5;
  background: linear-gradient(180deg, rgba(15,23,42,0.9), rgba(2,6,23,0.95));
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 14px;
  line-height: 1.6;
}

/* ===========================
   MOBILE FIXES — JOSHIQUANT
   =========================== */

@media (max-width: 900px) {

@media (max-width: 900px) {

  /* FILTER TAGS — SINGLE LINE FOREVER */
  .filters {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    justify-content: flex-start;
    padding: 6px 4px 10px;
    scroll-behavior: smooth;
  }

  .filters button {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 6px 14px;
    font-size: 13px;
    border-radius: 999px;
  }

  /* Hide scrollbar but keep swipe */
  .filters::-webkit-scrollbar {
    display: none;
  }
}

  /* Mentorship card */
  .mentorship-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    text-align: left;
  }

  .mentorship-card h3 {
    font-size: 1.05rem;
    line-height: 1.3;
  }

  .mentorship-card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .mentorship-card .book-btn {
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Tool cards */
  .tool-card {
    padding: 14px;
    border-radius: 14px;
  }

  .tool-card h3 {
    font-size: 1rem;
  }

  .tool-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 0.9rem;
  }
}
@media (max-width: 900px) {

  .booking-row {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
  }

  .booking-btn {
    width: auto;
    min-width: 160px;
    padding: 9px 18px;
    font-size: 14px;
    border-radius: 999px;
    margin-top: 6px;
  }
}

