/* ========================================
   KONOHATOTO78 - ULTRA PREMIUM DESIGN
   Dramatic Glow, Modern Aesthetics
   ======================================== */

:root {
  --gold: #fed804;
  --gold-dark: #d4b003;
  --gold-glow: rgba(254, 216, 4, 0.6);
  --charcoal: #0a0a0a;
  --charcoal-light: #1a1a1a;
  --charcoal-medium: #2a2a2a;
  --white: #ffffff;
  --gray: #9ca3af;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(254, 216, 4, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(254, 216, 4, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.accent {
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold-glow);
}

/* Section Number Badge */
.section-num {
  display: inline-block;
  font-family: 'Bebas Neue', cursive;
  font-size: 14px;
  font-weight: 400;
  color: var(--gold);
  background: rgba(254, 216, 4, 0.1);
  border: 1px solid rgba(254, 216, 4, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ========================================
   STICKY CTA - REMOVED (Using header button instead)
   ======================================== */
.sticky-cta {
  display: none;
}

/* ========================================
  HEADER - PREMIUM CLEAN
  ======================================== */
.header-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-premium.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.brand:hover {
  opacity: 0.8;
}

.brand-icon {
  height: 40px;
  width: auto;
  display: block;
}

.brand-wordmark {
  height: 30px;
  width: auto;
  display: none;
}

@media (min-width: 600px) {
  .brand-wordmark {
    display: block;
  }
}

/* Navigation */
.header-nav {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

/* Header CTA Button */
.btn-header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 11px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}

.btn-header-cta svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

.btn-header-cta:hover {
  background: #ffdf00;
  transform: translateY(-1px);
}

.btn-header-cta:active {
  transform: translateY(0);
}

/* ========================================
   HERO - PREMIUM MODERN
   ======================================== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 72px 0 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(254, 216, 4, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(254, 216, 4, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-light) 100%);
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(254, 216, 4, 0.1);
  border: 1px solid rgba(254, 216, 4, 0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.title-line {
  display: block;
}

.title-highlight {
  background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUp 1.2s ease 0.3s backwards;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 16px 28px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.btn-main {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.btn-sub {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.75;
  letter-spacing: 0.2px;
}

.btn-hero-primary:hover {
  background: #ffdf00;
  transform: translateY(-2px);
}

.btn-hero-primary:active {
  transform: translateY(0);
}

/* Hero Stats Inline */
.hero-stats-inline {
  display: flex;
  gap: 32px;
  padding-left: 4px;
}

.stat-inline {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

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

@keyframes circlePulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(2);
    opacity: 0.3;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

/* Hero Visual - Phone Showcase */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.phones-showcase {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-showcase {
  position: absolute;
  width: 240px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 1s ease backwards;
}

.phone-back-left,
.phone-back-right {
  position: absolute;
}

.phone-showcase img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.phone-tag {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Phone Positions with Depth */
.phone-back-left {
  left: 0;
  top: 60px;
  transform: rotate(-8deg) scale(0.85);
  opacity: 0.7;
  z-index: 1;
  animation-delay: 0.2s;
  filter: blur(3px);
}

.phone-back-left::after {
  content: '';
  position: absolute;
  left: -25px;
  top: 18%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: transparent;
  animation: circlePulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 100;
}

.phone-back-left.tapped::after {
  display: none;
}

.phone-front {
  left: 50%;
  top: 0;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  animation-delay: 0.4s;
  filter: blur(0);
}

.phone-front img {
  box-shadow: none;
}

.phone-back-right {
  right: 0;
  top: 60px;
  transform: rotate(8deg) scale(0.85);
  opacity: 0.7;
  z-index: 1;
  animation-delay: 0.6s;
  filter: blur(3px);
}

.phone-back-right::after {
  content: '';
  position: absolute;
  right: -25px;
  top: 18%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  background: transparent;
  animation: circlePulse 2.5s ease-in-out infinite 0.8s;
  pointer-events: none;
  z-index: 100;
}

.phone-back-right.tapped::after {
  display: none;
}

/* Hover Effects */
.phone-showcase:hover {
  transform: translateX(-50%) scale(1.05) !important;
  opacity: 1 !important;
  z-index: 5 !important;
  filter: blur(0) !important;
}

.phone-back-left:hover {
  transform: rotate(-8deg) scale(0.92) !important;
  left: -10px;
  filter: blur(0);
}

.phone-back-right:hover {
  transform: rotate(8deg) scale(0.92) !important;
  right: -10px;
  filter: blur(0);
}

/* When one phone is hovered, blur the others */
.phones-showcase:has(.phone-back-left:hover) .phone-front,
.phones-showcase:has(.phone-back-left:hover) .phone-back-right,
.phones-showcase:has(.phone-back-right:hover) .phone-front,
.phones-showcase:has(.phone-back-right:hover) .phone-back-left,
.phones-showcase:has(.phone-front:hover) .phone-back-left,
.phones-showcase:has(.phone-front:hover) .phone-back-right {
  filter: blur(4px);
  opacity: 0.5;
}

/* Hero Footer Stat */
.hero-footer-stat {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 40px;
}

.jackpot-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(254, 216, 4, 0.1);
  border: 1px solid rgba(254, 216, 4, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.jackpot-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.jackpot-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* ========================================
   SECTION STYLES
   ======================================== */
section {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.section-title {
  font-size: clamp(32px, 8vw, 60px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  text-shadow: 
    0 0 30px rgba(254, 216, 4, 0.4),
    0 0 60px rgba(254, 216, 4, 0.2),
    2px 2px 15px rgba(0, 0, 0, 0.9);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
  box-shadow: 0 0 30px var(--gold-glow);
}

/* ========================================
   GAME GRID
   ======================================== */
.games-broken-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.game-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--charcoal-light);
  border: 1px solid rgba(254, 216, 4, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.game-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(254, 216, 4, 0.3);
}

.game-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-item:hover img {
  transform: scale(1.1);
}

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
  backdrop-filter: blur(10px);
}

.game-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.game-subtitle {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  text-shadow: 0 0 10px var(--gold-glow);
}

/* ========================================
   FEATURES & PARALLAX
   ======================================== */
.features-parallax {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.parallax-sticky-phone {
  position: sticky;
  top: 20vh;
  width: 300px;
  margin: 0 auto;
}

.parallax-sticky-phone img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card {
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal-medium) 100%);
  border: 2px solid rgba(254, 216, 4, 0.2);
  border-radius: 25px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(254, 216, 4, 0.1);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateX(10px);
  box-shadow: 
    0 15px 60px rgba(254, 216, 4, 0.4),
    0 0 80px rgba(254, 216, 4, 0.2);
  border-color: rgba(254, 216, 4, 0.4);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 20px rgba(254, 216, 4, 0.5));
}

.feature-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
}

/* ========================================
   FEATURES INTERACTIVE GRID
   ======================================== */
.section-features-grid {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 50%, #0f0f0f 100%);
  overflow: visible;
}

.features-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.features-grid-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-grid-subtitle {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
  letter-spacing: 0px;
}

.features-grid-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px 20px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Poker Card Fan Container */
.poker-card-fan {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 320px;
  margin: 0 auto;
}

/* Feature Card - Poker Style */
.feature-grid-card {
  position: absolute;
  width: 220px;
  height: 320px;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform-origin: bottom center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

/* Card positions in fan - mobile - better overlap */
.feature-grid-card:nth-child(1) {
  transform: translate(-50%, -50%) translateX(-75px) rotate(-15deg);
  z-index: 1;
}

.feature-grid-card:nth-child(2) {
  transform: translate(-50%, -50%) translateX(-25px) rotate(-5deg);
  z-index: 2;
}

.feature-grid-card:nth-child(3) {
  transform: translate(-50%, -50%) translateX(25px) rotate(5deg);
  z-index: 3;
}

.feature-grid-card:nth-child(4) {
  transform: translate(-50%, -50%) translateX(75px) rotate(15deg);
  z-index: 4;
}

/* Hover effect - lift card */
@media (hover: hover) and (pointer: fine) {
  .feature-grid-card:hover {
    transform: translate(-50%, -65%) translateX(var(--offset-x)) rotate(var(--rotation)) !important;
    z-index: 100 !important;
  }
  
  .feature-grid-card:nth-child(1):hover {
    --offset-x: -75px;
    --rotation: -15deg;
  }
  
  .feature-grid-card:nth-child(2):hover {
    --offset-x: -25px;
    --rotation: -5deg;
  }
  
  .feature-grid-card:nth-child(3):hover {
    --offset-x: 25px;
    --rotation: 5deg;
  }
  
  .feature-grid-card:nth-child(4):hover {
    --offset-x: 75px;
    --rotation: 15deg;
  }
}

/* Flipped state - card becomes modal popup */
.feature-grid-card.flipped {
  position: fixed !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  z-index: 9999 !important;
  width: 90vw;
  max-width: 400px;
  height: auto;
  min-height: 480px;
}

.feature-grid-card.flipped .feature-grid-front {
  opacity: 0;
  pointer-events: none;
}

.feature-grid-card.flipped .feature-grid-back {
  opacity: 1;
  pointer-events: auto;
}

.feature-grid-front,
.feature-grid-back {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

/* Front Side - Poker Card */
.feature-grid-front {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(15, 15, 15, 0.98) 100%);
  border: 3px solid rgba(254, 216, 4, 0.3);
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* Back Side - Hidden by default */
.feature-grid-back {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 32px 28px;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
}

.feature-grid-card:active .feature-grid-front {
  transform: scale(0.98);
}

.feature-grid-icon {
  font-size: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 20px rgba(254, 216, 4, 0.4));
  animation: float 3s ease-in-out infinite;
}

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

.feature-grid-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-grid-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(254, 216, 4, 0.7);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(254, 216, 4, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(254, 216, 4, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(254, 216, 4, 0);
  }
}


.feature-grid-icon-small {
  font-size: 40px;
  margin-bottom: 12px;
}

.feature-grid-back-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.feature-grid-list {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 8px;
}

.feature-grid-list li {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  padding: 8px 0;
  line-height: 1.5;
}

.feature-grid-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 10, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 300;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.feature-grid-close:hover {
  background: rgba(10, 10, 10, 0.5);
  transform: rotate(90deg);
}

/* Modal Overlay */
.features-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.features-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* CTA Section */
.features-grid-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.btn-features-download {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border: none;
  padding: 20px 40px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(254, 216, 4, 0.5);
  width: 100%;
  justify-content: center;
}

.btn-features-download:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(254, 216, 4, 0.7);
}

.btn-features-download .btn-icon {
  font-size: 28px;
}

.btn-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.btn-text-main {
  font-size: 16px;
  letter-spacing: 1px;
}

.btn-text-sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.8;
}

/* Responsive */
@media (min-width: 600px) {
  .poker-card-fan {
    max-width: 700px;
    height: 380px;
  }
  
  .feature-grid-card {
    width: 260px;
    height: 380px;
  }
  
  /* Wider fan spread on tablets */
  .feature-grid-card:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-140px) rotate(-15deg);
  }
  
  .feature-grid-card:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-48px) rotate(-5deg);
  }
  
  .feature-grid-card:nth-child(3) {
    transform: translate(-50%, -50%) translateX(48px) rotate(5deg);
  }
  
  .feature-grid-card:nth-child(4) {
    transform: translate(-50%, -50%) translateX(140px) rotate(15deg);
  }
  
  .btn-features-download {
    width: auto;
    padding: 22px 48px;
  }
}

