:root {
  /* Colors */
  --bg: #050505;
  --bg-secondary: #111111;
  --cards: #1F2937;
  --surface: #374151;
  --accent-primary: #facc15; /* Changed from #00e5ff to Gold/Yellow */
  --accent-primary-hover: #eab308;
  --accent-secondary: #fcd34d; /* Light gold/yellow */
  --accent-orange: #f59e0b; /* Golden orange */
  --gold: #facc15;
  --white: #ffffff;
  --muted: #a0a0a0;
  --border: rgba(250, 204, 21, 0.15); /* Gold border */

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-numbers: 'Space Grotesk', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-glow: 0 0 20px rgba(250, 204, 21, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* =========================================
   Base Resets
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.playthala-body {
  background-color: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--accent-primary);
  color: var(--bg);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex-grow: 1;
  padding-top: 1rem;
}

.site-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   Utilities
   ========================================= */
.text-primary { color: var(--accent-primary); }
.text-secondary { color: var(--accent-secondary); }
.text-orange { color: var(--accent-orange); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-transparent { color: transparent; }

.bg-bg { background-color: var(--bg); }
.bg-surface { background-color: var(--surface); }
.bg-cards { background-color: var(--cards); }
.bg-primary { background-color: var(--accent-primary); }
.bg-primary\/10 { background-color: rgba(0, 230, 118, 0.1); }

.border-border { border-color: var(--border); }

.font-heading { font-family: var(--font-heading); }
.font-numbers { font-family: var(--font-numbers); }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-grow { flex-grow: 1; }
.flex-1 { flex: 1; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

.grid { display: grid; }

.w-4 { width: 1rem; }
.h-4 { height: 1rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }
.w-10 { width: 2.5rem; }
.h-10 { height: 2.5rem; }

.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 1rem; }
.rounded-2xl { border-radius: 1.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.relative { position: relative; }
.absolute { position: absolute; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.overflow-hidden { overflow: hidden; }

.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }

.group:hover .group-hover\:text-primary { color: var(--accent-primary); }
.group:hover .group-hover\:text-secondary { color: var(--accent-secondary); }
.group:hover .group-hover\:text-orange { color: var(--accent-orange); }

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-md { max-width: 28rem; }

.section-padding { padding: var(--space-2xl) 0; }

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* =========================================
   Header
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

.site-header__glass {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 34, 0.7);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: -1;
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6rem;
  padding: 0 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.site-title a {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}
.site-title a span {
  color: var(--accent-primary);
}
.site-title a:hover {
  color: var(--accent-primary);
}

.site-header__nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.site-header__nav a {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.site-header__nav a:hover {
  color: var(--accent-primary);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.action-btn {
  color: var(--white);
  position: relative;
  transition: color 0.3s ease;
}
.action-btn:hover {
  color: var(--accent-secondary);
}

.notification-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.profile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cards);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.profile-btn:hover {
  border-color: var(--accent-primary);
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .site-header__nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: screen;
  animation: blob 7s infinite alternate;
}
.primary-orb {
  top: 25%;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(250, 204, 21, 0.15);
}
.secondary-orb {
  top: 33%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.15);
  animation-delay: 2s;
}
.orange-orb {
  bottom: 25%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: rgba(252, 211, 77, 0.15);
  animation-delay: 4s;
}

.hero-container {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(24, 24, 24, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent-primary);
  margin-bottom: 2rem;
}
.live-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}
.gradient-text {
  background: linear-gradient(to right, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .hero-desc { margin: 0 auto 2.5rem auto; }
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .hero-actions { justify-content: center; }
}

.btn {
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-primary);
  color: var(--bg);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}
.btn-secondary {
  background: rgba(24, 24, 24, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--accent-secondary);
}

.premium-card {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  background: linear-gradient(to top right, var(--surface), var(--cards));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.premium-card:hover {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.card-subtitle {
  color: var(--muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
}
.trophy-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 152, 0, 0.2);
  color: var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-image-placeholder {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.silhouette {
  width: 150px;
  height: 150px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  border-radius: 50%;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}

.card-footer {
  position: relative;
  z-index: 2;
}
.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.5rem;
}
.stat-main {
  font-family: var(--font-numbers);
  font-weight: 700;
  font-size: 2.5rem;
}
.stat-sub {
  color: var(--muted);
  font-size: 0.875rem;
}
.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: var(--bg);
  border-radius: var(--radius-full);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}
.card-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(250, 204, 21, 0.2);
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
}
.scroll-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--muted), transparent);
}


