@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700;800&family=Outfit:wght@600;700;800;900&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --navy: #06183d;
  --fbla-blue: #002e7a;
  --blue: #1D52BC;
  --cobalt: #2563eb;
  --gold: #F4AB19;
  --gold-light: #fff8eb;
  --gold-glow: rgba(244, 171, 25, 0.45);
  --blue-glow: rgba(37, 99, 235, 0.55);
  --red: #C51F2B;
  --ink: #0b152b;
  --muted: #5e718d;
  --paper: #f8faff;
  --white: #ffffff;
  --card-bg: #ffffff;
  --card-border: rgba(215, 228, 245, 0.85);
  --card-shadow: 0 16px 40px rgba(11, 21, 43, 0.05);
  --nav-bg: rgba(6, 24, 61, 0.94);
  --input-bg: #ffffff;
  --input-border: #d2deee;
  --switch-track: rgba(255, 255, 255, 0.22);
  --switch-thumb: #ffffff;
  --radius-sm: 16px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --radius-full: 9999px;
}

[data-theme="dark"] {
  --navy: #06183d;
  --ink: #eaf0fc;
  --muted: #cbdcf7;
  --paper: #080e1c;
  --white: #10192e;
  --card-bg: #10192e;
  --card-border: #1d2c4c;
  --card-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(4, 10, 22, 0.96);
  --input-bg: #15223e;
  --input-border: #23355d;
  --gold-light: #201a0d;
  --switch-track: #2563eb;
  --switch-thumb: #ffffff;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';

  line-height: 1.8;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .stat b, .event-date, .countdown-val, .team-name {
  font-family: 'Fredoka', 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3, 
[data-theme="dark"] .stat b,
[data-theme="dark"] .event-banner h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .team-name {
  color: #ffffff !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .card p,
[data-theme="dark"] .lead {
  color: #d1dff7 !important;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  font-weight: 600;
}
a { text-decoration: none; }

/* Sticky Navigation with Hide-on-Scroll Behavior */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  max-width: 1280px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-holder {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: #ffffff;
  padding: 4px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.nav-logo-holder:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px var(--gold-glow);
}
.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #fff !important;
  line-height: 1.2;
  letter-spacing: 0.2px;
}
/* .brand-text span removed for plain text */

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-btn {
  color: #dbe6fa;
  font-family: 'Fredoka', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s ease;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
}
.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  min-width: 190px;
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  z-index: 150;
  border: 1px solid rgba(255,255,255,0.1);
}
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}
.nav-dropdown-content a {
  color: #dbe6fa;
  padding: 8px 16px;
  display: block;
  font-size: 13px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  text-align: left;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.nav-dropdown-content a:hover {
  background: rgba(244, 171, 25, 0.2) !important;
  color: #fff !important;
  transform: none !important;
}

.nav-links > a {
  color: #dbe6fa;
  font-family: 'Fredoka', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.25s ease;
}
.nav-links > a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-switch-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.theme-label {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #d1dff6;
  text-transform: uppercase;
}
.switch-btn {
  position: relative;
  width: 38px;
  height: 22px;
  background: var(--switch-track);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  outline: none;
  transition: background 0.25s ease;
}
.switch-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background: var(--switch-thumb);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
[data-theme="dark"] .switch-knob {
  transform: translateX(16px);
}

.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px 4px;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  transition: all 0.25s ease;
}
.hamburger-btn:hover { background: rgba(255, 255, 255, 0.2); }
.hamburger-line {
  width: 16px;
  height: 2px;
  background: #ffffff;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger-btn.active .hamburger-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger-btn.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-btn.active .hamburger-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--nav-bg);
  padding: 16px 20px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 6px;
  text-align: center;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  color: #d1dff6;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  transition: all 0.2s ease;
}
.mobile-nav-drawer a:hover, .mobile-nav-drawer a:active {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 0 14px var(--gold-glow);
}

/* Hero Section */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 18%, #286ee6 0%, #1545b5 30%, #092670 65%, #051336 100%);
  color: #fff;
  padding: clamp(80px, 9vw, 120px) 24px clamp(90px, 10vw, 130px);
  overflow: hidden;
}
.hero-wrap {
  max-width: 1440px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(35px, 5vw, 60px);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(244, 171, 25, 0.16);
  border: 1.5px solid rgba(244, 171, 25, 0.4);
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffe699;
  margin-bottom: 18px;
  box-shadow: 0 0 12px rgba(244, 171, 25, 0.2);
}
.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  color: #fff !important;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 17.5px;
  color: #d6e4fa;
  max-width: 580px;
  margin-bottom: 30px;
  line-height: 1.75;
  font-weight: 600;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 18px var(--gold-glow);
}
.btn-gold:hover, .btn-gold:active {
  transform: translateY(-2.5px) scale(1.02);
  box-shadow: 0 0 22px var(--gold-glow), 0 8px 20px rgba(244, 171, 25, 0.5);
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
}
.btn-outline:hover, .btn-outline:active {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
  transform: translateY(-2.5px);
}

/* Showcase Card with Stacked Logos & Transparent Glass Background */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4vw, 44px) clamp(24px, 3vw, 36px);
  box-shadow: 0 25px 65px rgba(2, 10, 30, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.stacked-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.logo-box-stacked {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
}
.logo-box-stacked:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px var(--gold-glow);
}
.card-logo-img {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Countdown Bar with Large Subheader Size Heading */
.countdown-box {
  background: linear-gradient(135deg, #071b45, #11347a);
  border-radius: var(--radius-full);
  padding: 20px 32px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  border: 1.5px solid rgba(244, 171, 25, 0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.countdown-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.countdown-timer {
  display: flex;
  gap: 14px;
}
.countdown-item {
  text-align: center;
}
.countdown-val {
  font-size: 28px;
  line-height: 1;
  color: #fff;
  display: block;
}
.countdown-lbl {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #a5bfe8;
  text-transform: uppercase;
}

/* Sections */
.section {
  max-width: 1440px;
  margin: auto;
  padding: clamp(60px, 8vw, 95px) 24px;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.18;
  margin-bottom: 16px;
}
.lead {
  font-size: 17.5px;
  color: var(--muted);
  max-width: 760px;
  margin-bottom: 30px;
  line-height: 1.8;
  font-weight: 600;
}

.stats-grid, .cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 28px;
  align-items: stretch;
}
.stat-card {
  background: var(--card-bg);
  padding: 30px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 22px rgba(244, 171, 25, 0.2);
}
.stat-card b {
  display: block;
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 6px;
}
.stat-card span {
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 1px;
}

.event-banner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4.5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: center;
  box-shadow: var(--card-shadow);
}
.event-date {
  font-size: clamp(40px, 5vw, 50px);
  color: var(--cobalt);
  line-height: 1;
  margin-bottom: 8px;
}
.event-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(197, 31, 43, 0.08);
  border-radius: var(--radius-full);
  font-family: 'Fredoka', 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}
.event-banner h2 {
  font-size: clamp(34px, 4.5vw, 48px) !important;
  font-weight: 800 !important;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.15;
}
.event-badge {
  background: linear-gradient(135deg, var(--navy), var(--fbla-blue));
  border-radius: var(--radius-md);
  padding: 26px;
  color: #fff;
}
.event-badge span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ffd875;
  display: block;
  margin-bottom: 6px;
}
.event-badge strong {
  display: block;
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
}
.event-badge p { color: #d1dff7; font-size: 14px; font-weight: 600; }

.social-hub-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--card-shadow);
  margin-top: 28px;
  position: relative;
}
.social-buttons-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid var(--card-border);
  background: var(--paper);
  color: var(--ink);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.social-btn svg { width: 18px; height: 18px; fill: currentColor; }
