/* ============================================
   BK8 Affiliate Landing Page - Design System
   Modern UI · Mobile First · Dark/Light Mode
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Custom Properties (Theme Tokens) ---- */
/* ---- Design System (Primary White Theme) ---- */
:root {
  --bg-primary: #FFFFFF;
  --bg-secondary: #F4F7FA;
  --bg-card: #FFFFFF;
  --bg-card-hover: #F8FAFC;
  --bg-glass: rgba(255, 255, 255, 0.95);
  --bg-input: #F1F5F9;
  --border-color: rgba(0, 0, 0, 0.08);
  --border-subtle: rgba(0, 0, 0, 0.05);
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #718096;
  --shadow-color: rgba(0, 0, 0, 0.06);
  --glow-gold: 0 4px 20px rgba(0, 0, 0, 0.05);

  /* Brand Colors */
  --gold: #FFD700;
  --gold-dark: #E6C200;
  --brand-red: #D32F2F;
  --brand-blue: #01579B;
  --brand-navy: #0A1628;

  --hero-gradient: linear-gradient(135deg, #F8FAFC 0%, #EDF2F7 100%);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Colors */
  --white: #FFFFFF;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Light/Dark toggle support (Optional - Defaulting to White) */
[data-theme="dark"] {
  --bg-primary: #1A202C;
  --bg-secondary: #2D3748;
  --bg-card: #2D3748;
  --bg-glass: rgba(26, 32, 44, 0.9);
  --text-primary: #F7FAFC;
  --text-secondary: #E2E8F0;
  --text-muted: #A0AEC0;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --hero-gradient: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  --expert-gradient: linear-gradient(180deg, #1A202C 0%, #2D3748 100%);
  --white: #2D3748;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background var(--transition-base), color var(--transition-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul,
ol {
  list-style: none;
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---- Utility Classes ---- */
.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: var(--text-secondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---- Section Styling ---- */
.section {
  padding: var(--space-3xl) 0;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   NAVBAR & ALERT BAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-primary);
  /* Use variable */
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .navbar-inner {
  height: 60px;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.partner-logos {
  display: flex;
  align-items: center;
  border-left: 1px solid #EEE;
  padding-left: var(--space-md);
  margin-left: var(--space-md);
}

.partner-logo {
  height: 32px;
  filter: grayscale(0.2);
  transition: filter var(--transition-base);
}

.partner-logo:hover {
  filter: grayscale(0);
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-red);
}

/* Theme Toggle Button */
.theme-toggle {
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-color);
}

/* Alert Bar (News Ticker) */
.alert-bar {
  background: #000;
  color: #FFF;
  font-size: 0.85rem;
  padding: 8px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-radius: 4px;
  margin: 10px auto;
  max-width: 1200px;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  padding-left: 100%;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.ticker-item {
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-slider-section {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
}

.promo-slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.promo-slider-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
  gap: var(--space-md);
}

.promo-slider-track .promo-card-top {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .promo-slider-track .promo-card-top {
    flex: 0 0 calc(33.333% - (var(--space-md) * 2 / 3));
    max-width: calc(33.333% - (var(--space-md) * 2 / 3));
  }
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-xl);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: var(--brand-red);
  width: 30px;
  border-radius: 10px;
}

.mt-md {
  margin-top: var(--space-md) !important;
}

.promo-card-top {
  background: #F4F7FA;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  padding-bottom: var(--space-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.promo-cta-card {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  border: none;
}

.promo-cta-content h3 {
  color: var(--gold) !important;
  margin-bottom: var(--space-sm) !important;
}

.promo-cta-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: var(--space-lg) !important;
}

.promo-card-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #FFF;
}

.promo-card-top img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

.promo-card-top h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: var(--space-md) 0 var(--space-xs);
  color: var(--brand-red);
}

.promo-card-top p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0 var(--space-md);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .top-promos {
    grid-template-columns: repeat(3, 1fr);
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  /* Increased from 64px for better branding visibility */
  transition: height var(--transition-base);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.navbar-logo img {
  height: 52px;
  /* Substantially larger for attraction */
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: all var(--transition-base);
}

.navbar-logo:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 12px rgba(255, 215, 0, 0.3));
  /* Gold glow on hover */
}

.logo-bk {
  color: var(--brand-blue);
}

.logo-8 {
  color: var(--brand-red);
  margin-left: 2px;
}

.partner-logos {
  margin-left: var(--space-md);
}