/* =========================================
   Featured / Trending Matches
   ========================================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-xl);
}
.section-header.text-center {
  flex-direction: column;
  align-items: center;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: var(--space-xs);
}
.section-desc {
  color: var(--muted);
}
.view-all-link {
  color: var(--accent-primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}
.view-all-link:hover {
  color: var(--white);
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.match-card {
  position: relative;
  background: var(--cards);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.match-card:hover {
  border-color: var(--accent-secondary);
  transform: translateY(-5px);
}
.match-card__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(255,255,255,0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.match-card:hover .match-card__hover {
  opacity: 1;
}
.match-card__content {
  padding: var(--space-md);
  position: relative;
  z-index: 10;
}
.match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}
.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.upcoming-badge {
  background: rgba(255, 152, 0, 0.1);
  color: var(--accent-orange);
}
.live-badge-small {
  background: rgba(0, 230, 118, 0.1);
  color: var(--accent-primary);
}
.result-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.match-time {
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}
.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}
.team-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}
.team-name {
  font-weight: 500;
}
.team-score {
  font-family: var(--font-numbers);
  font-weight: 700;
  font-size: 1.125rem;
}
.winner-score {
  color: var(--accent-primary);
}
.vs {
  font-weight: 700;
  color: var(--muted);
  font-size: 1.125rem;
}
.match-card__result-text {
  text-align: center;
  font-size: 0.875rem;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-bottom: var(--space-md);
}
.match-card__footer {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.venue {
  color: var(--muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.notify-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--surface);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.notify-btn:hover {
  background: var(--accent-primary);
  color: var(--bg);
}
.view-btn {
  background: var(--cards);
  border: 1px solid var(--border);
  padding: 0.25rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.view-btn:hover {
  background: var(--surface);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}


/* =========================================
   Premium Features (Bento Grid)
   ========================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
  }
}

.bento-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.bento-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  .bento-wide {
    grid-column: span 3;
  }
}

.bento-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bg-gradient-dark {
  background: linear-gradient(135deg, var(--cards) 0%, var(--bg) 100%);
}
.bg-gradient-glass {
  background: var(--cards);
  backdrop-filter: blur(10px);
}
.bento-content {
  position: relative;
  z-index: 10;
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-content.flex-row {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.feature-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
}
.bento-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.bento-large h3 {
  font-size: 2rem;
}
.bento-content p {
  color: var(--muted);
  line-height: 1.5;
}
.feature-image-placeholder {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.pulse-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulse 2s infinite;
}

/* =========================================
   Highlights (Video Cards)
   ========================================= */
.highlights-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}

.highlight-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
.video-thumbnail {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.highlight-card:hover .video-thumbnail {
  border-color: var(--accent-primary);
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.highlight-card:hover .play-overlay {
  opacity: 1;
}
.play-icon {
  width: 3rem;
  height: 3rem;
  color: var(--white);
  background: var(--accent-primary);
  border-radius: 50%;
  padding: 0.75rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.highlight-card:hover .play-icon {
  transform: scale(1);
}
.duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: var(--font-numbers);
}
.highlight-info h4 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}
.highlight-card:hover .highlight-info h4 {
  color: var(--accent-primary);
}
.highlight-info p {
  color: var(--muted);
  font-size: 0.875rem;
}

/* =========================================
   Live Statistics
   ========================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  font-weight: 500;
}

/* =========================================
   News / Trending Stories
   ========================================= */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}
.news-card {
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  background: var(--cards);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.news-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.news-excerpt {
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================
   FAQ
   ========================================= */
.faq-accordion {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
}
.faq-icon {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted);
  line-height: 1.6;
}
.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
  max-height: 200px;
}