@media (min-width: 900px) {
  .section-features-grid {
    padding: 120px 40px;
  }
  
  .poker-card-fan {
    max-width: 900px;
    height: 420px;
  }
  
  .feature-grid-card {
    width: 280px;
    height: 420px;
  }
  
  /* Desktop - even wider spread */
  .feature-grid-card:nth-child(1) {
    transform: translate(-50%, -50%) translateX(-200px) rotate(-18deg);
  }
  
  .feature-grid-card:nth-child(2) {
    transform: translate(-50%, -50%) translateX(-68px) rotate(-6deg);
  }
  
  .feature-grid-card:nth-child(3) {
    transform: translate(-50%, -50%) translateX(68px) rotate(6deg);
  }
  
  .feature-grid-card:nth-child(4) {
    transform: translate(-50%, -50%) translateX(200px) rotate(18deg);
  }
  
  .feature-grid-front,
  .feature-grid-back {
    padding: 32px;
  }
  
  .feature-grid-icon {
    font-size: 72px;
  }
}

/* OLD PARALLAX SECTION (deprecated) */
.section-parallax {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
  overflow: hidden;
}

.parallax-side {
  width: 100%;
}

.parallax-left {
  display: none;
}

.parallax-right {
  padding: 0 20px;
}

.parallax-content {
  max-width: 1200px;
  margin: 0 auto;
}

