/* ==========================================
   Meow Bots — "Neon Aurora" Theme
   Shared stylesheet for all pages
   ========================================== */

:root {
  /* Purple-violet neon palette */
  --neon-pink: #ad73f7;
  --neon-purple: #7f64f3;
  --neon-blue: #67e8f9;
  --neon-green: #86efac;
  --neon-yellow: #fde68a;
  --neon-orange: #fdba74;

  /* Backgrounds */
  --bg: #0a0a1a;
  --bg-raised: #111327;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(127, 99, 243, 0.1);
  --border-hover: rgba(127, 99, 243, 0.3);

  /* Accents */
  --accent-violet: #7f64f3;
  --accent-pink: #ad73f7;
  --accent-cyan: #67e8f9;
  --accent-emerald: #86efac;
  --accent-amber: #fde68a;

  /* Text */
  --text-1: #f0f0ff;
  --text-2: #a0a0c0;
  --text-3: #6b6b8a;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--neon-purple), var(--neon-pink), var(--neon-blue));
  --gradient-glow: linear-gradient(135deg, var(--neon-purple), var(--neon-pink));

  --radius: 18px;
  --radius-sm: 12px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text-1);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ========== FLOATING PARTICLES ========== */
.particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  font-size: 1.2rem;
  animation: particleFloat linear infinite;
  opacity: 0;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(30px) rotate(360deg); opacity: 0; }
}

/* ========== AURORA / GLOW ORBS ========== */
.aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: orbFloat 20s ease-in-out infinite alternate;
}
.glow-orb:nth-child(1) {
  width: 550px; height: 550px;
  background: var(--neon-purple);
  top: -10%; left: -5%;
  animation-duration: 25s;
}
.glow-orb:nth-child(2) {
  width: 450px; height: 450px;
  background: var(--neon-pink);
  top: 35%; right: -10%;
  animation-duration: 20s;
  animation-delay: -5s;
}
.glow-orb:nth-child(3) {
  width: 400px; height: 400px;
  background: var(--neon-blue);
  bottom: 5%; left: 20%;
  animation-duration: 22s;
  animation-delay: -10s;
}
@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* ========== LAYOUT ========== */
.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== NAV ========== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10, 10, 26, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(153, 116, 248, 0.4));
  transition: transform 0.3s;
}
.brand:hover { transform: scale(1.08); }
.brand-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 480px) { .brand-text { display: none; } }
.nav-pills {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-pills a {
  display: block;
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}
.nav-pills a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-pills a:hover {
  color: var(--text-1);
  text-shadow: 0 0 20px rgba(153, 116, 248, 0.5);
}
.nav-pills a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neon-blue);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0; right: 0;
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s, padding 0.3s;
  z-index: 99;
  flex-direction: column;
}
.mobile-menu.open { display: flex; max-height: 300px; padding: 12px 24px; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-2);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--text-1); }

@media (max-width: 768px) {
  .nav-pills { display: none; }
  .hamburger { display: flex; }
}

/* ========== HERO — Bento Style ========== */
.hero-bento {
  padding: 32px 0 20px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.hero-main {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(153, 116, 248, 0.2);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 20px;
  background: rgba(153, 116, 248, 0.1);
  border: 1px solid rgba(153, 116, 248, 0.2);
  color: var(--neon-purple);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.hero-title .gradient-word {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(153, 116, 248, 0.25));
}
.hero-desc {
  color: var(--text-2);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 20px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  background: var(--gradient-glow);
  color: white;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 20px rgba(153, 116, 248, 0.2);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(153, 116, 248, 0.35);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-2);
  font-weight: 500;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

/* Stats bento cells */
.stat-cell {
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.stat-cell:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 24px rgba(153, 116, 248, 0.08);
}
.stat-cell .stat-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.stat-cell .stat-desc {
  font-size: 0.68rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-top: 3px;
}
.stat-cell:nth-child(1) .stat-number { color: var(--neon-purple); }
.stat-cell:nth-child(2) .stat-number { color: var(--neon-pink); }
.stat-cell:nth-child(3) .stat-number { color: var(--neon-blue); }
.stat-cell:nth-child(4) .stat-number { color: var(--neon-green); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  grid-row: 1 / 3;
}

@media (max-width: 900px) {
  .hero-bento {
    grid-template-columns: 1fr;
    padding: 32px 0 24px;
  }
  .hero-main { grid-row: auto; padding: 28px 24px; }
  .hero-stats { grid-row: auto; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .hero-stats { grid-template-columns: 1fr; }
}

/* ========== SECTION HEADERS ========== */
.section-head {
  padding: 40px 0 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.section-head h2 .accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-head p {
  color: var(--text-3);
  font-size: 0.85rem;
}

/* ========== LIVE COUNTER TICKER ========== */
.ticker {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  margin-bottom: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow-x: auto;
  flex-wrap: wrap;
  row-gap: 8px;
}
.ticker-title {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-2);
  white-space: nowrap;
  letter-spacing: 0.02em;
}
#ticker-updates {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  row-gap: 8px;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.ticker-item .label { color: var(--text-3); font-weight: 500; }
.ticker-item .value {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  background: var(--gradient-glow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.4;
  flex-shrink: 0;
}
.pulse-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--neon-green);
  animation: pulse 2s infinite;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(134, 239, 172, 0.5);
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(134, 239, 172, 0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(134, 239, 172, 0); }
}

/* ========== BOT CARDS — Horizontal Showcase ========== */
.bot-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 24px;
}