.social-btn.insta:hover {
  background: #e1306c; color: #fff; border-color: #e1306c;
  box-shadow: 0 0 18px rgba(225, 48, 108, 0.45); transform: translateY(-2.5px);
}
.social-btn.facebook:hover {
  background: #1877f2; color: #fff; border-color: #1877f2;
  box-shadow: 0 0 18px rgba(24, 119, 242, 0.45); transform: translateY(-2.5px);
}
.social-btn.email-btn {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.social-btn.email-btn:hover {
  background: var(--cobalt); border-color: var(--cobalt);
  box-shadow: 0 0 18px var(--blue-glow); transform: translateY(-2.5px);
}

.tbh-popup-toast {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  max-width: 360px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 25px var(--gold-glow);
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.tbh-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Fredoka', sans-serif;
  font-weight: 800;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.tbh-popup-toast h4 { font-family: 'Fredoka', sans-serif; font-size: 17px; margin-bottom: 6px; color: #fff; }
.tbh-popup-toast p { font-size: 13.5px; color: #d1dff6; margin-bottom: 10px; line-height: 1.5; font-weight: 600; }
.tbh-close-btn {
  background: rgba(255, 255, 255, 0.15); border: none; color: #fff;
  padding: 5px 12px; border-radius: var(--radius-full); font-family: 'Fredoka', sans-serif;
  font-size: 12px; font-weight: 700; cursor: pointer;
}
.tbh-close-btn:hover { background: var(--gold); color: var(--navy); }

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(11, 21, 43, 0.08); }
.card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  background: var(--gold-light);
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #b57a02;
  width: fit-content;
  margin-bottom: 14px;
}
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { font-size: 15px; line-height: 1.7; font-weight: 500; }

.card-pillar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 14px;
  width: fit-content;
}
.tag-ai { background: #e0f2fe; color: #0369a1; }
.tag-cloud { background: #ede9fe; color: #6d28d9; }
.tag-game { background: #fce7f3; color: #be185d; }

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 38px);
  max-width: 760px;
  margin: 20px 0;
  box-shadow: var(--card-shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: 'Fredoka', sans-serif;
  font-size: 14.5px; font-weight: 700; margin-bottom: 8px; color: var(--ink);
}
.form-control {
  width: 100%; padding: 13px 18px; border-radius: var(--radius-sm);
  border: 1px solid var(--input-border); background: var(--input-bg);
  color: var(--ink); font-size: 15px; font-family: inherit; font-weight: 600;
  transition: border-color 0.2s ease;
}
.form-control:focus { outline: none; border-color: var(--cobalt); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.alert-success {
  display: none; background: #10b981; color: #fff; padding: 14px 22px;
  border-radius: var(--radius-sm); font-family: 'Fredoka', sans-serif;
  font-weight: 700; margin-top: 16px; font-size: 14.5px;
}

.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.faq-item {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-md); padding: clamp(18px, 3vw, 24px) clamp(20px, 3vw, 28px);
  cursor: pointer; transition: all 0.2s ease;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Fredoka', sans-serif; font-weight: 700; font-size: 17px; color: var(--ink); gap: 14px;
}
.faq-answer { display: none; margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.75; font-weight: 500; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-icon { 
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
  color: var(--gold); flex-shrink: 0; display: inline-flex;
  align-items: center; justify-content: center; width: 26px; height: 26px;
  background: var(--gold-light); border-radius: var(--radius-full);
}

.page-hero { background: var(--navy); color: #fff; padding: clamp(60px, 7vw, 80px) 24px; }
.page-hero-wrap { max-width: 1440px; margin: auto; }
.page-hero h1 { font-size: clamp(32px, 5vw, 54px); color: #fff !important; margin: 10px 0 14px; }
.page-hero p { color: #cbdcf7; font-size: 17.5px; max-width: 700px; line-height: 1.8; font-weight: 600; }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 28px;
}
.team-member {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-md); padding: 30px 22px; text-align: center;
  box-shadow: var(--card-shadow); display: flex; flex-direction: column;
  align-items: center; justify-content: center; transition: transform 0.2s ease;
}
.team-member:hover { transform: translateY(-4px); }
.avatar {
  width: 86px; height: 86px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, #e3ecfc, #ccdffc); border: 3px solid rgba(29, 82, 188, 0.12);
  color: var(--blue); font-family: 'Fredoka', sans-serif; font-size: 26px; font-weight: 800;
  display: grid; place-items: center; margin: 0 auto 14px;
}
.team-member .role {
  display: inline-block; padding: 4px 12px; background: rgba(29, 82, 188, 0.07);
  border-radius: var(--radius-full); font-family: 'Fredoka', sans-serif; font-size: 11.5px;
  font-weight: 700; letter-spacing: 1.2px; color: var(--blue); text-transform: uppercase; margin-bottom: 8px;
}
.team-name { font-family: 'Fredoka', sans-serif; font-size: 19px; font-weight: 700; margin-top: 2px; }

.history-notice-banner {
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.1), rgba(197, 31, 43, 0.06));
  border: 1.5px solid rgba(244, 171, 25, 0.4); border-radius: var(--radius-md);
  padding: 20px 24px; margin-top: 24px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px;
}
.history-notice-banner strong { font-family: 'Fredoka', sans-serif; color: var(--gold); font-size: 15px; }
.history-notice-banner p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; font-weight: 600; }

footer {
  background: #030d24; color: #9ab0d3; padding: 44px 24px 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-wrap {
  max-width: 1440px; margin: auto; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 22px;
}
.footer-brand { font-family: 'Fredoka', sans-serif; font-size: 18px; font-weight: 700; color: #ffffff; letter-spacing: 0.2px; }
.footer-sub { font-size: 13px; color: #8da4ca; font-weight: 600; margin-top: 4px; }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-pill-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full); color: #ffe494 !important; font-family: 'Fredoka', sans-serif;
  font-size: 13.5px; font-weight: 700; transition: all 0.25s ease;
}
.footer-pill-btn:hover { background: rgba(244, 171, 25, 0.2); border-color: var(--gold); transform: translateY(-2px); }
.footer-copyright {
  width: 100%; padding-top: 20px; margin-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'Fredoka', sans-serif; font-size: 13px; font-weight: 600; color: #7b92b6;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copyright span { color: #ffd875; }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger-btn { display: flex; }
  .hero-wrap { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-wrap p { margin-left: auto; margin-right: auto; }
  .btn-group { justify-content: center; }
  .countdown-box { justify-content: center; text-align: center; }
  .section { text-align: center; }
  .section .lead, .kicker { margin-left: auto; margin-right: auto; }
  .event-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .event-meta { margin-left: auto; margin-right: auto; }
  .event-badge { text-align: center; width: 100%; }
  .card { text-align: center; align-items: center; }
  .card-num, .card-pillar-tag { margin-left: auto; margin-right: auto; }
  .footer-wrap { flex-direction: column; text-align: center; }
  .footer-links, .footer-copyright, .social-buttons-row { justify-content: center; }
}

/* Professional Georgia FBLA Chapter Centered Theme Polish */
.hero-wrap {
  text-align: center;
  justify-items: center;
}
.hero-wrap div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero p, .hero-wrap p {
  margin-left: auto;
  margin-right: auto;
}
.btn-group {
  justify-content: center;
}
.countdown-box {
  margin-left: auto;
  margin-right: auto;
}
.section {
  text-align: center;
}
.lead {
  margin-left: auto;
  margin-right: auto;
}
.kicker {
  margin-left: auto;
  margin-right: auto;
}
.card, .stat-card, .team-member {
  text-align: center;
  align-items: center;
}
.card-num, .card-pillar-tag {
  margin-left: auto;
  margin-right: auto;
}
.form-card {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.form-group label {
  text-align: center;
}

/* Enhanced UI Interactivity & Full Centering Polish */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.section, .hero, .page-hero, .form-card, .card, .stat-card, .team-member, .event-banner, .social-hub-card, .countdown-box {
  margin-left: auto;
  margin-right: auto;
}
.hero-wrap, .event-banner, .stats-grid, .cards-grid, .team-grid {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.card, .stat-card, .team-member, .logo-box-stacked, .social-btn, .btn {
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.card:hover, .stat-card:hover, .team-member:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.15);
  border-color: var(--cobalt);
}
.social-btn:hover {
  transform: translateY(-3px) scale(1.04);
}
.form-control:hover {
  border-color: var(--cobalt);
}
.faq-item {
  transition: all 0.25s ease;
}
.faq-item:hover {
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* v44 Layout Broadening & Perfectly Centered Social Buttons */
.nav-wrap, .hero-wrap, .section, .page-hero-wrap, .footer-wrap {
  max-width: 100% !important;
}
.social-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}
.social-btn.tiktok:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.45);
  transform: translateY(-2.5px);
}

/* v45 Full-Width Page Hero & Smoother, Softer, Larger UI Holders */
.page-hero {
  width: 100% !important;
  max-width: 100% !important;
  padding: clamp(70px, 8vw, 95px) 32px !important;
  text-align: center;
}
.page-hero-wrap {
  max-width: 1440px !important;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.page-hero p {
  max-width: 820px !important;
  font-size: 19px !important;
}
body {
  font-size: 18px !important;
  line-height: 1.85 !important;
}
p {
  font-size: 17.5px !important;
}
.card, .stat-card, .form-card, .social-hub-card, .event-banner, .faq-item, .logo-box-stacked {
  border-radius: 36px !important;
  border: 1.5px solid rgba(215, 228, 245, 0.9) !important;
  box-shadow: 0 20px 45px rgba(11, 21, 43, 0.06) !important;
}
.countdown-box {
  border-radius: 9999px !important;
}

/* v47 Balanced Spacing & Compact, Sleek, Interactive UI Design */
body {
  background: var(--paper) !important;
  color: var(--ink) !important;
}

.section {
  padding: clamp(40px, 6vw, 70px) 24px !important;
  max-width: 1200px !important;
}

.card, .stat-card, .form-card, .social-hub-card, .event-banner, .faq-item, .logo-box-stacked {
  border-radius: 24px !important;
  padding: 24px 22px !important;
  box-shadow: 0 10px 30px rgba(11, 21, 43, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.card:hover, .stat-card:hover, .team-member:hover, .faq-item:hover {
  transform: translateY(-5px) scale(1.02) !important;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12) !important;
  border-color: var(--cobalt) !important;
}

.hero {
  padding: clamp(60px, 7vw, 90px) 24px clamp(70px, 8vw, 100px) !important;
}

.social-buttons-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

/* v48 Aesthetic & Cute Stat Cards Redesign */
.aesthetic-chapter-box {
  background: linear-gradient(135deg, rgba(29, 82, 188, 0.05), rgba(244, 171, 25, 0.08));
  border: 2px dashed rgba(29, 82, 188, 0.25);
  border-radius: 36px;
  padding: clamp(35px, 5vw, 55px) clamp(24px, 4vw, 40px);
  box-shadow: 0 16px 40px rgba(11, 21, 43, 0.04);
  transition: all 0.35s ease;
}

.aesthetic-chapter-box:hover {
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow);
}

.stat-card-cute {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.stat-icon-bubble {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold-light);
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(244, 171, 25, 0.25);
  transition: transform 0.3s ease;
}

.stat-card-cute:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(244, 171, 25, 0.2);
}

.stat-card-cute:hover .stat-icon-bubble {
  transform: scale(1.15) rotate(10deg);
}

.stat-card-cute b {
  font-family: 'Fredoka', sans-serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 4px;
}

[data-theme="dark"] .stat-card-cute b {
  color: #fff !important;
}

.stat-card-cute span {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* v49 Cuter, Compact Event Banner & Larger Social Icons */
.event-banner-cute {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 24px;
}
.event-banner-cute:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(244, 171, 25, 0.2);
}
.event-banner-left {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
}
.event-date-badge-cute {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  color: #fff;
  border-radius: 20px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
  flex-shrink: 0;
}
.ed-month {
  font-family: 'Fredoka', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}
.ed-day {
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.event-meta-cute {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}
.event-badge-cute {
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.12), rgba(37, 99, 235, 0.08));
  border: 1.5px solid rgba(244, 171, 25, 0.3);
  border-radius: 22px;
  padding: 20px 24px;
  text-align: center;
  flex-shrink: 0;
  min-width: 220px;
}
.eb-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.event-badge-cute span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.event-badge-cute strong {
  font-size: 18px;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}
[data-theme="dark"] .event-badge-cute strong {
  color: #fff !important;
}
.event-badge-cute p {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

/* Larger Social Icons & Cuter Spacing */
.social-btn {
  padding: 12px 24px !important;
  font-size: 15px !important;
  border-radius: 20px !important;
  border-width: 2px !important;
}
.social-btn svg {
  width: 22px !important;
  height: 22px !important;
}

@media (max-width: 960px) {
  .event-banner-cute {
    flex-direction: column;
    text-align: center;
  }
  .event-banner-left {
    flex-direction: column;
    text-align: center;
  }
}

/* v50 Clean, Simple, Interactive Event Banner with SVG Arrow */
.event-banner-simple {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 24px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}

.event-banner-simple:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 18px 40px var(--gold-glow);
}

.eb-left {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.eb-date-box {
  background: linear-gradient(135deg, var(--navy), var(--cobalt));
  color: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.2);
  flex-shrink: 0;
}

.eb-m {
  font-family: 'Fredoka', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--gold);
  display: block;
}

.eb-d {
  font-family: 'Fredoka', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.eb-sub {
  font-family: 'Fredoka', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.eb-info h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

[data-theme="dark"] .eb-info h3 {
  color: #fff !important;
}

.eb-info p {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  max-width: 520px;
}

.eb-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.eb-loc-pill {
  background: var(--gold-light);
  color: #b57a02;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(244, 171, 25, 0.3);
}

.eb-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Fredoka', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--cobalt);
  transition: transform 0.3s ease;
}

.cute-arrow-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-banner-simple:hover .cute-arrow-svg {
  transform: translateX(6px);
}

@media (max-width: 960px) {
  .event-banner-simple {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .eb-left {
    flex-direction: column;
    text-align: center;
  }
  .eb-right {
    align-items: center;
  }
  .eb-info p {
    max-width: 100%;
  }
}

/* v51 Translucent Red Warning & Notice Banners */
.warning-box-red {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.1), rgba(197, 31, 43, 0.05)) !important;
  border: 1.5px solid rgba(197, 31, 43, 0.35) !important;
  border-left: 5px solid var(--red) !important;
  border-radius: 24px !important;
  box-shadow: 0 12px 30px rgba(197, 31, 43, 0.08) !important;
}

.warning-box-red strong {
  color: var(--red) !important;
}

[data-theme="dark"] .warning-box-red {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.18), rgba(197, 31, 43, 0.08)) !important;
  border-color: rgba(197, 31, 43, 0.5) !important;
}