.parallax-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.parallax-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-modern {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(254, 216, 4, 0.1);
  border-radius: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-modern:hover {
  border-color: rgba(254, 216, 4, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 32px rgba(254, 216, 4, 0.15);
}

.feature-icon-modern {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.feature-text-modern h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.feature-text-modern p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.btn-epic {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border: none;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(254, 216, 4, 0.4);
  margin-top: 32px;
  width: 100%;
  justify-content: center;
}

.btn-epic:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 216, 4, 0.6);
}

.btn-icon-epic {
  font-size: 24px;
}

.btn-content-epic {
  text-align: left;
}

.btn-main-text {
  display: block;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-sub-text {
  display: block;
  font-size: 12px;
  opacity: 0.8;
  font-weight: 600;
}

@media (min-width: 900px) {
  .section-parallax {
    padding: 100px 0;
  }
  
  .parallax-side {
    position: relative;
  }
  
  .parallax-left {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 45%;
    height: 100%;
  }
  
  .parallax-right {
    margin-left: 50%;
    padding: 0 40px 0 80px;
  }
  
  .btn-epic {
    width: auto;
  }
}

/* ========================================
   LOTTERY BALL CAROUSEL - BILLIARD STYLE
   ======================================== */
.section-lottery-balls {
  position: relative;
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 100, 50, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 80, 40, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0d1f0d 50%, #0a0a0a 100%);
  overflow: hidden;
}

.section-lottery-balls::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 150, 60, 0.03) 2px,
      rgba(0, 150, 60, 0.03) 4px
    );
  pointer-events: none;
}

.lottery-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
  text-align: left;
}

.lottery-title {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  text-shadow: 
    0 0 30px rgba(254, 216, 4, 0.4),
    2px 2px 15px rgba(0, 0, 0, 0.9);
}

.lottery-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Rolling Track Container */
.lottery-track-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 60px;
  height: 200px;
  perspective: 1000px;
}

.track-rail {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 120px;
  background: 
    linear-gradient(180deg, 
      rgba(20, 60, 30, 0.3) 0%, 
      rgba(10, 40, 20, 0.5) 50%, 
      rgba(5, 20, 10, 0.6) 100%
    );
  border-radius: 60px;
  box-shadow: 
    inset 0 8px 20px rgba(0, 0, 0, 0.6),
    inset 0 -8px 20px rgba(0, 0, 0, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.8);
  border: 2px solid rgba(0, 100, 50, 0.3);
}

.track-rail::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50px;
  background: 
    linear-gradient(90deg,
      transparent 0%,
      rgba(0, 150, 60, 0.1) 50%,
      transparent 100%
    );
}

/* Lottery Balls Track */
.lottery-balls-track {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* Billiard Ball - 3D Realistic */
.lottery-ball {
  position: relative;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9);
  animation: floatBall 3s ease-in-out infinite;
}

.lottery-ball:nth-child(1) { animation-delay: 0s; }
.lottery-ball:nth-child(2) { animation-delay: 0.5s; }
.lottery-ball:nth-child(3) { animation-delay: 1s; }
.lottery-ball:nth-child(4) { animation-delay: 1.5s; }

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

.lottery-ball:hover {
  transform: scale(1.2) translateY(-8px);
  filter: brightness(1.1) drop-shadow(0 15px 40px rgba(254, 216, 4, 0.4));
  z-index: 10;
  animation: none;
}