.bot-card-v2 {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.bot-card-v2:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(153, 116, 248, 0.06);
}
.bot-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  border-radius: 3px 0 0 3px;
  transition: opacity 0.3s;
}
.bot-card-v2:nth-child(1)::before { background: var(--neon-blue); box-shadow: 0 0 10px rgba(103, 232, 249, 0.25); }
.bot-card-v2:nth-child(2)::before { background: var(--neon-purple); box-shadow: 0 0 10px rgba(153, 116, 248, 0.25); }
.bot-card-v2:nth-child(3)::before { background: var(--neon-pink); box-shadow: 0 0 10px rgba(216, 139, 245, 0.25); }
.bot-card-v2:nth-child(4)::before { background: var(--neon-green); box-shadow: 0 0 10px rgba(134, 239, 172, 0.25); }

.bot-info {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
}
.bot-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.bot-avatar {
  width: 46px; height: 46px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(153, 116, 248, 0.12);
}
.bot-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.badge-v2 {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.badge-original {
  background: rgba(103, 232, 249, 0.12);
  color: var(--neon-blue);
  border: 1px solid rgba(103, 232, 249, 0.25);
  text-shadow: 0 0 10px rgba(103, 232, 249, 0.3);
}
.badge-beta {
  background: rgba(253, 230, 138, 0.1);
  color: var(--neon-yellow);
  border: 1px solid rgba(253, 230, 138, 0.2);
}
.status-v2 {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-3);
  white-space: nowrap;
}
.status-v2 .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #666;
  flex-shrink: 0;
}
.bot-desc {
  color: var(--text-2);
  font-size: 0.86rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* Command preview */
.cmd-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 16px;
  width: fit-content;
}
.cmd-preview .slash {
  color: var(--neon-purple);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(153, 116, 248, 0.4);
}

/* Feature chips */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.chip {
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  background: rgba(180, 109, 250, 0.06);
  color: var(--text-2);
  border: 1px solid rgba(180, 109, 250, 0.1);
  transition: all 0.3s;
}
.bot-card-v2:hover .chip {
  border-color: rgba(153, 116, 248, 0.2);
  background: rgba(153, 116, 248, 0.06);
}

.bot-actions-v2 {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.btn-invite {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-invite.primary {
  background: var(--gradient-glow);
  color: white;
  box-shadow: 0 4px 18px rgba(153, 116, 248, 0.2);
}
.btn-invite.primary:hover {
  box-shadow: 0 6px 28px rgba(153, 116, 248, 0.35);
  transform: translateY(-1px);
}
.btn-invite.secondary {
  background: transparent;
  color: var(--text-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-invite.secondary:hover {
  border-color: rgba(153, 116, 248, 0.3);
  color: var(--text-2);
}

/* Screenshot panel */
.bot-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.15);
  border-left: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bot-visual img {
  width: 100%;
  border-radius: var(--radius-sm);
  display: block;
  transition: transform 0.4s;
}
.bot-card-v2:hover .bot-visual img {
  transform: scale(1.03);
}
.bot-visual .no-img {
  color: var(--text-3);
  font-size: 0.75rem;
  text-align: center;
}
.bot-card-v2.no-visual {
  grid-template-columns: 1fr;
}

@media (max-width: 800px) {
  .bot-card-v2 { grid-template-columns: 1fr; }
  .bot-visual { border-left: none; border-top: 1px solid var(--border); max-height: 200px; }
}

/* ========== SERVERS SECTION ========== */
.servers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-bottom: 24px;
}
.server-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(12px);
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
}
.server-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 24px rgba(153, 116, 248, 0.05);
}
.server-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.server-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(153, 116, 248, 0.1);
}
.server-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.server-tagline {
  font-size: 0.82rem;
  color: var(--neon-pink);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(216, 139, 245, 0.2);
}
.server-desc {
  color: var(--text-2);
  font-size: 0.84rem;
  line-height: 1.6;
  margin-bottom: 14px;
}
.server-note {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 14px;
}
.age-gate {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  background: rgba(253, 230, 138, 0.08);
  border: 1px solid rgba(253, 230, 138, 0.15);
  color: var(--neon-yellow);
  font-size: 0.7rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.server-join { margin-top: auto; }
.server-join a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 10px;
  background: rgba(180, 109, 250, 0.1);
  border: 1px solid rgba(180, 109, 250, 0.2);
  color: var(--neon-purple);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}
