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

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #070a13;
  --bg-secondary: #0c1122;
  --bg-card: rgba(13, 18, 36, 0.65);
  --border-glow: rgba(0, 242, 254, 0.15);
  --border-normal: rgba(255, 255, 255, 0.06);
  --color-text-primary: #f8fafc;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;
  
  /* Gradients */
  --grad-cyan-blue: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --grad-violet-pink: linear-gradient(135deg, #8e2de2 0%, #f000ff 100%);
  --grad-gold: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
  --grad-dark-overlay: linear-gradient(180deg, rgba(7, 10, 19, 0) 0%, #070a13 100%);
  
  /* Neon Colors */
  --neon-cyan: #00f2fe;
  --neon-blue: #4facfe;
  --neon-gold: #f6d365;
  --neon-pink: #f000ff;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Timing */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- RESET & GLOBAL BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Custom Cyber Grid Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: 
    radial-gradient(rgba(0, 242, 254, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(7, 10, 19, 0.8), #070a13);
  background-size: 32px 32px, 100% 100%;
  opacity: 0.85;
  pointer-events: none;
  animation: gridScroll 120s linear infinite;
}

/* Subtle glowing light orbs in the background */
body::after {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vh;
  z-index: -2;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.02) 50%, transparent 100%);
  filter: blur(100px);
  pointer-events: none;
  border-radius: 50%;
}

.bg-orb-2 {
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 60vw;
  height: 60vh;
  z-index: -2;
  background: radial-gradient(circle, rgba(142, 45, 226, 0.08) 0%, rgba(240, 0, 255, 0.01) 50%, transparent 100%);
  filter: blur(100px);
  pointer-events: none;
  border-radius: 50%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  line-height: 1.2;
}

p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-gradient {
  background: var(--grad-cyan-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-gold {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- PREMIUM COMPONENTS --- */

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(7, 10, 19, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-normal);
  padding: 1.25rem 0;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo .logo-dot {
  width: 10px;
  height: 10px;
  background: var(--grad-cyan-blue);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--neon-cyan);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-cyan-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--color-text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-normal);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  background: var(--grad-cyan-blue);
  color: #070a13;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

/* Glassmorphic Category Card Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
  padding-bottom: 5rem;
}

.category-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-normal);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 290px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

/* Interactive Card Borders */
.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  background: rgba(17, 24, 47, 0.85);
  box-shadow: 0 20px 40px rgba(7, 10, 19, 0.6), 0 0 30px rgba(0, 242, 254, 0.08);
  border-color: rgba(0, 242, 254, 0.3);
}

.category-card.gold-award:hover {
  border-color: rgba(246, 211, 101, 0.4);
  box-shadow: 0 20px 40px rgba(7, 10, 19, 0.6), 0 0 30px rgba(246, 211, 101, 0.08);
}

.category-card:hover::before {
  background: var(--grad-cyan-blue);
}

.category-card.gold-award::before {
  background: linear-gradient(135deg, rgba(246, 211, 101, 0.3) 0%, rgba(253, 160, 133, 0.1) 100%);
}

.category-card.gold-award:hover::before {
  background: var(--grad-gold);
}

/* Card Elements */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  transition: var(--transition-smooth);
}

.gold-award .card-icon {
  background: rgba(246, 211, 101, 0.08);
  color: var(--neon-gold);
}

.category-card:hover .card-icon {
  background: var(--grad-cyan-blue);
  color: #070a13;
  transform: rotate(5deg) scale(1.05);
}

.category-card.gold-award:hover .card-icon {
  background: var(--grad-gold);
  color: #070a13;
}

.winner-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--neon-cyan);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-smooth);
}

.gold-award .winner-badge {
  background: rgba(246, 211, 101, 0.08);
  border: 1px solid rgba(246, 211, 101, 0.2);
  color: var(--neon-gold);
}