.ball-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: 
    radial-gradient(circle at 35% 35%, 
      rgba(255, 240, 150, 0.8) 0%,
      rgba(254, 216, 4, 1) 30%,
      rgba(230, 180, 0, 1) 70%,
      rgba(180, 140, 0, 1) 100%
    );
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.7),
    inset -3px -3px 10px rgba(0, 0, 0, 0.4),
    inset 3px 3px 10px rgba(255, 240, 200, 0.2),
    0 0 0 2px rgba(254, 216, 4, 0.3);
  transform-style: preserve-3d;
}

.ball-shine {
  position: absolute;
  top: 20%;
  left: 25%;
  width: 25%;
  height: 25%;
  border-radius: 50%;
  background: 
    radial-gradient(circle at 40% 40%, 
      rgba(255, 250, 230, 0.4) 0%,
      rgba(255, 240, 200, 0.2) 50%,
      transparent 100%
    );
  filter: blur(2px);
}

.ball-number {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  font-family: 'Bebas Neue', cursive;
  color: #000;
  text-shadow: 
    0 1px 2px rgba(255, 255, 255, 0.3),
    0 0 8px rgba(255, 255, 255, 0.2);
  z-index: 2;
}

/* Center Spotlight Effect */
.center-spotlight {
  display: none;
}

/* Market Details Display */
.lottery-market-details {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  min-height: 180px;
}

.market-detail-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  background: 
    linear-gradient(135deg, 
      rgba(26, 26, 26, 0.95) 0%, 
      rgba(15, 15, 15, 0.95) 100%
    );
  border: 2px solid rgba(254, 216, 4, 0.2);
  border-radius: 20px;
  padding: 32px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(254, 216, 4, 0.1);
}

.market-detail-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
}

.market-detail-flag {
  font-size: 64px;
  line-height: 1;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}

.market-detail-info {
  flex: 1;
  text-align: left;
}

.market-detail-name {
  font-size: 32px;
  font-weight: 900;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  margin-bottom: 8px;
  color: var(--gold);
  text-shadow: 
    0 0 20px rgba(254, 216, 4, 0.4),
    2px 2px 8px rgba(0, 0, 0, 0.8);
}

.market-detail-status {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  font-weight: 600;
}

.market-detail-status.live {
  color: #4ade80;
  text-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.market-detail-prize {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.lottery-cta-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive - Desktop */
@media (min-width: 900px) {
  .section-lottery-balls {
    padding: 120px 40px;
  }
  
  .lottery-container-wrapper {
    margin-bottom: 80px;
  }
  
  .lottery-track-container {
    height: 250px;
    margin-bottom: 80px;
  }
  
  .track-rail {
    height: 150px;
  }
  
  .lottery-ball {
    width: 90px;
    height: 90px;
  }
  
  .ball-number {
    font-size: 42px;
  }
  
  .center-spotlight {
    display: none;
  }
  
  .market-detail-card {
    padding: 40px 50px;
  }
  
  .market-detail-flag {
    font-size: 80px;
  }
  
  .market-detail-name {
    font-size: 42px;
  }
}

/* ========================================
   GAME SHOW FORTUNE WHEEL SECTION
   ======================================== */
.section-gameshow-wheel {
  position: relative;
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 50% 50%, rgba(139, 0, 139, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0d0a12 50%, #0a0a0a 100%);
  overflow: hidden;
  min-height: 900px;
}

.gameshow-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.gameshow-title {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  text-shadow: 
    0 0 30px rgba(254, 216, 4, 0.4),
    2px 2px 15px rgba(0, 0, 0, 0.9);
}

.gameshow-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

/* Fortune Wheel Background */
.fortune-wheel-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: 
    conic-gradient(
      from 0deg,
      rgba(254, 216, 4, 0.15) 0deg,
      rgba(255, 0, 128, 0.15) 60deg,
      rgba(0, 191, 255, 0.15) 120deg,
      rgba(139, 0, 255, 0.15) 180deg,
      rgba(255, 69, 0, 0.15) 240deg,
      rgba(0, 255, 127, 0.15) 300deg,
      rgba(254, 216, 4, 0.15) 360deg
    );
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: spinWheel 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes spinWheel {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Game Show Grid Container */
.gameshow-grid-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  height: 600px;
  z-index: 2;
}

/* Center Video Hub */
.gameshow-video-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 240px;
  z-index: 5;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 0 0 4px rgba(254, 216, 4, 0.3),
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(254, 216, 4, 0.2);
}

.gameshow-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

.live-badge {
  align-self: flex-start;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
  }
}

.player-count {
  align-self: flex-end;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.player-icon {
  font-size: 16px;
}

.player-number {
  color: var(--gold);
  font-weight: 700;
}

.player-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

/* Game Cards Arc Formation */
.gameshow-cards-arc {
  position: relative;
  width: 100%;
  height: 100%;
}

.gameshow-card {
  position: absolute;
  width: 200px;
  padding: 24px 20px;
  background: 
    linear-gradient(135deg, 
      rgba(26, 26, 26, 0.95) 0%, 
      rgba(15, 15, 15, 0.95) 100%
    );
  border: 2px solid rgba(254, 216, 4, 0.3);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.6),
    0 0 0 0 rgba(254, 216, 4, 0);
  overflow: hidden;
}

.gameshow-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 0%,
      rgba(254, 216, 4, 0.1) 0%,
      transparent 70%
    );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gameshow-card:hover {
  transform: scale(1.1);
  border-color: var(--gold);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 0 4px rgba(254, 216, 4, 0.2),
    0 0 40px rgba(254, 216, 4, 0.3);
  z-index: 10;
}