[data-theme="dark"] .warning-box-red strong {
  color: #ff6b75 !important;
}

/* v53 Rounder Hero & Cute Accept Cookies Banner */
.hero {
  border-bottom-left-radius: 56px !important;
  border-bottom-right-radius: 56px !important;
  margin: 0 auto;
  max-width: 1400px;
  box-shadow: 0 20px 50px rgba(6, 24, 61, 0.15);
}

.cookie-consent-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  z-index: 999;
  background: var(--navy);
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 28px;
  padding: 18px 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 25px var(--gold-glow);
  display: flex;
  align-items: center;
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  color: #d1dff6;
  text-align: center;
}

.cookie-btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

@media(min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

/* v54 Streamlined Mobile & Compact UI */
@media (max-width: 960px) {
  .hero-wrap {
    padding: 20px 0;
    gap: 20px;
  }
  .hero h1 {
    font-size: 32px !important;
  }
  .hero p {
    font-size: 15px !important;
  }
  .section {
    padding: 30px 16px !important;
  }
  .card, .stat-card, .form-card, .social-hub-card, .event-banner-simple {
    padding: 18px 16px !important;
    border-radius: 20px !important;
  }
  .countdown-box {
    padding: 14px 18px !important;
    flex-direction: column;
    gap: 10px;
  }
  .countdown-timer {
    gap: 10px;
  }
}

/* v56 Cuter, Even, Larger Warning & Disclaimer Boxes */
.warning-box-red {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.08), rgba(244, 171, 25, 0.06)) !important;
  border: 2px solid rgba(197, 31, 43, 0.3) !important;
  border-left: 8px solid var(--red) !important;
  border-radius: 32px !important;
  padding: 32px 36px !important;
  box-shadow: 0 16px 45px rgba(197, 31, 43, 0.1) !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.warning-box-red:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 55px rgba(197, 31, 43, 0.16) !important;
  border-color: var(--red) !important;
}

.warning-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.warning-title-wrap span {
  font-size: 26px;
  background: rgba(197, 31, 43, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.warning-box-red strong {
  color: var(--red) !important;
  font-size: 17px !important;
}

[data-theme="dark"] .warning-box-red {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.2), rgba(244, 171, 25, 0.08)) !important;
  border-color: rgba(197, 31, 43, 0.5) !important;
}

[data-theme="dark"] .warning-box-red strong {
  color: #ff6b75 !important;
}

/* v59 Gorgeous Modern Meeting Notice Card Redesign */
.meeting-notice-card {
  background: var(--card-bg);
  border: 2px solid rgba(197, 31, 43, 0.25);
  border-left: 6px solid var(--red);
  border-radius: 28px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 14px 35px rgba(197, 31, 43, 0.08);
  margin-top: 28px;
  margin-bottom: 28px;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meeting-notice-card:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 45px rgba(197, 31, 43, 0.15);
  border-color: var(--red);
}

.mnc-icon-wrap {
  background: rgba(197, 31, 43, 0.1);
  color: var(--red);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mnc-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mnc-content h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 6px;
}

[data-theme="dark"] .mnc-content h4 {
  color: #ff6b75 !important;
}