.category-card:hover .winner-badge {
  background: rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.category-card.gold-award:hover .winner-badge {
  background: rgba(246, 211, 101, 0.15);
  border-color: rgba(246, 211, 101, 0.4);
  box-shadow: 0 0 10px rgba(246, 211, 101, 0.15);
}

.card-title {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.card-winner-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.card-description {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.75rem;
}

.card-action {
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  color: var(--neon-cyan);
}

.gold-award .card-action {
  color: var(--neon-gold);
}

.card-action svg {
  transition: transform 0.3s ease;
}

.category-card:hover .card-action svg {
  transform: translateX(6px);
}

/* Category Details Template styling */
.category-hero {
  padding: 8rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}

.category-badge-main {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  background: rgba(0, 242, 254, 0.08);
  border: 1px solid rgba(0, 242, 254, 0.2);
  color: var(--neon-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  animation: pulseGlow 3s infinite ease-in-out;
}

.category-badge-main.gold {
  background: rgba(246, 211, 101, 0.08);
  border: 1px solid rgba(246, 211, 101, 0.2);
  color: var(--neon-gold);
}

.category-title-main {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  max-width: 800px;
  line-height: 1.1;
}

.winner-banner-card {
  margin-top: 3rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-normal);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.winner-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-cyan-blue);
}

.winner-banner-card.gold::before {
  background: var(--grad-gold);
}

.winner-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
}

.winner-org-info h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.winner-org-tagline {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
}

.trophy-glow {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 30px rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  animation: float 4s ease-in-out infinite;
}

.trophy-glow.gold {
  background: rgba(246, 211, 101, 0.1);
  box-shadow: 0 0 30px rgba(246, 211, 101, 0.2);
  color: var(--neon-gold);
}

.winner-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

@media (max-width: 900px) {
  .winner-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.winner-body-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.winner-body-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

/* Data metrics panels */
.metrics-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.metric-box {
  background: rgba(7, 10, 19, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.metric-box:hover {
  border-color: rgba(0, 242, 254, 0.25);
  transform: translateY(-4px);
  background: rgba(7, 10, 19, 0.6);
}

.gold .metric-box:hover {
  border-color: rgba(246, 211, 101, 0.25);
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

/* Judges verdict */
.verdict-box {
  background: rgba(0, 242, 254, 0.02);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 0 16px 16px 0;
  padding: 1.75rem;
  margin-top: 2.5rem;
}

.winner-banner-card.gold .verdict-box {
  background: rgba(246, 211, 101, 0.02);
  border-left-color: var(--neon-gold);
}

.verdict-box h4 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--color-text-primary);
}

.verdict-text {
  font-style: italic;
  color: var(--color-text-secondary);
}

/* Next / Prev navigation bar */
.nav-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5rem 0 7rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-bottom-btn {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 40%;
}

.nav-bottom-btn.right {
  text-align: right;
  align-items: flex-end;
}

.nav-btn-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.nav-btn-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.nav-bottom-btn:hover .nav-btn-title {
  color: var(--neon-cyan);
}

.nav-bottom-btn.right:hover .nav-btn-title {
  color: var(--neon-cyan);
}

/* --- FOOTER --- */
.site-footer {
  border-top: 1px solid var(--border-normal);
  background: rgba(7, 10, 19, 0.9);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.footer-link:hover {
  color: var(--neon-cyan);
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- HOMEPAGE HERO SECTION --- */
.homepage-hero {
  padding: 10rem 0 6rem 0;
  text-align: center;
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--neon-cyan);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
  .category-title-main {
    font-size: 2.25rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  color: var(--color-text-secondary);
}

/* Stat Panel Grid */
.stat-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 6rem 0;
}

@media (max-width: 768px) {
  .stat-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.stat-item {
  background: rgba(13, 18, 36, 0.4);
  border: 1px solid var(--border-normal);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad-cyan-blue);
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(13, 18, 36, 0.6);
  border-color: rgba(0, 242, 254, 0.2);
}

.stat-item:hover::before {
  opacity: 1;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-secondary);
}

/* Section Title */
.section-title-wrap {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-cyan);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Animations definition */
@keyframes gridScroll {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 0 1000px, 0 0;
  }
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.08);
  }
  50% {
    opacity: 0.85;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* --- ANIMATION TRIGGER classes --- */
.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* --- EDITORIAL SINGLE COLUMN LAYOUT --- */
.winner-grid.single-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
  gap: 2rem;
}