.gameshow-card:hover::before {
  opacity: 1;
}

.card-glow {
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--gold), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  filter: blur(10px);
}

.gameshow-card:hover .card-glow {
  opacity: 0.3;
}

/* Card Positions - 2x2 Grid Corners */
.card-position-1 {
  left: 0;
  top: 0;
  transform: translate(0, 0);
}

.card-position-2 {
  right: 0;
  top: 0;
  transform: translate(0, 0);
}

.card-position-3 {
  left: 0;
  bottom: 0;
  transform: translate(0, 0);
}

.card-position-4 {
  right: 0;
  bottom: 0;
  transform: translate(0, 0);
}

.gameshow-card:hover {
  transform: scale(1.15) !important;
}

.card-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(254, 216, 4, 0.3));
}

.card-game-name {
  font-size: 20px;
  font-weight: 900;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
  color: white;
  line-height: 1.2;
}

.card-multiplier {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.card-multiplier .accent {
  font-size: 20px;
  font-weight: 900;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-tag {
  font-size: 11px;
  background: rgba(254, 216, 4, 0.1);
  border: 1px solid rgba(254, 216, 4, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.gameshow-cta-wrapper {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Responsive - Desktop */
@media (min-width: 900px) {
  .section-gameshow-wheel {
    padding: 120px 40px;
    min-height: 1000px;
  }
  
  .gameshow-container-wrapper {
    margin-bottom: 80px;
  }
  
  .fortune-wheel-bg {
    width: 800px;
    height: 800px;
  }
  
  .gameshow-grid-container {
    height: 700px;
  }
  
  .gameshow-video-hub {
    width: 400px;
    height: 300px;
  }
  
  .gameshow-card {
    width: 220px;
    padding: 28px 24px;
  }
  
  .card-position-1 {
    left: 2%;
    top: 5%;
  }
  
  .card-position-2 {
    right: 2%;
    top: 5%;
  }
  
  .card-position-3 {
    left: 2%;
    bottom: 2%;
  }
  
  .card-position-4 {
    right: 2%;
    bottom: 2%;
  }
  
  .card-icon {
    font-size: 56px;
  }
  
  .card-game-name {
    font-size: 22px;
  }
}

/* ========================================
   POKER CARDS PHILOSOPHY SECTION
   ======================================== */
.section-poker-cards {
  position: relative;
  padding: 80px 20px;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 100, 0, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0a0a 0%, #0d1a0d 50%, #0a0a0a 100%);
  overflow: hidden;
}

.poker-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 60px;
  text-align: left;
}

.poker-title {
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 900;
  margin-bottom: 16px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  text-shadow: 
    0 0 30px rgba(254, 216, 4, 0.4),
    2px 2px 15px rgba(0, 0, 0, 0.9);
}

.poker-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
}

/* Poker Cards Container - Table Top View */
.poker-cards-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 700px;
  background: 
    radial-gradient(ellipse at center, #1a4d2e 0%, #0d2818 100%);
  border-radius: 200px;
  padding: 60px 40px;
  box-shadow: 
    inset 0 0 100px rgba(0, 0, 0, 0.6),
    0 20px 60px rgba(0, 0, 0, 0.8);
  border: 12px solid #8b4513;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

/* Poker Table Felt Pattern */
.poker-cards-container::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 2px dashed rgba(254, 216, 4, 0.15);
  border-radius: 180px;
  pointer-events: none;
}

.poker-card-wrapper {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  width: 220px;
  height: 308px;
}

.poker-card-wrapper.flipped .poker-card {
  transform: rotateY(180deg);
}

/* Keep back panel rotated 180deg; parent flip brings it to front (180 + 180 = 360) */
/* Removed transform override to prevent hiding back content */

/* Organic Scattered Positions on Table - Cleaner Layout */
.poker-card-wrapper:nth-child(1) {
  left: 10%;
  top: 15%;
  transform: rotate(-8deg);
  z-index: 2;
}

.poker-card-wrapper:nth-child(2) {
  right: 10%;
  top: 18%;
  transform: rotate(10deg);
  z-index: 1;
}

.poker-card-wrapper:nth-child(3) {
  left: 12%;
  bottom: 12%;
  transform: rotate(6deg);
  z-index: 3;
}

.poker-card-wrapper:nth-child(4) {
  right: 12%;
  bottom: 10%;
  transform: rotate(-7deg);
  z-index: 4;
}

.poker-card-wrapper:hover {
  z-index: 10;
  transform: translateY(-30px) scale(1.08) rotate(0deg) !important;
}

/* Realistic Poker Card */
.poker-card {
  position: relative;
  width: 220px;
  height: 308px;
  background: transparent; /* Make base transparent so back face is visible */
  border-radius: 12px;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Front face background layer (white) */
.poker-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #ffffff 0%, #f5f5f5 100%);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backface-visibility: hidden; /* Hide when flipped to back */
  transform: rotateY(0deg);
  z-index: 0;
}

/* Card Philosophy Back Panel */
.card-philosophy {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  border-radius: 12px;
  padding: 40px 20px; /* tighter to keep text inside */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  transition: all 0.5s ease;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.8),
    0 0 0 3px rgba(254, 216, 4, 0.8),
    inset 0 0 60px rgba(254, 216, 4, 0.15);
  z-index: 1;
  overflow: hidden;
}

/* Shine effect on back panel only */
.card-philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(254, 216, 4, 0.1) 45%,
    rgba(254, 216, 4, 0.2) 50%,
    rgba(254, 216, 4, 0.1) 55%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.poker-card-wrapper.flipped .card-philosophy::before {
  transform: translateX(100%);
}

/* Flipped State */
.poker-card-wrapper.flipped .poker-card {
  transform: rotateY(180deg);
}

.poker-card-wrapper:hover {
  z-index: 10;
  transform: translateY(-20px) scale(1.1) rotate(0deg) !important;
}

.poker-card:hover {
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(254, 216, 4, 0.5),
    0 0 0 3px var(--gold);
}

/* Card Corners */
.card-corner {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: 'Georgia', serif;
  font-weight: bold;
  z-index: 2;
  backface-visibility: hidden;
  pointer-events: none;
}

.card-corner.top-left {
  top: 12px;
  left: 12px;
}

.card-corner.bottom-right {
  bottom: 12px;
  right: 12px;
  transform: rotate(180deg);
}

.rank {
  font-size: 40px;
  margin-bottom: 2px;
  font-weight: 900;
  color: #000000;
}

.suit {
  font-size: 32px;
  font-weight: bold;
}

/* Suit Colors */
.spades {
  color: #000000;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hearts {
  color: #dc0a0a;
  text-shadow: 0 1px 2px rgba(220, 10, 10, 0.3);
}

.clubs {
  color: #000000;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.diamonds {
  color: #dc0a0a;
  text-shadow: 0 1px 2px rgba(220, 10, 10, 0.3);
}

/* Center Suit */
.card-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  backface-visibility: hidden;
  pointer-events: none;
}

.center-suit {
  font-size: 120px;
  opacity: 0.12;
  font-weight: bold;
  user-select: none;
  pointer-events: none;
}

/* Card Shine Effect - REMOVED FROM FRONT */
.card-shine {
  display: none;
}

/* Card Philosophy Text */
.philosophy-title {
  font-size: 30px;
  font-weight: 900;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--gold);
  text-shadow: 
    0 0 30px rgba(254, 216, 4, 0.6),
    2px 2px 10px rgba(0, 0, 0, 0.9);
  position: relative;
  z-index: 10;
}