.mnc-content p {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* v60 Clean Warning Card styling without card clashing */
.warning-card {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.08), rgba(244, 171, 25, 0.06));
  border: 2px solid rgba(197, 31, 43, 0.3);
  border-left: 8px solid var(--red) !important;
  border-radius: 32px;
  padding: 32px 36px;
  box-shadow: 0 16px 45px rgba(197, 31, 43, 0.1);
  margin-top: 30px;
  max-width: 760px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.warning-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 22px 55px rgba(197, 31, 43, 0.16);
  border-color: var(--red);
}

.warning-card strong {
  color: var(--red);
}

[data-theme="dark"] .warning-card {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.2), rgba(244, 171, 25, 0.08));
  border-color: rgba(197, 31, 43, 0.5);
}

[data-theme="dark"] .warning-card strong {
  color: #ff6b75;
}

/* v61 Clean Team Grid Spacing & News Highlight Card */
.team-grid {
  gap: 28px !important;
  margin-top: 36px !important;
}

.team-member {
  padding: 36px 24px !important;
  gap: 8px !important;
  border-radius: 28px !important;
}

.team-member .avatar {
  margin-bottom: 8px !important;
}

.team-member .role {
  margin-bottom: 4px !important;
}

.news-highlight-card {
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 36px 40px;
  max-width: 800px;
  margin: 32px auto 0;
  text-align: left;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.news-highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 45px rgba(244, 171, 25, 0.15);
}

.nhc-badge {
  display: inline-block;
  background: var(--gold-light);
  color: #b57a02;
  font-family: 'Fredoka', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
  border: 1px solid rgba(244, 171, 25, 0.3);
}

.news-highlight-card h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
}

[data-theme="dark"] .news-highlight-card h3 {
  color: #fff !important;
}

.news-highlight-card p {
  font-size: 15.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  line-height: 1.7;
}

/* v63 Cute Timeline Styling */
.cute-timeline {
  position: relative;
  max-width: 800px;
  margin: 45px auto 0;
  padding-left: 32px;
  text-align: left;
}

.cute-timeline::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 11px;
  width: 3px;
  background: linear-gradient(to bottom, var(--cobalt), var(--gold));
  border-radius: var(--radius-full);
}

.ct-item {
  position: relative;
  margin-bottom: 32px;
  background: var(--card-bg);
  border: 1.5px solid var(--card-border);
  border-radius: 24px;
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ct-item:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(244, 171, 25, 0.15);
}

.ct-dot {
  position: absolute;
  left: -40px;
  top: 28px;
  width: 18px;
  height: 18px;
  background: var(--cobalt);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue-glow);
}

.ct-dot-gold {
  background: var(--gold) !important;
  box-shadow: 0 0 12px var(--gold-glow) !important;
}

.ct-date {
  font-family: 'Fredoka', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.ct-content h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

[data-theme="dark"] .ct-content h3 {
  color: #fff !important;
}

.ct-content p {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
}

.ct-coming-soon {
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.08), rgba(37, 99, 235, 0.05));
  border-color: rgba(244, 171, 25, 0.4);
}

/* v64 Compact Mobile Countdown Styling */
@media (max-width: 960px) {
  .countdown-box {
    padding: 14px 20px !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 10px !important;
    border-radius: 24px !important;
  }
  .countdown-title {
    font-size: 14px !important;
    letter-spacing: 0.3px !important;
  }
  .countdown-timer {
    gap: 8px !important;
  }
  .countdown-val {
    font-size: 20px !important;
  }
  .countdown-lbl {
    font-size: 9px !important;
  }
}

/* v67 Expired Countdown Translucent Red Message */
.countdown-expired-msg {
  background: linear-gradient(135deg, rgba(197, 31, 43, 0.15), rgba(244, 171, 25, 0.1)) !important;
  border: 2px solid rgba(197, 31, 43, 0.35) !important;
  border-left: 8px solid var(--red) !important;
  border-radius: var(--radius-full);
  padding: 20px 32px;
  margin-top: 32px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(197, 31, 43, 0.12);
  animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.countdown-expired-msg span {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.3px;
}

[data-theme="dark"] .countdown-expired-msg span {
  color: #ff6b75 !important;
}

/* v70 Team Grid - Side-by-Side (Cubby) on Desktop, Stacked on Mobile */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px !important;
  margin-top: 36px !important;
}

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

/* v71 Cobb County School District + FBLA Hybrid Theme Integration */
.district-util-bar {
  background: #040e22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: #cbdcf7;
  padding: 8px 24px;
}

.dub-wrap {
  max-width: 1440px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.dub-links {
  display: flex;
  gap: 16px;
}

.dub-links a {
  color: #ffd875;
  transition: color 0.2s ease;
}

.dub-links a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .dub-wrap {
    justify-content: center;
    text-align: center;
  }
  .dub-links {
    justify-content: center;
  }
}

/* v72 Larger Typography and Clean Layout */
h1 { font-size: clamp(42px, 5.5vw, 68px) !important; }
h2 { font-size: clamp(32px, 4.2vw, 48px) !important; }
h3 { font-size: 24px !important; }
p, .lead, body { font-size: 19px !important; }
.card p { font-size: 16.5px !important; }

/* v73 Cobb County District + National FBLA Hybrid Header Polish */
nav {
  background: #061c4a !important;
  border-bottom: 3px solid var(--gold) !important;
  box-shadow: 0 4px 20px rgba(6, 28, 74, 0.25);
}

.nav-dropdown-btn {
  font-family: 'Fredoka', sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #eaf0fc !important;
  transition: all 0.2s ease-in-out;
}

.nav-dropdown-btn:hover, .nav-dropdown-btn.active {
  background: #ffffff !important;
  color: #061c4a !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 12px rgba(244, 171, 25, 0.3) !important;
  transform: translateY(-2px);
}

.nav-dropdown-content {
  background: #ffffff !important;
  border: 2px solid var(--gold) !important;
  border-radius: 12px !important;
  box-shadow: 0 12px 35px rgba(6, 28, 74, 0.2) !important;
  padding: 6px 0 !important;
  animation: fadeInDown 0.2s ease forwards;
}

.nav-dropdown-content a {
  color: #061c4a !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 10px 18px !important;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease !important;
}

.nav-dropdown-content a:hover {
  background: #fff8eb !important;
  color: #2563eb !important;
  padding-left: 22px !important;
}

.nav-links > a {
  font-size: 15px !important;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  border: 1px solid transparent !important;
  background: transparent !important;
  color: #eaf0fc !important;
}

.nav-links > a:hover {
  background: #ffffff !important;
  color: #061c4a !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 12px rgba(244, 171, 25, 0.3) !important;
  transform: translateY(-2px);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* v75 Ultimate CCSD + National FBLA Hybrid & Smooth UI Overhaul */
:root {
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-full: 9999px;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  letter-spacing: -0.01em;
}

/* CCSD + FBLA Hybrid Header Navigation */
nav {
  background: linear-gradient(135deg, #002e7a 0%, #06183d 100%) !important;
  border-bottom: 4px solid var(--gold) !important;
  box-shadow: 0 6px 25px rgba(0, 46, 122, 0.25);
  padding: 4px 0;
}

.nav-wrap {
  max-width: 1320px;
  margin: auto;
  padding: 12px 24px;
}

/* Perfectly smooth and non-boxy buttons & dropdowns */
.nav-links > a, .nav-dropdown-btn {
  font-family: 'Fredoka', sans-serif;
  font-size: 14.5px !important;
  font-weight: 700;
  padding: 9px 18px !important;
  border-radius: var(--radius-full) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.05) !important;
  color: #f0f4fc !important;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.nav-links > a:hover, .nav-dropdown-btn:hover, .nav-dropdown-btn.active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 16px var(--gold-glow) !important;
  transform: translateY(-2px);
}

.nav-dropdown-content {
  background: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35) !important;
  padding: 8px 0 !important;
  margin-top: 8px;
  overflow: hidden;
  animation: smoothDropdown 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.nav-dropdown-content a {
  color: #dbe6fa !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  transition: all 0.2s ease !important;
  border: none !important;
  background: transparent !important;
}

.nav-dropdown-content a:hover {
  background: rgba(244, 171, 25, 0.2) !important;
  color: #fff !important;
  padding-left: 24px !important;
}

@keyframes smoothDropdown {
  from { opacity: 0; transform: translateY(-10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Smooth, perfectly rounded cards and containers */
.card, .stat-card, .form-card, .social-hub-card, .event-banner, .event-banner-simple, .faq-item, .logo-box-stacked, .news-highlight-card, .ct-item {
  border-radius: var(--radius-md) !important;
  border: 1.5px solid var(--card-border) !important;
  box-shadow: var(--card-shadow) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.card:hover, .stat-card:hover, .team-member:hover, .faq-item:hover, .event-banner-simple:hover {
  transform: translateY(-5px) scale(1.015) !important;
  border-color: var(--cobalt) !important;
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12) !important;
}

/* v76 Enhanced Dropdown Hover Bridge & Usability Polish */
.nav-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 12px; /* Creates an invisible hover bridge so mouse doesn't lose focus */
  margin-bottom: -12px;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4) !important;
  min-width: 210px;
  padding: 10px 0 !important;
  z-index: 999;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block !important;
}

.nav-dropdown-content a {
  color: #eaf0fc !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
  white-space: nowrap;
  transition: all 0.2s ease !important;
}

.nav-dropdown-content a:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding-left: 28px !important;
}

/* v78 Cute Balanced UI Overhaul for Notice Cards & Popups */
.cute-notice-box {
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.1), rgba(37, 99, 235, 0.08));
  border: 2px solid rgba(244, 171, 25, 0.35);
  border-radius: 28px;
  padding: 26px 32px;
  margin: 30px auto;
  max-width: 820px;
  display: flex;
  align-items: center;
  gap: 22px;
  text-align: left;
  box-shadow: 0 12px 35px rgba(244, 171, 25, 0.1);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cute-notice-box:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 18px 45px rgba(244, 171, 25, 0.2);
  border-color: var(--gold);
}