.partner-badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand-blue);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(0, 59, 113, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Theme Toggle */
.theme-toggle {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}

.theme-toggle:hover {
  border-color: var(--gold);
  transform: rotate(15deg);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  padding: var(--space-xl);
  z-index: 999;
  flex-direction: column;
  gap: var(--space-md);
  animation: slideDown 0.3s ease;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--bg-card);
  color: var(--gold);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  font-family: var(--font-family);
}

.btn-red {
  background: var(--brand-red);
  color: #FFF;
  border: none;
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
}

.btn-red:hover {
  background: #B71C1C;
  transform: translateY(-1px);
}

.btn-black {
  background: #000;
  color: #FFF;
  border: none;
  border-radius: 40px;
  padding: 0.6rem 1.5rem;
  font-weight: 700;
}

.btn-black:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  margin-bottom: 10px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--gold);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
}

.btn-line {
  background: #06c755;
  color: white;
}

.btn-navy {
  background: var(--brand-navy);
  color: #FFF;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-navy:hover {
  background: var(--brand-blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}



/* ============================================
   HERO SECTION
   ============================================ */
.main-title {
  font-size: clamp(1.5rem, 5vw, 2.8rem);
  font-weight: 900;
  color: #01579B;
  margin: var(--space-xl) 0;
  line-height: 1.2;
}

/* ============================================
   MOTOGP SECTION
   ============================================ */
.motogp-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background: #0D47A1 url('../images/motogp_bk8_partnership.jpg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  color: #FFF;
}

.motogp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
  z-index: 1;
}

.motogp-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: var(--space-3xl) 0;
}

.motogp-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.motogp-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

/* Info Block Styles */
.info-block {
  padding: var(--space-3xl) 0;
  color: var(--text-primary);
}

.intro-p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--space-3xl);
  color: #444;
}

.intro-p strong {
  color: var(--brand-red);
}

.info-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.info-image img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.info-text .sub-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #01579B;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 2px solid var(--brand-red);
  display: inline-block;
}

.info-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
}

.info-text strong {
  color: var(--brand-red);
}

@media (min-width: 992px) {
  .info-row {
    flex-direction: row;
  }

  .info-image,
  .info-text {
    flex: 1;
  }

  .info-text {
    padding-left: var(--space-3xl);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--gold);
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   GAME CATEGORIES
   ============================================ */
/* Game Services Section */
.services-section {
  background: var(--bg-secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}

.service-mockup {
  margin-bottom: var(--space-md);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform var(--transition-base);
}

.service-card:hover .service-mockup {
  transform: scale(1.02);
}

.service-mockup img {
  width: 100%;
  display: block;
}

.service-title {
  color: #01579B;
  font-size: 1.2rem;
  font-weight: 800;
  margin: var(--space-md) 0 var(--space-xs);
}

.service-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* Tutorial / Register Section */
.tutorial-section {
  padding: var(--space-3xl) 0;
}

.tutorial-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
  align-items: center;
}

.tutorial-list {
  list-style: none;
}

.tutorial-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

.tutorial-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--brand-red);
  font-size: 1.5rem;
  line-height: 1;
}

.tutorial-list strong {
  color: var(--brand-red);
}

/* Platform Section */
.platform-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  border-top: 1px solid var(--border-subtle);
}

.platform-content {
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .tutorial-row {
    flex-direction: row;
  }

  .tutorial-image,
  .tutorial-text {
    flex: 1;
  }
}

/* ============================================
   PROMOTIONS
   ============================================ */
.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.promo-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-color);
  border-color: rgba(255, 215, 0, 0.2);
}

.promo-card-header {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
  padding: var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
}

.promo-badge {
  display: inline-block;
  background: var(--gold);
  color: #0a1628;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.promo-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-card-body {
  padding: var(--space-lg);
}

.promo-card-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

.promo-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.promo-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.promo-feature .check {
  color: #22c55e;
  font-weight: 700;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
}