.philosophy-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 6; /* standard */
  -webkit-line-clamp: 6; /* webkit fallback */
  word-break: break-word;
  hyphens: auto;
  padding: 0 6px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.poker-cta-wrapper {
  max-width: 600px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Responsive - Mobile */
@media (max-width: 599px) {
  .poker-cards-container {
    height: 500px;
    border-radius: 100px;
    border-width: 8px;
    padding: 40px 20px;
  }
  
  .poker-cards-container::before {
    inset: 25px;
  }
  
  .poker-cards-container::after {
    width: 40px;
    height: 40px;
    top: 8%;
    right: 6%;
  }
  
  .poker-card-wrapper {
    width: 140px;
    height: 196px;
  }
  
  .poker-card-wrapper:nth-child(1) {
    left: 8%;
    top: 15%;
    transform: rotate(-12deg);
  }
  
  .poker-card-wrapper:nth-child(2) {
    right: 10%;
    top: 18%;
    transform: rotate(15deg);
  }
  
  .poker-card-wrapper:nth-child(3) {
    left: 12%;
    bottom: 12%;
    transform: rotate(5deg);
  }
  
  .poker-card-wrapper:nth-child(4) {
    right: 8%;
    bottom: 15%;
    transform: rotate(-8deg);
  }
  
  .poker-card {
    width: 140px;
    height: 196px;
  }
  
  .rank {
    font-size: 32px;
  }
  
  .suit {
    font-size: 26px;
  }
  
  .center-suit {
    font-size: 80px;
  }
  
  .philosophy-title {
    font-size: 20px;
  }
  
  .philosophy-desc {
    font-size: 12px;
    line-clamp: 6;
    -webkit-line-clamp: 6;
  }
}

/* Responsive - Tablet */
@media (min-width: 600px) and (max-width: 899px) {
  .poker-cards-container {
    height: 550px;
    border-radius: 150px;
  }
  
  .poker-card-wrapper {
    width: 170px;
    height: 238px;
  }
  
  .poker-card-wrapper:nth-child(1) {
    left: 12%;
    top: 18%;
    transform: rotate(-15deg);
  }
  
  .poker-card-wrapper:nth-child(2) {
    right: 14%;
    top: 16%;
    transform: rotate(18deg);
  }
  
  .poker-card-wrapper:nth-child(3) {
    left: 18%;
    bottom: 16%;
    transform: rotate(6deg);
  }
  
  .poker-card-wrapper:nth-child(4) {
    right: 16%;
    bottom: 18%;
    transform: rotate(-10deg);
  }
  
  .poker-card {
    width: 170px;
    height: 238px;
  }
  
  .rank {
    font-size: 36px;
  }
  
  .suit {
    font-size: 28px;
  }
  
  .center-suit {
    font-size: 100px;
  }
  
  .philosophy-title {
    font-size: 24px;
  }
  .philosophy-desc { line-clamp: 7; -webkit-line-clamp: 7; }
}

/* Responsive - Desktop */
@media (min-width: 900px) {
  .section-poker-cards {
    padding: 120px 40px;
  }
  
  .poker-container-wrapper {
    margin-bottom: 80px;
  }
  
  .poker-cards-container {
    height: 700px;
  }
  
  .poker-card-wrapper {
    width: 220px;
    height: 308px;
  }
  
  .poker-card {
    width: 220px;
    height: 308px;
  }
  
  .rank {
    font-size: 42px;
  }
  
  .suit {
    font-size: 34px;
  }
  .philosophy-desc { line-clamp: 8; -webkit-line-clamp: 8; }
  
  .center-suit {
    font-size: 130px;
  }
  
  .philosophy-title {
    font-size: 30px;
  }
  
  .philosophy-desc {
    font-size: 14px;
  }
}

/* ========================================
   SPLIT SCREENS
   ======================================== */
.section-split {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
  overflow: hidden;
}

.section-split.reverse {
  background: linear-gradient(180deg, #0f0f0f 0%, #0a0a0a 100%);
}

.split-visual {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 20px 40px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.95) 100%);
}