.winner-grid.single-column .winner-body-content {
  width: 100%;
}

/* --- NEWS GRID --- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.news-card {
  background: rgba(13, 18, 36, 0.4);
  border: 1px solid var(--border-normal);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  background: rgba(13, 18, 36, 0.6);
  border-color: rgba(0, 242, 254, 0.2);
}

.news-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-date {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.news-excerpt {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.news-link:hover {
  color: var(--neon-cyan);
}

/* --- FAQ ACCORDIONS --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon {
  color: var(--neon-cyan);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active {
  border-color: rgba(0, 242, 254, 0.2);
  background: rgba(13, 18, 36, 0.4);
}

 / *   - - -   2 0 2 7   C O M P A C T   C A T E G O R I E S   G R I D   - - -   * / 
 . c o m p a c t - c a t e g o r i e s - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i l l ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ; 
     g a p :   1 . 5 r e m ; 
     m a r g i n - t o p :   2 r e m ; 
     m a r g i n - b o t t o m :   4 r e m ; 
 } 
 
 . c o m p a c t - c a t e g o r y - c a r d   { 
     b a c k g r o u n d :   v a r ( - - b g - c a r d ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - n o r m a l ) ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     p a d d i n g :   1 . 2 5 r e m ; 
     t r a n s i t i o n :   v a r ( - - t r a n s i t i o n - s m o o t h ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     g a p :   1 r e m ; 
 } 
 
 . c o m p a c t - c a t e g o r y - c a r d : h o v e r   { 
     b a c k g r o u n d :   v a r ( - - b g - c a r d - h o v e r ) ; 
     b o r d e r - c o l o r :   r g b a ( 0 ,   2 4 2 ,   2 5 4 ,   0 . 4 ) ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ; 
     b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 } 
 
 . c o m p a c t - c a t e g o r y - i c o n   { 
     w i d t h :   3 2 p x ; 
     h e i g h t :   3 2 p x ; 
     b a c k g r o u n d :   r g b a ( 0 ,   2 4 2 ,   2 5 4 ,   0 . 0 5 ) ; 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   2 4 2 ,   2 5 4 ,   0 . 1 ) ; 
     b o r d e r - r a d i u s :   8 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c o l o r :   v a r ( - - n e o n - c y a n ) ; 
     f l e x - s h r i n k :   0 ; 
 } 
 
 . c o m p a c t - c a t e g o r y - c o n t e n t   h 3   { 
     f o n t - s i z e :   1 r e m ; 
     m a r g i n :   0   0   0 . 2 5 r e m   0 ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - p r i m a r y ) ; 
 } 
 
 . c o m p a c t - c a t e g o r y - c o n t e n t   p   { 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     m a r g i n :   0 ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - s e c o n d a r y ) ; 
     l i n e - h e i g h t :   1 . 4 ; 
 } 
 
 . s e c t i o n - g r o u p - t i t l e   { 
     f o n t - s i z e :   1 . 5 r e m ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - p r i m a r y ) ; 
     m a r g i n - t o p :   4 r e m ; 
     m a r g i n - b o t t o m :   1 r e m ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - n o r m a l ) ; 
     p a d d i n g - b o t t o m :   0 . 5 r e m ; 
     d i s p l a y :   i n l i n e - b l o c k ; 
 } 
  
 
/* --- 2027 COMPACT CATEGORIES GRID --- */
.compact-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.compact-category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-normal);
  border-radius: 12px;
  padding: 1.25rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.compact-category-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 254, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.compact-category-icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 242, 254, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  flex-shrink: 0;
}

.compact-category-content h3 {
  font-size: 1rem;
  margin: 0 0 0.25rem 0;
  color: var(--color-text-primary);
}

.compact-category-content p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.4;
}

.section-group-title {
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-top: 4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border-normal);
  padding-bottom: 0.5rem;
  display: inline-block;
}