.cnb-emoji {
  font-size: 36px;
  background: var(--gold-light);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(244, 171, 25, 0.25);
}

.cnb-text h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 6px;
}

[data-theme="dark"] .cnb-text h4 {
  color: #fff !important;
}

.cnb-text p {
  font-size: 16.5px;
  color: var(--muted);
  font-weight: 600;
  margin: 0;
  line-height: 1.6;
}

/* Cute Pop-Up Toast Styling */
.cute-popup-toast {
  display: none;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  border: 2.5px solid var(--gold);
  border-radius: 28px;
  padding: 24px;
  max-width: 380px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px var(--gold-glow);
  animation: slideUpCute 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: left;
}

.cpt-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.cpt-sparkle {
  font-size: 20px;
}

.cute-popup-toast h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 19px;
  color: var(--gold);
  margin: 0;
}

.cute-popup-toast p {
  font-size: 15px;
  color: #d1dff6;
  margin-bottom: 16px;
  line-height: 1.6;
  font-weight: 600;
}

.cpt-close-btn {
  background: var(--gold);
  border: none;
  color: var(--navy);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-family: 'Fredoka', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 14px var(--gold-glow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cpt-close-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--gold-glow);
}

@keyframes slideUpCute {
  from { transform: translateY(50px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .cute-notice-box {
    flex-direction: column;
    text-align: center;
  }
  .cute-popup-toast {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 100%;
  }
}

/* v81 Sub-menu 0.5s Hover Delay & Flipping Arrow Animation */
.nav-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: -16px;
}

.nav-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: 4px;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4) !important;
  min-width: 220px;
  padding: 10px 0 !important;
  z-index: 999;
  transform: translateY(-8px);
  /* 0.5s hold delay when hovering off */
  transition: opacity 0.25s ease 0.5s, visibility 0.25s ease 0.5s, transform 0.25s ease 0.5s;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown-content:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  /* Instant appearance on hover */
  transition: opacity 0.2s ease 0s, visibility 0.2s ease 0s, transform 0.2s ease 0s;
}

.nav-dropdown-content a {
  color: #eaf0fc !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
  white-space: nowrap;
  transition: all 0.2s ease !important;
}

.nav-dropdown-content a:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding-left: 28px !important;
}

/* v82 Expanded FAQ Box UI & Ultra-Smooth Accordion Animation */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px !important;
  margin-top: 32px !important;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--card-bg) !important;
  border: 2px solid var(--card-border) !important;
  border-radius: 28px !important;
  padding: 28px 36px !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  box-shadow: 0 10px 30px rgba(11, 21, 43, 0.05) !important;
  overflow: hidden;
}

.faq-item:hover {
  transform: translateY(-4px) scale(1.01) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 18px 45px rgba(244, 171, 25, 0.2) !important;
}

.faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: 'Fredoka', sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: var(--navy) !important;
  gap: 20px !important;
  user-select: none;
}

[data-theme="dark"] .faq-question {
  color: #ffffff !important;
}

.faq-icon {
  width: 38px !important;
  height: 38px !important;
  font-size: 16px !important;
  display: grid !important;
  place-items: center !important;
  background: var(--gold-light) !important;
  color: #b57a02 !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

/* Smooth Accordion Slide & Double Font Size Styling */
.faq-answer {
  display: block !important;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0 !important;
  color: var(--muted) !important;
  font-size: 18px !important;
  line-height: 1.85 !important;
  font-weight: 600 !important;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.3s ease !important;
  width: 100%;
}

.faq-item.active {
  border-color: var(--cobalt) !important;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.12) !important;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px !important;
  padding-top: 14px;
  border-top: 1.5px dashed rgba(29, 82, 188, 0.15);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
}

@media (max-width: 768px) {
  .faq-item {
    padding: 22px 24px !important;
    border-radius: 22px !important;
  }
  .faq-question {
    font-size: 18px !important;
  }
  .faq-answer {
    font-size: 16px !important;
  }
}

/* v83 Enhanced Section Top Text, Larger Text Holders & Interactive UI Polish */

/* 1. Large, Crisp Section Top Text & Headers */
.eyebrow {
  font-size: 14.5px !important;
  padding: 8px 20px !important;
  letter-spacing: 1px !important;
  margin-bottom: 22px !important;
}

.kicker {
  font-size: 15px !important;
  padding: 7px 20px !important;
  letter-spacing: 1.4px !important;
  margin-bottom: 16px !important;
}

.page-hero h1, .hero h1 {
  font-size: clamp(44px, 5.8vw, 72px) !important;
  line-height: 1.06 !important;
  margin-bottom: 22px !important;
}

.section h2 {
  font-size: clamp(34px, 4.5vw, 52px) !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
}

.lead {
  font-size: 20px !important;
  max-width: 860px !important;
  line-height: 1.85 !important;
  margin-bottom: 36px !important;
}

/* 2. Bigger, Spatially Balanced Text Holders & Cards */
.card, .stat-card, .form-card, .social-hub-card, .event-banner, .event-banner-simple, .news-highlight-card, .cute-notice-box {
  padding: clamp(32px, 4vw, 44px) clamp(28px, 4vw, 40px) !important;
  border-radius: 32px !important;
}

.card h3, .news-highlight-card h3, .eb-info h3 {
  font-size: 26px !important;
  margin-bottom: 12px !important;
}

.card p, .news-highlight-card p, .eb-info p {
  font-size: 18px !important;
  line-height: 1.8 !important;
}

/* 3. Interactive UI Feedback & Smooth Hover Reactions */
.card, .stat-card, .stat-card-cute, .event-banner-simple, .news-highlight-card, .cute-notice-box, .faq-item {
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.card:hover, .stat-card:hover, .stat-card-cute:hover, .news-highlight-card:hover, .cute-notice-box:hover {
  transform: translateY(-6px) scale(1.018) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 22px 50px rgba(244, 171, 25, 0.22) !important;
}

.card-pillar-tag, .card-num, .nhc-badge {
  font-size: 13.5px !important;
  padding: 6px 16px !important;
  margin-bottom: 16px !important;
}

/* v84 Symmetrical, Even Warning Cards & Pop-up Cleanup */
.warning-card, .warning-box-red {
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.08), rgba(197, 31, 43, 0.05)) !important;
  border: 2px solid rgba(244, 171, 25, 0.4) !important;
  border-left: 2px solid rgba(244, 171, 25, 0.4) !important;
  border-radius: 32px !important;
  padding: 32px 36px !important;
  box-shadow: 0 14px 35px rgba(244, 171, 25, 0.1) !important;
  margin: 32px auto 0 !important;
  max-width: 820px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  text-align: left !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.warning-card:hover, .warning-box-red:hover {
  transform: translateY(-4px) scale(1.01) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 20px 45px rgba(244, 171, 25, 0.2) !important;
}

.warning-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.warning-pill-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--red);
  background: rgba(197, 31, 43, 0.1);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.warning-content-body {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.warning-icon-circ {
  font-size: 30px;
  background: var(--gold-light);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(244, 171, 25, 0.2);
}

.warning-content-body h3 {
  font-size: 24px !important;
  color: var(--navy);
  margin-bottom: 8px;
}

[data-theme="dark"] .warning-content-body h3 {
  color: #fff !important;
}

.warning-content-body p {
  font-size: 17px !important;
  color: var(--muted);
  line-height: 1.75 !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .warning-content-body {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .warning-card {
    padding: 24px 22px !important;
    border-radius: 24px !important;
  }
}

/* v85 Mutually Exclusive Dropdowns with Smooth Fade & Zero Overlap */
.nav-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: -12px;
}

.nav-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-left: 4px;
}