/* MotoGP Section */
.motogp-hero {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.motogp-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.motogp-hero .container {
  position: relative;
  z-index: 1;
}

.motogp-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.motogp-partners .partner-plus {
  color: var(--primary-color);
  font-size: 2rem;
}

.motogp-partners .partner-name {
  color: #fff;
}

.motogp-title {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.motogp-subtitle {
  color: #fff;
  font-size: 1.5rem;
  opacity: 0.9;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ (AEO OPTIMIZED)
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item[open] {
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: var(--glow-gold);
}

.faq-item summary {
  padding: var(--space-lg);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary:hover {
  color: var(--gold);
}

.faq-answer {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================
   LEAD CAPTURE / CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.02));
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--glow-gold);
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

.cta-card .subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-message {
  font-size: 0.85rem;
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #FFF;
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  color: #333;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .footer-logo {
  margin-bottom: var(--space-md);
  font-size: 1.8rem;
  font-weight: 900;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
  max-width: 400px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #01579B;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col .trust-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  text-align: center;
}

.trust-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  position: relative;
  display: inline-block;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
}

.trust-logo-item {
  height: 40px;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logo-item img {
  max-height: 100%;
  max-width: 120px;
  object-fit: contain;
}

.trust-logo-item span {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.trust-logo-item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* Specific Responsive adjustments */
@media (min-width: 1024px) {
  .trust-container {
    padding: 0 var(--space-3xl);
  }
}

.footer-col ul li {
  margin-bottom: var(--space-sm);
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: #555;
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--brand-red);
}

.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-logo {
  height: 40px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: all var(--transition-base);
}

.p-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  max-width: 500px;
}

/* ============================================
   MOBILE STICKY CTA
   ============================================ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-sm) var(--space-md);
  z-index: 999;
  display: flex;
  gap: var(--space-sm);
}

.mobile-sticky-cta .btn {
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  padding: 0.6rem;
}

/* ============================================
   SCROLL ANIMATIONS (Intersection Observer)
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (640px+) */
@media (min-width: 640px) {
  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }

  .lead-form {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .lead-form .form-group {
    flex: 1;
    min-width: 200px;
  }

  .lead-form .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .mobile-sticky-cta {
    display: none;
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .game-card {
    padding: var(--space-2xl);
  }

  .game-card-icon {
    font-size: 3rem;
  }
}

/* Large Desktop (1280px+) */
@media (min-width: 1280px) {
  .games-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============================================
   MEMBER WELCOME PROMOTIONS (GRID)
   ============================================ */
.welcome-promos-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-2xl);
}

.welcome-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.welcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.3);
}

.welcome-card-img {
  width: 100%;
  aspect-ratio: 2 / 1;
  background: var(--bg-secondary);
  overflow: hidden;
}

.welcome-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-content {
  padding: var(--space-xl);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.welcome-content h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.welcome-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.welcome-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: auto;
}

.welcome-actions .btn {
  flex: 1;
}

.btn-blue {
  background: #007bff;
  color: #FFF;
}

.btn-blue:hover {
  background: #0069d9;
}

.btn-gray {
  background: #E2E8F0;
  color: #4A5568;
}

.btn-gray:hover {
  background: #CBD5E0;
}

@media (min-width: 768px) {
  .welcome-card {
    flex-direction: row;
    align-items: center;
  }

  .welcome-card-img {
    flex: 0 0 45%;
  }

  .welcome-content {
    padding: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .welcome-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ADMIN DASHBOARD STYLES
   ============================================ */
.admin-layout {
  min-height: 100vh;
  padding-top: 80px;
}

.admin-header {
  margin-bottom: var(--space-2xl);
}

.admin-header h1 {
  font-size: 1.75rem;
  font-weight: 800;
}

.admin-header p {
  color: var(--text-secondary);
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.admin-card h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
}

.stat-box .stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

.link-table {
  width: 100%;
  border-collapse: collapse;
}

.link-table th,
.link-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.85rem;
}

.link-table th {
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}

.link-table td {
  color: var(--text-primary);
}

.link-table .url-cell {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--gold);
  font-family: monospace;
  font-size: 0.8rem;
}

.link-actions {
  display: flex;
  gap: var(--space-xs);
}

.link-edit-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

.link-edit-form label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  display: block;
}

.link-edit-form input,
.link-edit-form select {
  width: 100%;
  padding: 0.7rem 1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-family);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.link-edit-form input:focus,
.link-edit-form select:focus {
  border-color: var(--gold);
}

.leads-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.lead-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.lead-item .lead-info {
  color: var(--text-primary);
}