.server-join a:hover {
  background: rgba(180, 109, 250, 0.18);
  border-color: rgba(180, 109, 250, 0.35);
  box-shadow: 0 0 16px rgba(153, 116, 248, 0.1);
}

@media (max-width: 700px) {
  .servers-grid { grid-template-columns: 1fr; }
}

/* ========== PARTNER CTA ========== */
.cta-banner {
  margin: 8px 0 40px;
  padding: 30px 36px;
  background: linear-gradient(135deg, rgba(255, 107, 245, 0.06), rgba(180, 109, 250, 0.06), rgba(103, 232, 249, 0.06));
  border: 1px solid rgba(180, 109, 250, 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-banner h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.cta-banner p {
  color: var(--text-3);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* ========== FOOTER ========== */
.footer-v2 {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-v2 .footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-v2 a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}
.footer-v2 a:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 10px rgba(153, 116, 248, 0.3);
}
.footer-v2 .footer-copy {
  color: var(--text-3);
  font-size: 0.72rem;
}

/* ========== CONTENT SECTIONS (for sub-pages) ========== */
.content-section {
  padding: 40px 0 24px;
}
.content-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.content-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-primary);
  box-shadow: 0 0 16px rgba(153, 116, 248, 0.2);
}
.content-card h1, .content-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.content-card h1 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.content-card .subtitle {
  color: var(--text-3);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.content-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.content-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}
.content-card p {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.content-card ul, .content-card ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.content-card li {
  color: var(--text-2);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.content-card strong {
  color: var(--text-1);
}
.content-card a {
  color: var(--neon-purple);
  text-decoration: none;
  transition: all 0.3s;
}
.content-card a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px rgba(180, 109, 250, 0.3);
}
.content-card code {
  background: rgba(127, 99, 243, 0.15);
  border: 1px solid rgba(127, 99, 243, 0.25);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  color: var(--neon-pink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
}
.content-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}

/* Bot tabs for sub-pages */
.bot-tab {
  padding: 0.7rem 1.3rem;
  background: rgba(127, 99, 243, 0.08);
  border: 1px solid rgba(127, 99, 243, 0.2);
  color: var(--text-2);
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s;
  font-family: 'Outfit', sans-serif;
}
.bot-tab.active {
  background: rgba(127, 99, 243, 0.18);
  border-color: rgba(127, 99, 243, 0.4);
  color: var(--neon-purple);
  box-shadow: 0 0 12px rgba(127, 99, 243, 0.1);
}
.bot-tab:hover {
  border-color: rgba(127, 99, 243, 0.35);
  color: var(--text-1);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== PATCH NOTES ========== */
.patch-notes-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 6px var(--neon-pink);
  vertical-align: middle;
  margin-left: 4px;
  position: relative;
  top: -1px;
}
.patch-last-updated {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neon-pink);
  background: rgba(179, 144, 247, 0.12);
  border: 1px solid rgba(179, 144, 247, 0.35);
  border-radius: 10px;
  padding: 0.1rem 0.45rem;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.patch-new-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 6px var(--neon-pink);
  vertical-align: middle;
  margin-right: 5px;
  flex-shrink: 0;
}
.patch-age {
  color: var(--neon-pink);
  font-size: 0.8rem;
  font-weight: 600;
  margin-left: 0.4rem;
}