/* =========================================
   Footer (Updated to include CTA)
   ========================================= */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2.5rem;
}
.site-footer__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 16rem;
  background: rgba(0, 230, 118, 0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}
.site-footer__container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(4, 1fr); }
}
.footer-desc {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 1.5rem 0;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--cards);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.3s ease;
}
.social-btn:hover {
  color: var(--accent-secondary);
  border-color: var(--accent-secondary);
}
.widget-title {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}
.footer-widget ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-widget a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.footer-widget a:hover {
  color: var(--white);
}
.newsletter-desc {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  color: var(--white);
  flex-grow: 1;
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
}
.newsletter-form button {
  background: var(--accent-primary);
  color: var(--bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  transition: background-color 0.3s ease;
}
.newsletter-form button:hover {
  background: var(--white);
}
.site-info {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .site-info {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Animations */
@keyframes blob {
  0% { transform: translate(0px, 0px) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
  100% { transform: translate(0px, 0px) scale(1); }
}
@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-spin-slow {
  animation: spin-slow 15s linear infinite;
}
.animation-delay-2000 {
  animation-delay: 2s;
}

/* WhatsApp Floating Button Styles */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  height: 60px;
  padding: 0 1.5rem 0 1.1rem;
  background-color: #25d366;
  border-radius: var(--radius-full);
  color: #04231a;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-glow 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* Icon-only circle on small screens, where a pill would crowd the viewport. */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 60px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float__number {
    display: none;
  }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   Scroll reveals + FAQ icon (theme.js)
   ========================================= */
.pt-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}
.pt-reveal--visible {
  opacity: 1;
  transform: none;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
@media (prefers-reduced-motion: reduce) {
  .pt-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================
   Full-bleed hero (front page)
   ========================================= */
.home .site-main {
  padding-top: 0;
}
.hero-full {
  width: 100%;
  padding: 0;
  margin: 0;
  background: var(--bg);
  overflow: hidden;
}
.hero-full__media,
.hero-full__media img {
  display: block;
  width: 100%;
}
.hero-full__media img {
  height: auto;
}

/* =========================================
   Shared brand sections (black + gold)
   ========================================= */
.brand-section {
  padding: 5rem 0;
  background: var(--bg);
}
.brand-section--alt {
  background: var(--bg-secondary);
}
.brand-section--glow {
  position: relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(250, 204, 21, 0.12), transparent 45%),
    var(--bg-secondary);
}
.brand-header {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}
.brand-eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent-primary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.brand-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}
.brand-title em {
  color: var(--accent-primary);
  font-style: normal;
}
.brand-rule {
  width: 50px;
  height: 3px;
  margin: 1rem auto;
  background: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}
.brand-rule--left {
  margin-left: 0;
}
.brand-lead {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

/* Site link cards -------------------------------------------------- */
.site-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.site-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}
.site-card__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: rgba(250, 204, 21, 0.12);
  color: var(--accent-primary);
}
.site-card__label {
  flex-grow: 1;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.site-card__link {
  color: var(--accent-primary);
  font-weight: 700;
  text-decoration: none;
}
.site-card__link:hover {
  text-decoration: underline;
}

/* Exchange logo grid ----------------------------------------------- */
.exchange-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}
.exchange-card {
  display: block;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.exchange-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}
.exchange-card img {
  display: block;
  width: 100%;
  height: auto;
}

/* Feature cards ---------------------------------------------------- */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  padding: 2.5rem 1.25rem;
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}
.feature-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: var(--accent-primary);
}
.feature-card h4 {
  margin: 0 0 0.5rem;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

/* Panel section: chips, stats, WhatsApp buttons -------------------- */
.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.panel-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.panel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}
.panel-chip svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}
.panel-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 380px;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.2rem;
  background: #25d366;
  border-radius: var(--radius-full);
  color: #04231a;
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-whatsapp:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5);
}
.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}
.stat-card__value {
  margin: 0 0 0.5rem;
  color: var(--accent-primary);
  font-family: var(--font-numbers);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}
.stat-card__label {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .panel-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .site-cards {
    grid-template-columns: 1fr;
  }
}