.split-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.split-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.split-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 1px;
}

.split-stat-label {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.split-content {
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.split-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.split-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.market-list-modern {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.market-modern {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(254, 216, 4, 0.1);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
}

.market-modern:hover {
  border-color: rgba(254, 216, 4, 0.3);
  transform: translateX(8px);
}

.market-flag {
  font-size: 32px;
  flex-shrink: 0;
}

.market-info-modern {
  flex: 1;
}

.market-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.market-status {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.market-status.live {
  color: var(--gold);
}

.btn-outline-epic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline-epic:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 216, 4, 0.4);
}

.btn-outline-epic.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-color: var(--gold);
  color: var(--charcoal);
}

.casino-grid-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 32px;
}

.casino-mini-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(254, 216, 4, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.casino-mini-card:hover {
  border-color: rgba(254, 216, 4, 0.3);
  transform: translateY(-4px);
}

.casino-mini-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.casino-mini-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.casino-mini-status {
  font-size: 12px;
  color: var(--gray);
  font-weight: 600;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 216, 4, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.poker-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.poker-type-item {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
  border: 1px solid rgba(254, 216, 4, 0.1);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.poker-type-item:hover {
  border-color: rgba(254, 216, 4, 0.3);
  transform: translateY(-4px);
}

.poker-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.poker-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

@media (min-width: 600px) {
  .casino-grid-mini {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .section-split {
    padding: 120px 40px;
  }
  
  .section-split .split-visual {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70%;
    margin: 0;
  }
  
  .section-split.reverse .split-visual {
    left: auto;
    right: 0;
  }
  
  .section-split .split-content {
    margin-left: 50%;
    padding: 0 40px 0 80px;
  }
  
  .section-split.reverse .split-content {
    margin-left: 0;
    margin-right: 50%;
    padding: 0 80px 0 40px;
  }
}

/* Old split-screen (deprecated but keeping for compatibility) */
.split-screen {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.split-content {
  flex: 1;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--charcoal-light) 0%, var(--charcoal-medium) 100%);
  border: 2px solid rgba(254, 216, 4, 0.1);
  border-radius: 30px;
  margin: 10px;
  box-shadow: 
    0 15px 50px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(254, 216, 4, 0.1);
}

.split-title {
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  font-family: 'Bebas Neue', cursive;
  letter-spacing: 2px;
  text-shadow: 
    0 0 20px rgba(254, 216, 4, 0.3),
    2px 2px 10px rgba(0, 0, 0, 0.8);
}

.split-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(254, 216, 4, 0.1);
  font-weight: 500;
}

.split-list li::before {
  content: '⚡';
  margin-right: 12px;
  color: var(--gold);
  filter: drop-shadow(0 0 10px var(--gold-glow));
}

/* ========================================
   CTA EPIC SECTION
   ======================================== */
.cta-epic {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background: #0a0a0a;
}

.cta-epic-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.cta-epic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.95) 100%);
}

.cta-epic-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-epic-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 10vw, 72px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 32px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-epic-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.cta-feat {
  background: rgba(254, 216, 4, 0.1);
  border: 1px solid rgba(254, 216, 4, 0.2);
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border: none;
  padding: 24px 48px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(254, 216, 4, 0.5);
  margin-bottom: 24px;
}

.btn-mega:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(254, 216, 4, 0.7);
}

.btn-mega-icon {
  font-size: 28px;
}

.btn-mega-text {
  letter-spacing: 1px;
}