.nav-dropdown.active-menu .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4) !important;
  min-width: 220px;
  padding: 10px 0 !important;
  z-index: 999;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
}

.nav-dropdown.active-menu .nav-dropdown-content {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.nav-dropdown-content a {
  color: #eaf0fc !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 12px 22px !important;
  white-space: nowrap;
  transition: all 0.2s ease !important;
}

.nav-dropdown-content a:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding-left: 28px !important;
}

/* v86 Glitch-Free Desktop Navigation & Compact Mobile Accordions */

/* Desktop Glitch-Free Clean Hover & Focus-Within */
.nav-dropdown {
  position: relative;
  display: inline-block;
  padding: 6px 0;
}

.nav-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
  margin-left: 5px;
}

.nav-dropdown:hover .nav-arrow,
.nav-dropdown:focus-within .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #06183d !important;
  border: 2px solid var(--gold) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45) !important;
  min-width: 220px;
  padding: 8px 0 !important;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-content,
.nav-dropdown:focus-within .nav-dropdown-content {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-content a {
  color: #f0f4fc !important;
  font-size: 14.5px !important;
  font-weight: 700 !important;
  padding: 11px 22px !important;
  display: block;
  white-space: nowrap;
  background: transparent !important;
  border: none !important;
  transition: all 0.15s ease !important;
}

.nav-dropdown-content a:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding-left: 26px !important;
}

/* Compact Mobile Accordion Drawer */
.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: #06183d;
  padding: 20px;
  gap: 10px;
  border-bottom: 3px solid var(--gold);
  max-height: 85vh;
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  display: flex;
}

.m-link {
  font-family: 'Fredoka', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  display: block;
}

.m-highlight {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.m-group {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.m-group-btn {
  background: transparent;
  border: none;
  color: #ffd875;
  font-family: 'Fredoka', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  padding: 12px 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.m-group-items {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.25);
  padding: 6px 12px 10px;
  gap: 6px;
}

.m-group-items.open {
  display: flex;
}

.m-group-items a {
  color: #d1dff6;
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  text-align: left;
}

.m-group-items a:hover {
  background: rgba(244, 171, 25, 0.2);
  color: #fff;
}

/* v87 Rock-Solid Compact Mobile Drawer & Accordion UI */
@media (max-width: 960px) {
  .hamburger-btn {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
  }
}

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: #06183d !important;
  padding: 16px 20px 24px !important;
  gap: 10px !important;
  border-bottom: 3px solid var(--gold) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.mobile-nav-drawer.open {
  display: flex !important;
  animation: slideDownMobile 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideDownMobile {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}

.m-nav-link {
  font-family: 'Fredoka', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  padding: 12px 18px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  text-align: left !important;
  display: block !important;
  transition: all 0.2s ease !important;
}

.m-nav-link:active, .m-nav-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
}

.m-nav-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

.m-nav-group {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  overflow: hidden !important;
}

.m-nav-group-btn {
  background: transparent !important;
  border: none !important;
  color: #ffd875 !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  padding: 13px 18px !important;
  text-align: left !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background 0.2s ease !important;
}

.m-nav-group-btn:active, .m-nav-group-btn.active {
  background: rgba(244, 171, 25, 0.15) !important;
}

.m-nav-arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-size: 16px;
}

.m-nav-sub-items {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3) !important;
  padding: 8px 14px 12px !important;
  gap: 8px !important;
}

.m-nav-sub-items.open {
  display: flex !important;
}

.m-nav-sub-items a {
  color: #d1dff6 !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  text-align: left !important;
  background: rgba(255, 255, 255, 0.03) !important;
  display: block !important;
  transition: all 0.15s ease !important;
}

.m-nav-sub-items a:active, .m-nav-sub-items a:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* v88 Refined Compact Floating Badges & Aesthetic Glassmorphic Polish */
.eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 14px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.6px !important;
  border-radius: var(--radius-full) !important;
  background: rgba(244, 171, 25, 0.12) !important;
  border: 1px solid rgba(244, 171, 25, 0.35) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  color: #ffe699 !important;
  margin-bottom: 14px !important;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease !important;
}

.eyebrow:hover {
  transform: translateY(-2px) scale(1.03) !important;
  background: rgba(244, 171, 25, 0.22) !important;
  box-shadow: 0 0 16px var(--gold-glow) !important;
}

.kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 5px 14px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  border-radius: var(--radius-full) !important;
  background: rgba(37, 99, 235, 0.08) !important;
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: var(--cobalt) !important;
  margin-bottom: 12px !important;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease !important;
}

.kicker:hover {
  transform: translateY(-2px) scale(1.03) !important;
  background: rgba(37, 99, 235, 0.16) !important;
  box-shadow: 0 0 16px var(--blue-glow) !important;
}

/* Compact Aesthetic Floating Badges inside Hero/Sections */
.card-pillar-tag, .card-num, .nhc-badge {
  font-size: 11.5px !important;
  padding: 4px 12px !important;
  margin-bottom: 12px !important;
  border-radius: var(--radius-full) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.card-pillar-tag:hover, .card-num:hover, .nhc-badge:hover {
  transform: translateY(-2px) scale(1.04) !important;
}

/* Aesthetic Web View Card and Header Interactivity */
.hero-card {
  background: rgba(255, 255, 255, 0.07) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 20px 50px rgba(2, 10, 30, 0.35), 0 0 30px rgba(244, 171, 25, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease !important;
}

.hero-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 0 25px 60px rgba(2, 10, 30, 0.45), 0 0 35px var(--gold-glow) !important;
}

/* v89 Rock-Solid Hamburger 'X' Transformation & Accordion Subsection Fix */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 12px !important;
  cursor: pointer !important;
  padding: 10px 8px !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  width: 22px !important;
  height: 2.5px !important;
  background: #ffffff !important;
  border-radius: 9999px !important;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease !important;
  transform-origin: center !important;
}

/* Perfect 'X' Transformation when Active */
.hamburger-btn.active {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.hamburger-btn.active .hamburger-line {
  background: var(--navy) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0 !important;
  transform: scaleX(0) !important;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg) !important;
}

/* Mobile Nav Drawer & Responsive Visibility */
@media (max-width: 960px) {
  .hamburger-btn {
    display: flex !important;
  }
  .nav-links {
    display: none !important;
  }
}

.mobile-nav-drawer {
  display: none;
  flex-direction: column;
  background: #06183d !important;
  padding: 20px 24px 28px !important;
  gap: 12px !important;
  border-bottom: 3px solid var(--gold) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5) !important;
  width: 100% !important;
}

.mobile-nav-drawer.open {
  display: flex !important;
  animation: slideDownMobile 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.m-nav-group {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  overflow: hidden !important;
  width: 100% !important;
}

.m-nav-group-btn {
  background: transparent !important;
  border: none !important;
  color: #ffd875 !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  padding: 14px 18px !important;
  text-align: left !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  cursor: pointer !important;
  width: 100% !important;
  user-select: none !important;
}

.m-nav-group-btn:hover, .m-nav-group-btn:active, .m-nav-group-btn.active {
  background: rgba(244, 171, 25, 0.15) !important;
}

.m-nav-sub-items {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.35) !important;
  padding: 10px 14px 14px !important;
  gap: 8px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.m-nav-sub-items.open {
  display: flex !important;
  animation: fadeInDown 0.2s ease forwards;
}

.m-nav-sub-items a {
  color: #eaf0fc !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  display: block !important;
  text-align: left !important;
  transition: all 0.15s ease !important;
}

.m-nav-sub-items a:hover, .m-nav-sub-items a:active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateX(4px);
}

/* v90 Hardware-Accelerated Mobile Accordion & Arrow Transform */
.m-nav-group {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  overflow: hidden !important;
  width: 100% !important;
  transition: border-color 0.25s ease, background-color 0.25s ease !important;
}

.m-nav-group-btn {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 50px !important;
  padding: 14px 18px !important;
  background: transparent !important;
  border: none !important;
  color: #ffd875 !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
  user-select: none !important;
  transition: background-color 0.2s ease !important;
}

.m-nav-group-btn:active,
.m-nav-group-btn.active {
  background: rgba(244, 171, 25, 0.15) !important;
}

/* Arrow rotation with transform */
.m-nav-arrow {
  display: inline-block !important;
  font-size: 18px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  will-change: transform !important;
}

.m-nav-group-btn[aria-expanded="true"] .m-nav-arrow,
.m-nav-group-btn.active .m-nav-arrow {
  transform: rotate(180deg) !important;
  color: #ffffff !important;
}