.lead-item .lead-date {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* Admin Login */
.admin-login {
  max-width: 400px;
  margin: 10vh auto;
  text-align: center;
}

.admin-login h2 {
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   BLOG STYLES
   ============================================ */
.blog-layout {
  padding-top: 100px;
  min-height: 100vh;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  display: block;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 12px 40px var(--shadow-color);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-content {
  padding: var(--space-lg);
}

.blog-card-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-card-meta {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
  font-size: 0.75rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================
   SCROLLBAR CUSTOMIZATION
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-card);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* AEO Expert Section */
.expert-aeo-section {
  background: var(--expert-gradient, linear-gradient(180deg, #FFFFFF 0%, #f0f7ff 100%));
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.expert-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 20px 50px rgba(0, 59, 114, 0.08);
  border: 1px solid rgba(0, 59, 114, 0.1);
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-blue);
}

.expert-header {
  margin-bottom: var(--space-2xl);
  text-align: center;
}

.expert-header .badge {
  background: var(--brand-navy);
  color: #FFF;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  display: inline-block;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 36, 68, 0.2);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.expert-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 992px) {
  .expert-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.expert-content article {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  transition: background 0.3s;
}

.expert-content article:hover {
  background: #f9fcff;
}

.expert-content h3 {
  color: var(--brand-navy);
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
}

.expert-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.expert-cta {
  margin-top: var(--space-2xl);
  text-align: center;
  padding-top: var(--space-xl);
  border-top: 1px dashed #cedde0;
}

.expert-cta p {
  margin-bottom: var(--space-lg);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.btn-navy {
  background: var(--brand-navy);
  color: #FFF;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 36, 68, 0.15);
}

.btn-navy:hover {
  background: var(--brand-blue);
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 36, 68, 0.25);
}

/* Enhanced Promo Cards */
.promo-card-top .promo-image-wrapper {
  overflow: hidden;
  position: relative;
}

.promo-card-top img {
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.promo-card-top:hover img {
  transform: scale(1.1);
}

.promo-cta-card {
  position: relative;
  z-index: 1;
}

.promo-cta-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  z-index: -1;
  animation: pulse-gold 4s infinite;
}

@keyframes pulse-gold {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

/* ============================================
   LOADING SKELETON
   ============================================ */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* Mobile Sticky CTA Bar */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: var(--space-md);
  z-index: 1000;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-sticky-cta .btn {
  flex: 1;
  font-size: 0.9rem;
  padding: 12px;
  border-radius: var(--radius-md);
  text-align: center;
  font-weight: 700;
}

@media (min-width: 769px) {
  .mobile-sticky-cta {
    display: none !important;
  }
}

/* Additional Responsive Refinements */
@media (max-width: 768px) {
  .expert-content {
    grid-template-columns: 1fr;
  }

  .expert-card {
    padding: var(--space-xl);
  }

  .top-promos {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .navbar,
  .mobile-sticky-cta,
  .mobile-menu {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ============================================
   TRUST & SUPPORT SECTION
   ============================================ */
.trust-section {
  background: var(--bg-secondary);
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--border-subtle);
}

.trust-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
}

@media (min-width: 992px) {
  .trust-container {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: flex-start;
  }
}

.trust-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-logos {
  transition: transform var(--transition-base);
  display: flex;
  justify-content: center;
  align-items: center;
}

.trust-logos img {
  width: 100%;
  max-width: 500px;
  height: 50px;
  /* Force height to crop square assets into strips */
  object-fit: cover;
  /* Zooms in on the center of the image */
  object-position: center;
  filter: grayscale(100%);
  opacity: 0.6;
  mix-blend-mode: multiply;
  transition: all var(--transition-base);
  display: block;
}

.trust-logos:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
}

/* Specific responsive tweaks */
@media (max-width: 991px) {
  .trust-logos img {
    height: 32px;
  }
}

/* ============================================
   BK8 SPORTS HERO SECTION
   ============================================ */
.sports-hero {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.75)),
    url('../images/promos/promo_sports_rebate.png') center/cover no-repeat;
  overflow: hidden;
}

[data-theme="dark"] .sports-hero {
  background: linear-gradient(rgba(26, 32, 44, 0.85), rgba(26, 32, 44, 0.75)),
    url('../images/promos/promo_sports_rebate.png') center/cover no-repeat;
}

.sports-content {
  max-width: 900px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

[data-theme="dark"] .sports-content {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
}

.sports-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 900;
  color: var(--brand-navy);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

[data-theme="dark"] .sports-title {
  color: #FFF;
}

.sports-subtitle {
  font-size: clamp(1.4rem, 4vw, 2.22rem);
  font-weight: 700;
  color: var(--brand-red);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.sports-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-md);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

[data-theme="dark"] .sports-description {
  color: var(--text-muted);
}

.btn-orange {
  display: inline-block;
  background: linear-gradient(45deg, #FF8C00, #FFA500);
  color: #FFF !important;
  font-weight: 800;
  padding: 1.2rem 3.5rem;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.15rem;
  transition: all var(--transition-base);
}

.btn-orange:hover {
  background: linear-gradient(45deg, #E67E00, #FF8C00);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 140, 0, 0.5);
}

@media (max-width: 768px) {
  .sports-hero {
    min-height: 500px;
    padding: var(--space-2xl) 0;
  }

  .sports-content {
    padding: var(--space-xl);
    margin: 0 var(--space-md);
  }

  .sports-title {
    font-size: 3rem;
  }
}

/* Video Container Scaling */
/* Luxurious Video Container Upgrade */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 215, 0, 0.25);
  /* Subtle Gold Border */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.1);
  /* Deep shadow + Gold Glow */
  background: #000;
  transition: all var(--transition-base);
}

.video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ Partnership & Awards Section ============ */
/* ============ Partnership & Awards Section Overhaul ============ */
.partnership-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
}

.partnership-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xl);
}

.partnership-row {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  align-items: flex-start;
}

.partner-group {
  flex: 1;
  min-width: 280px;
}

.partner-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partner-logo-box {
  width: 100%;
  height: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.partner-logo-box:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

/* Official Logos Coding */
.logo-gresini {
  background: linear-gradient(135deg, #171717 0%, #333 100%);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-gresini-top {
  font-size: 0.6rem;
  color: #41c478;
  letter-spacing: 3px;
  font-weight: 800;
}

.logo-gresini-mid {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  margin: 4px 0;
}

.logo-gresini-bot {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-burnley-svg {
  width: 70px;
  height: 70px;
  background: #6C1D45;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #99D6EA;
}

.logo-bwf-box {
  background: #DC1027;
  padding: 10px 18px;
  border-radius: 4px;
  color: white;
  font-weight: 900;
  font-style: italic;
  box-shadow: 0 4px 0 #9b0b1b;
}

/* Past Sponsors */
.past-sponsors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.past-sponsor-item {
  background: var(--bg-secondary);
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  transition: all 0.2s;
  border: 1px solid var(--border-subtle);
}

.past-sponsor-item:hover {
  transform: scale(1.1);
  z-index: 2;
  border-color: var(--gold);
  background: var(--white);
}

.past-sponsor-crest {
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.past-sponsor-year {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Awards Section */
.awards-row {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-3xl);
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-xl);
  justify-items: center;
  margin-top: var(--space-xl);
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.award-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  transition: transform 0.3s;
}

.award-item:hover .award-badge {
  transform: scale(1.1) rotate(5deg);
}

.award-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
}

.award-status {
  font-size: 0.7rem;
  font-weight: 700;
}

.award-status.gold {
  color: var(--gold);
}

.award-status.nominee {
  color: #ef4444;
}

@media (max-width: 992px) {
  .partnership-row {
    flex-direction: column;
    align-items: stretch;
  }

  .past-sponsors-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .partnership-row {
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
  }

  .partner-group {
    width: 100%;
    text-align: center;
  }
}

/* ============ Language Switcher ============ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-input);
  padding: 4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  margin-right: var(--space-md);
}

.lang-btn {
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  color: var(--text-secondary);
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}

.lang-btn.active {
  background: var(--brand-red);
  color: #FFF;
  box-shadow: 0 2px 8px rgba(225, 24, 72, 0.3);
}

.lang-btn:hover:not(.active) {
  background: var(--bg-hover);
  color: var(--text-primary);
}

/* Mobile Language Switcher */
.mobile-lang-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 600;
  transition: background 0.3s;
  cursor: pointer;
}

.mobile-lang-btn:hover {
  background: var(--bg-hover);
}

.mobile-lang-label {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.mobile-lang-current {
  color: var(--brand-red);
  font-weight: 800;
}

/* ============ Gaming License Section ============ */
.license-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
}

.license-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.license-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.verified-badge {
  color: #3182ce;
  font-size: 1.1rem;
}

.license-seal-wrapper {
  perspective: 1000px;
}

/* CSS-Based Gaming License Seal (Official Style) */
.license-seal {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #f6e05e 0%, #d69e2e 100%);
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(183, 121, 31, 0.2);
  border: 4px double #ffffff80;
  color: #553c13;
  font-family: 'Inter', sans-serif;
}

.license-seal::before {
  content: "";
  position: absolute;
  width: 106px;
  height: 106px;
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.seal-text-top {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: absolute;
  top: 15px;
}

.seal-icon {
  font-size: 32px;
  margin-top: 5px;
}

.seal-text-bottom {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  max-width: 80px;
  margin-top: 5px;
}

.license-content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .license-card {
    flex-direction: row;
    text-align: left;
    padding: var(--space-2xl);
    gap: var(--space-2xl);
  }
}