.cta-secure {
  font-size: 13px;
  color: var(--gray);
  font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-minimal {
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  padding: 60px 20px 30px;
  border-top: 1px solid rgba(254, 216, 4, 0.1);
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-section {
  margin-bottom: 32px;
}

.footer-logo-section p {
  color: var(--gray);
  font-size: 14px;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: var(--gray);
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
}

.footer-badges img {
  height: 40px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-badges img:hover {
  opacity: 1;
}

/* Old footer (deprecated but keeping for compatibility) */
.footer {
  background: linear-gradient(180deg, var(--charcoal-light) 0%, var(--charcoal) 100%);
  padding: 70px 20px 40px;
  margin-top: 100px;
  border-top: 3px solid rgba(254, 216, 4, 0.3);
  box-shadow: 
    0 -4px 50px rgba(0, 0, 0, 0.6),
    0 -1px 0 rgba(254, 216, 4, 0.2) inset;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 250px;
  background: radial-gradient(circle at center top, rgba(254, 216, 4, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
  filter: none;
  opacity: 0.95;
}

.footer-badges {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  filter: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-badges img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLETS
   ======================================== */
@media (min-width: 600px) {
  .sticky-phone {
    display: block;
  }
  
  .hero-phones-stack {
    gap: 30px;
  }
  
  .phone-item {
    width: 220px;
  }
  
  .games-broken-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .split-screen {
    flex-direction: row;
  }
  
  .split-content {
    margin: 20px;
  }
  
  /* Show navigation on tablets */
  .header-nav {
    display: flex;
  }
  
  .brand-wordmark {
    display: block;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 100px 40px 80px;
  }
  
  .hero-content {
    max-width: 560px;
  }
  
  .hero-title {
    font-size: clamp(48px, 5vw, 72px);
  }
  
  .phones-showcase {
    max-width: 700px;
    height: 600px;
  }
  
  .phone-showcase {
    width: 280px;
  }
  
  .phone-back-left {
    left: 20px;
    top: 80px;
  }
  
  .phone-back-right {
    right: 20px;
    top: 80px;
  }
  
  .games-broken-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
  }
  
  .game-item:nth-child(1) {
    grid-column: span 8;
    grid-row: span 2;
  }
  
  .game-item:nth-child(2) {
    grid-column: span 4;
  }
  
  .game-item:nth-child(3) {
    grid-column: span 4;
  }
  
  .game-item:nth-child(4) {
    grid-column: span 7;
  }
  
  .game-item:nth-child(5) {
    grid-column: span 5;
  }
  
  .game-item:nth-child(6) {
    grid-column: span 4;
  }
}

@media (min-width: 1200px) {
  .hero-mega-title {
    font-size: 120px;
  }
  
  .phone-item {
    width: 300px;
  }
  
  section {
    padding: 100px 40px;
  }
}

/* ========================================
   SLOT CAROUSEL - PREMIUM DESIGN
   ======================================== */
.section-carousel {
  position: relative;
  padding: 60px 20px;
  overflow: visible;
  background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
}

.carousel-container-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 40px;
}

.carousel-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(36px, 8vw, 56px);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.carousel-subtitle {
  font-size: 14px;
  color: var(--gray);
  font-weight: 400;
}

.carousel-nav-desktop {
  display: none;
  gap: 12px;
}

.carousel-nav-btn {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(254, 216, 4, 0.2);
  background: rgba(254, 216, 4, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.carousel-nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}

.carousel-nav-btn:hover svg {
  stroke: var(--charcoal);
}

.carousel-nav-btn svg {
  stroke: var(--gold);
}

.carousel-container {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 0 20px 20px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
  touch-action: pan-x pan-y pinch-zoom;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Carousel Card */
.carousel-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(254, 216, 4, 0.15);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  display: flex;
  flex-direction: column;
}

.carousel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(254, 216, 4, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

/* Disable hover effects on touch devices to prevent glitches */
@media (hover: hover) and (pointer: fine) {
  .carousel-card:hover::before {
    opacity: 1;
  }

  .carousel-card:hover {
    transform: translateY(-8px);
    border-color: rgba(254, 216, 4, 0.4);
    box-shadow: 
      0 20px 60px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(254, 216, 4, 0.2);
  }
  
  .carousel-card:hover .card-image img {
    transform: scale(1.1);
  }
}

.carousel-card.featured {
  border: 2px solid rgba(254, 216, 4, 0.3);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(254, 216, 4, 0.15);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(254, 216, 4, 0.4);
}

.card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
  will-change: auto;
}

.card-content {
  padding: 20px;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  color: var(--white);
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card-provider {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
}

.card-rtp {
  font-size: 12px;
  color: var(--gold);
  font-weight: 700;
  background: rgba(254, 216, 4, 0.1);
  padding: 4px 10px;
  border-radius: 12px;
}

.card-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
}

.stat-icon {
  font-size: 14px;
}

.stat-text {
  font-weight: 500;
}

.btn-card-play {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border: none;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(254, 216, 4, 0.3);
}

.btn-card-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 216, 4, 0.5);
}

.btn-card-play svg {
  fill: var(--charcoal);
  transition: transform 0.3s ease;
}

.btn-card-play:hover svg {
  transform: translateX(3px);
}

/* Carousel Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 30px 20px 20px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(254, 216, 4, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--gold);
}

/* Carousel CTA */
.carousel-cta {
  text-align: center;
  padding: 20px 20px 40px;
  position: relative;
}

.carousel-cta::after {
  content: '↓';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: rgba(254, 216, 4, 0.3);
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 0.6;
  }
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-view-all:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254, 216, 4, 0.4);
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (min-width: 600px) {
  .carousel-card {
    flex: 0 0 300px;
  }
  
  .carousel-track {
    scroll-behavior: smooth;
  }
}

@media (min-width: 900px) {
  .carousel-nav-desktop {
    display: flex;
  }
  
  .carousel-container {
    padding: 0 60px 20px;
  }
  
  .carousel-card {
    flex: 0 0 320px;
  }
}

@media (min-width: 1200px) {
  .carousel-track {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
    scroll-snap-type: none;
  }
  
  .carousel-card {
    flex: 0 0 calc(16.666% - 17px);
    max-width: 280px;
  }
  
  .carousel-indicators {
    display: none;
  }
}