/* Zero-lag CSS Grid Accordion Expansion */
.m-nav-sub-items {
  display: grid !important;
  grid-template-rows: 0fr !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border-top: 0 solid rgba(255, 255, 255, 0.08) !important;
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-top 0.28s ease !important;
}

.m-nav-sub-items.open {
  grid-template-rows: 1fr !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.m-nav-sub-inner {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 14px !important;
  transition: padding 0.28s ease !important;
}

.m-nav-sub-items.open .m-nav-sub-inner {
  padding: 10px 14px 14px !important;
}

.m-nav-sub-inner a {
  color: #eaf0fc !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 10px 16px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  display: block !important;
  text-align: left !important;
  text-decoration: none !important;
  transition: all 0.15s ease !important;
}

.m-nav-sub-inner a:hover,
.m-nav-sub-inner a:active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateX(4px) !important;
}

/* v91 Universal Cross-Browser (Chrome, Safari, Firefox, Edge, iOS, Android, macOS, Windows, Linux) Reset & Typography Polish */
:root {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: light dark;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Fix iOS touch latency and tap highlights */
a, button, input, select, textarea {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Cross-OS smooth typography and high-DPI scaling */
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif !important;
  overflow-x: hidden;
  width: 100%;
}

/* Safari/WebKit backdrop-filter cross-support */
.hero-card, .card, .stat-card, .stat-card-cute, .cute-notice-box, .eyebrow, .kicker, .nav-dropdown-content, .cookie-consent-banner, .cute-popup-toast {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateZ(0); /* Hardware acceleration */
}

/* Firefox scrollbar styling */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--navy);
}

/* Chrome, Edge, Safari WebKit Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d8930e;
}

/* iOS Safe-Area Padding Optimization */
@supports (padding: max(0px)) {
  .nav-wrap {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  footer {
    padding-bottom: max(32px, env(safe-area-inset-bottom));
  }
}

/* Fluid responsive text scaling across high-res and mobile viewports */
h1 { font-size: clamp(34px, 5.2vw, 64px) !important; }
h2 { font-size: clamp(26px, 3.8vw, 44px) !important; }
h3 { font-size: clamp(20px, 2.8vw, 28px) !important; }
p, .lead { font-size: clamp(15.5px, 1.8vw, 18.5px) !important; }

/* Accessible focus rings across modern browsers */
:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 3px !important;
}

/* v92 Production-Grade Multi-Collapse & Complete Mobile Performance Optimization */

/* Smooth, non-clashing multi-collapse accordion structure */
.m-nav-group {
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  overflow: hidden !important;
  width: 100% !important;
  box-sizing: border-box !important;
  contain: content;
}

.m-nav-group-btn {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 52px !important;
  padding: 14px 18px !important;
  background: transparent !important;
  border: none !important;
  color: #ffd875 !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-align: left !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  touch-action: manipulation !important;
  user-select: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

.m-nav-group-btn:active,
.m-nav-group-btn.active {
  background: rgba(244, 171, 25, 0.16) !important;
}

/* Fluid, synchronized 180° rotation on arrow */
.m-nav-arrow {
  display: inline-block !important;
  font-size: 18px !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  transform: rotate(0deg) !important;
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease !important;
  will-change: transform !important;
}

.m-nav-group-btn[aria-expanded="true"] .m-nav-arrow,
.m-nav-group-btn.active .m-nav-arrow {
  transform: rotate(180deg) !important;
  color: #ffffff !important;
}

/* Hardware-accelerated CSS grid expansion */
.m-nav-sub-items {
  display: grid !important;
  grid-template-rows: 0fr !important;
  background: rgba(0, 0, 0, 0.35) !important;
  border-top: 0 solid rgba(255, 255, 255, 0.08) !important;
  transition: grid-template-rows 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-top 0.28s ease !important;
  will-change: grid-template-rows;
}

.m-nav-sub-items.open {
  grid-template-rows: 1fr !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.m-nav-sub-inner {
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 0 14px !important;
  transition: padding 0.28s ease !important;
}

.m-nav-sub-items.open .m-nav-sub-inner {
  padding: 10px 14px 14px !important;
}

.m-nav-sub-inner a {
  color: #eaf0fc !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  padding: 8px 16px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  text-align: left !important;
  text-decoration: none !important;
  touch-action: manipulation !important;
  transition: all 0.15s ease !important;
}

.m-nav-sub-inner a:hover,
.m-nav-sub-inner a:active {
  background: var(--gold) !important;
  color: var(--navy) !important;
  transform: translateX(4px) !important;
}

/* Overall Mobile Ergonomics & Layout Containment */
@media (max-width: 960px) {
  body {
    -webkit-text-size-adjust: 100%;
  }

  .mobile-nav-drawer {
    padding: 18px 16px 24px !important;
    gap: 10px !important;
  }

  .m-nav-link {
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    padding: 10px 18px !important;
  }
}

/* v93 Highly Interactive & Visually Appealing News, Newsletter, and Timeline UI */

/* Enhanced News Hero */
.news-hero-bg {
  background: radial-gradient(circle at 75% 25%, #1d52bc 0%, #0c2b75 45%, #06183d 100%) !important;
}

/* Interactive Highlight Newsletter Card */
.interactive-newsletter-card {
  position: relative;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 32px;
  padding: clamp(28px, 4vw, 38px);
  margin: 28px auto 0;
  max-width: 860px;
  box-shadow: 0 16px 45px rgba(11, 21, 43, 0.07);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  text-align: left;
}

.interactive-newsletter-card:hover {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--gold);
  box-shadow: 0 24px 55px rgba(244, 171, 25, 0.22);
}

.inc-glow-orb {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(244, 171, 25, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.4s ease;
}

.interactive-newsletter-card:hover .inc-glow-orb {
  transform: scale(1.4);
}

.inc-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1.5px dashed rgba(215, 228, 245, 0.7);
}

.inc-pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  color: #b57a02;
  font-family: 'Fredoka', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(244, 171, 25, 0.35);
}

.pulse-beacon {
  width: 9px;
  height: 9px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: beaconPulse 1.8s infinite;
}

@keyframes beaconPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.inc-edition-badge {
  font-family: 'Fredoka', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
}

.inc-body {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.inc-icon-circle {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(244, 171, 25, 0.15), rgba(37, 99, 235, 0.1));
  border: 2px solid rgba(244, 171, 25, 0.3);
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 30px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-newsletter-card:hover .inc-icon-circle {
  transform: scale(1.12) rotate(-6deg);
}

.inc-text-col h3 {
  font-size: 24px !important;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

[data-theme="dark"] .inc-text-col h3 {
  color: #ffffff !important;
}

.inc-text-col p {
  font-size: 16.5px !important;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.inc-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inc-chip {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-family: 'Fredoka', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cobalt);
}

/* Interactive Modern Vertical Timeline Flow */
.interactive-timeline-flow {
  position: relative;
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 20px;
}

.interactive-timeline-flow::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 31px;
  width: 4px;
  background: linear-gradient(to bottom, #2563eb, #F4AB19 70%, #9333ea);
  border-radius: 9999px;
  z-index: 1;
}

.it-card-block {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 24px;
  z-index: 2;
  cursor: pointer;
  outline: none;
}

.it-left-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
  flex-shrink: 0;
  padding-top: 14px;
}

.it-badge-month {
  background: var(--navy);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: nowrap;
  transition: transform 0.3s ease, background 0.3s ease;
}

.it-badge-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-color: var(--gold) !important;
}

.it-badge-future {
  background: #6d28d9 !important;
  border-color: #a855f7 !important;
}

.it-status-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2563eb;
  border: 3.5px solid #fff;
  box-shadow: 0 0 12px var(--blue-glow);
  margin-top: 12px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.it-dot-gold {
  background: var(--gold) !important;
  box-shadow: 0 0 14px var(--gold-glow) !important;
}

.it-dot-future {
  background: #a855f7 !important;
  box-shadow: 0 0 14px rgba(168, 85, 247, 0.6) !important;
}

.it-card-block:hover .it-status-dot {
  transform: scale(1.35);
}

.it-card-block:hover .it-badge-month {
  transform: translateY(-2px);
}

.it-content-box {
  flex-grow: 1;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 26px;
  padding: 24px 28px;
  box-shadow: var(--card-shadow);
  text-align: left;
  transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.it-card-block:hover .it-content-box {
  transform: translateY(-4px) scale(1.015);
  border-color: var(--cobalt);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.15);
}

.it-box-gold {
  border-color: rgba(244, 171, 25, 0.4) !important;
  background: linear-gradient(135deg, var(--card-bg), rgba(244, 171, 25, 0.05)) !important;
}

.it-card-block:hover .it-box-gold {
  border-color: var(--gold) !important;
  box-shadow: 0 18px 45px rgba(244, 171, 25, 0.22) !important;
}

.it-box-future {
  border-color: rgba(168, 85, 247, 0.3) !important;
  background: linear-gradient(135deg, var(--card-bg), rgba(168, 85, 247, 0.05)) !important;
}

.it-card-block:hover .it-box-future {
  border-color: #a855f7 !important;
  box-shadow: 0 18px 45px rgba(168, 85, 247, 0.2) !important;
}

.it-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.it-emoji {
  font-size: 22px;
}

.it-stage-tag {
  font-family: 'Fredoka', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: var(--cobalt);
  text-transform: uppercase;
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.it-tag-gold {
  color: #b57a02 !important;
  background: var(--gold-light) !important;
}

.it-tag-future {
  color: #7e22ce !important;
  background: #f3e8ff !important;
}

.it-content-box h3 {
  font-size: 20px !important;
  color: var(--navy);
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

[data-theme="dark"] .it-content-box h3 {
  color: #ffffff !important;
}

.it-content-box p {
  font-size: 15.5px !important;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* Mobile Responsive Formatting for News and Timeline */
@media (max-width: 768px) {
  .interactive-timeline-flow {
    padding-left: 0;
    gap: 20px;
  }

  .interactive-timeline-flow::before {
    left: 18px;
  }

  .it-card-block {
    flex-direction: column;
    gap: 12px;
    padding-left: 42px;
  }

  .it-left-meta {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
    min-width: auto;
  }

  .it-status-dot {
    position: absolute;
    left: 9px;
    top: 6px;
    margin-top: 0;
  }

  .inc-body {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .interactive-newsletter-card {
    text-align: center;
  }

  .inc-top-bar {
    justify-content: center;
  }

  .inc-features-row {
    justify-content: center;
  }
}

/* v94 Smart Header Collapse, Dismissible Cookie Bar & Cute Mobile Polish */

/* 1. Seamless Sticky Top Bar Auto-Collapse on Scroll */
nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s ease !important;
}

nav.nav-hidden {
  transform: translateY(-100%) !important;
}

/* 2. Cute Dismissible Cookie Toast */
.cookie-consent-banner {
  position: fixed !important;
  bottom: 24px !important;
  left: 20px !important;
  right: 20px !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  z-index: 9999 !important;
  background: rgba(6, 24, 61, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 2px solid var(--gold) !important;
  border-radius: 26px !important;
  padding: 16px 22px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 25px var(--gold-glow) !important;
  transition: opacity 0.3s ease, transform 0.3s ease !important;
  animation: slideUpCookie 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@keyframes slideUpCookie {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cookie-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  width: 100% !important;
}

.cookie-text {
  font-family: 'Fredoka', sans-serif !important;
  font-size: 14.5px !important;
  font-weight: 600 !important;
  color: #d1dff6 !important;
  line-height: 1.5 !important;
  text-align: left !important;
}

.btn-cookie {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-family: 'Fredoka', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-full) !important;
  border: none !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px var(--gold-glow) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-cookie:hover, .btn-cookie:active {
  transform: scale(1.06) !important;
  box-shadow: 0 0 20px var(--gold-glow) !important;
}

/* 3. Cute Mobile Subtext & Sub-item Micro-interactions */
.m-nav-sub-inner a {
  font-family: 'Fredoka', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #eaf0fc !important;
  padding: 10px 18px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.m-nav-sub-inner a:hover,
.m-nav-sub-inner a:active {
  background: linear-gradient(135deg, var(--gold), #ffc554) !important;
  color: var(--navy) !important;
  transform: translateX(6px) !important;
  box-shadow: 0 4px 16px var(--gold-glow) !important;
  border-color: var(--gold) !important;
}

@media (max-width: 600px) {
  .cookie-content {
    flex-direction: column !important;
    text-align: center !important;
  }
  .cookie-text {
    text-align: center !important;
  }
  .btn-cookie {
    width: 100% !important;
  }
}

/* v95 System-Aligned Dark & Light Mode Color Balance & Contrast Polish */

/* Root Light Colors */
:root {
  --navy: #06183d;
  --fbla-blue: #002e7a;
  --blue: #1D52BC;
  --cobalt: #2563eb;
  --gold: #F4AB19;
  --gold-light: #fff8eb;
  --gold-glow: rgba(244, 171, 25, 0.45);
  --blue-glow: rgba(37, 99, 235, 0.55);
  --red: #C51F2B;
  --ink: #0b152b;
  --muted: #475569;
  --paper: #f8faff;
  --white: #ffffff;
  --card-bg: #ffffff;
  --card-border: rgba(215, 228, 245, 0.9);
  --card-shadow: 0 16px 40px rgba(11, 21, 43, 0.06);
  --nav-bg: rgba(6, 24, 61, 0.96);
  --input-bg: #ffffff;
  --input-border: #cbd5e1;
  --switch-track: rgba(255, 255, 255, 0.25);
  --switch-thumb: #ffffff;
}

/* Enhanced Dark Mode Theme */
[data-theme="dark"] {
  --navy: #06183d;
  --fbla-blue: #1d52bc;
  --blue: #3b82f6;
  --cobalt: #60a5fa;
  --gold: #f59e0b;
  --gold-light: rgba(245, 158, 11, 0.15);
  --gold-glow: rgba(245, 158, 11, 0.4);
  --blue-glow: rgba(96, 165, 250, 0.45);
  --red: #ef4444;
  --ink: #f8fafc;
  --muted: #cbd5e1;
  --paper: #0b132b;
  --white: #131d3b;
  --card-bg: #131d3b;
  --card-border: rgba(255, 255, 255, 0.12);
  --card-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
  --nav-bg: rgba(6, 15, 38, 0.98);
  --input-bg: #1c294d;
  --input-border: #334155;
  --switch-track: #2563eb;
  --switch-thumb: #ffffff;
}

/* Automatic System Preference Sync When Not Explicitly Overridden */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --navy: #06183d;
    --fbla-blue: #1d52bc;
    --blue: #3b82f6;
    --cobalt: #60a5fa;
    --gold: #f59e0b;
    --gold-light: rgba(245, 158, 11, 0.15);
    --gold-glow: rgba(245, 158, 11, 0.4);
    --blue-glow: rgba(96, 165, 250, 0.45);
    --red: #ef4444;
    --ink: #f8fafc;
    --muted: #cbd5e1;
    --paper: #0b132b;
    --white: #131d3b;
    --card-bg: #131d3b;
    --card-border: rgba(255, 255, 255, 0.12);
    --card-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
    --nav-bg: rgba(6, 15, 38, 0.98);
    --input-bg: #1c294d;
    --input-border: #334155;
    --switch-track: #2563eb;
    --switch-thumb: #ffffff;
  }
}

/* Explicit Typography & Text Contrast Rules */
[data-theme="dark"] body {
  background-color: var(--paper) !important;
  color: var(--ink) !important;
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] .stat b,
[data-theme="dark"] .event-banner h2,
[data-theme="dark"] .card h3,
[data-theme="dark"] .team-name,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .it-content-box h3,
[data-theme="dark"] .inc-text-col h3 {
  color: #ffffff !important;
}

[data-theme="dark"] p,
[data-theme="dark"] .card p,
[data-theme="dark"] .lead,
[data-theme="dark"] .faq-answer,
[data-theme="dark"] .it-content-box p,
[data-theme="dark"] .inc-text-col p {
  color: #cbd5e1 !important;
}

/* Theme Switch Knob Transform */
[data-theme="dark"] .switch-knob {
  transform: translateX(16px) !important;
}

[data-theme="dark"] .switch-btn {
  background: var(--switch-track) !important;
}

/* Dark Mode Card Backgrounds & Borders */
[data-theme="dark"] .card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .stat-card-cute,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .it-content-box,
[data-theme="dark"] .interactive-newsletter-card,
[data-theme="dark"] .social-hub-card,
[data-theme="dark"] .team-member {
  background: var(--card-bg) !important;
  border-color: var(--card-border) !important;
  box-shadow: var(--card-shadow) !important;
}

[data-theme="dark"] .aesthetic-chapter-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(245, 158, 11, 0.08)) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
}

[data-theme="dark"] .cute-notice-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(37, 99, 235, 0.12)) !important;
  border-color: rgba(245, 158, 11, 0.4) !important;
}

[data-theme="dark"] .warning-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.08)) !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}

[data-theme="dark"] .social-btn {
  background: #1c294d !important;
  color: #f8fafc !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[data-theme="dark"] .social-btn:hover {
  border-color: var(--gold) !important;
}
