:root {
  /* Base colors */
  --navy-deep: #0a1628;
  --purple-deep: #1a0a2e;
  --purple-mid: #2d1b4e;
  
  /* Accent colors */
  --gold: #d4af37;
  --gold-light: #e8c547;
  --orange: #ff6b35;
  --orange-light: #ff8c5a;
  
  /* Neutral */
  --white: #ffffff;
  --white-90: rgba(255, 255, 255, 0.9);
  --white-70: rgba(255, 255, 255, 0.7);
  --white-60: rgba(255, 255, 255, 0.6);
  --white-50: rgba(255, 255, 255, 0.5);
  --white-20: rgba(255, 255, 255, 0.2);
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  
  /* Gradients */
  --gradient-main: linear-gradient(135deg, var(--navy-deep) 0%, var(--purple-deep) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  --gradient-orange: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  
  /* Glass effect */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  /* Typography — Hebrew max weight is 600 */
  --font-primary: 'Heebo', 'Rubik', sans-serif;
  --font-display: 'Rubik', 'Heebo', sans-serif;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.3);
  
  /* Focus ring — made more prominent */
  --focus-ring: 0 0 0 4px rgba(212, 175, 55, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--gradient-main);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Focus styles for accessibility — more prominent */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ========================================
   TYPOGRAPHY — Hebrew capped at weight 600
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-weight: 500; }

p {
  color: var(--white-70);
  font-weight: 400;
  max-width: 65ch;
}

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

ul {
  list-style: none;
}

/* ========================================
   LAYOUT
======================================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ========================================
   HEADER / NAV
======================================== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(10, 22, 40, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.logo {
  display: flex;
  align-items: baseline;
  gap: 0.125rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
}

.logo-7 {
  color: var(--gold);
  font-size: 2rem;
}

.logo-xl {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
}

.nav-links a {
  color: var(--white-70);
  font-size: 0.9375rem;
  font-weight: 400;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  inset-inline: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gradient-orange);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

.btn-icon-arrow {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-glow {
  position: relative;
  overflow: visible;
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: var(--gradient-orange);
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
  transition: var(--transition);
}

.btn-glow:hover::before,
.btn-glow:focus-visible::before {
  opacity: 0.7;
  filter: blur(20px);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--white-10);
  border-color: var(--gold);
}

/* RTL-aware arrow animation — single arrow, transform handles direction */
.btn-icon-arrow {
  transform: scaleX(-1); /* flip for RTL by default */
}

[dir="ltr"] .btn-icon-arrow {
  transform: scaleX(1);
}

.btn-secondary:hover .btn-icon-arrow,
.btn-secondary:focus-visible .btn-icon-arrow {
  transform: scaleX(-1) translateX(-4px);
}

[dir="ltr"] .btn-secondary:hover .btn-icon-arrow,
[dir="ltr"] .btn-secondary:focus-visible .btn-icon-arrow {
  transform: scaleX(1) translateX(4px);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.glow-1 {
  width: 600px;
  height: 600px;
  background: var(--purple-mid);
  top: -200px;
  inset-inline-end: -100px;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.2);
  bottom: -100px;
  inset-inline-start: -100px;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.15);
  top: 50%;
  inset-inline-start: 30%;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  color: var(--white-70);
  margin-bottom: var(--space-md);
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-7xl {
  display: block;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 600;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-tagline {
  display: block;
  font-weight: 500;
  color: var(--white);
  margin-top: var(--space-xs);
}

.hero-desc {
  font-size: 1.125rem;
  margin-top: var(--space-md);
  max-width: 44ch;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--white-70); /* bumped from 60 to 70 for AA contrast */
}

/* Phone Mockup */
.hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.5),
    inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-notch {
  position: absolute;
  top: 12px;
  inset-inline-start: 50%;
  transform: translateX(50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

[dir="ltr"] .phone-notch {
  transform: translateX(-50%);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  border-radius: 32px;
  overflow: hidden;
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
}

.screen-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
}

.screen-balance {
  background: var(--glass-bg);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--glass-border);
}

.screen-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.screen-match {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
}

.match-teams {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
}

.match-score {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
}

.match-odds {
  display: flex;
  gap: 0.5rem;
}

.odd {
  flex: 1;
  text-align: center;
  padding: 0.5rem;
  background: var(--white-05);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.odd.active {
  background: var(--gradient-orange);
}

.screen-games {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: auto;
}

.game-icon {
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-icon svg {
  width: 32px;
  height: 32px;
}

.phone-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

/* ========================================
   SECTIONS COMMON
======================================== */
section {
  padding: var(--space-3xl) 0;
}

.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered p {
  max-width: 500px;
  margin-inline: auto;
  margin-top: var(--space-sm);
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

/* ========================================
   FEATURES SECTION
======================================== */
.features {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 10, 46, 0.3) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  position: relative;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card.featured {
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}

.feature-badge {
  position: absolute;
  top: -10px;
  inset-inline-end: var(--space-md);
  background: var(--gradient-gold);
  color: var(--navy-deep);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.feature-card p {
  font-size: 0.9375rem;
}

/* ========================================
   SPORTS SECTION
======================================== */
.sports {
  position: relative;
}

.sports-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}

.sports-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.sport-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  text-align: inherit;
  font: inherit;
  color: inherit;
}

.sport-item:hover,
.sport-item:focus-visible,
.sport-item.active {
  background: var(--white-10);
  border-color: var(--gold);
}

.sport-item.active {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.sport-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-deep);
  flex-shrink: 0;
}

.sport-icon svg {
  width: 28px;
  height: 28px;
}

.sport-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sport-title {
  font-weight: 500;
  font-size: 1rem;
}

.sport-subtitle {
  font-size: 0.875rem;
  color: var(--white-70); /* bumped from 60 to 70 for AA contrast */
}

.sport-arrow {
  color: var(--white-70);
  transition: var(--transition);
}

.sport-arrow svg {
  width: 20px;
  height: 20px;
}

.sport-item:hover .sport-arrow,
.sport-item:focus-visible .sport-arrow,
.sport-item.active .sport-arrow {
  color: var(--gold);
  transform: translateX(-4px);
}

[dir="ltr"] .sport-item:hover .sport-arrow,
[dir="ltr"] .sport-item:focus-visible .sport-arrow,
[dir="ltr"] .sport-item.active .sport-arrow {
  transform: translateX(4px);
}

/* Live Match Card */
.sports-display {
  position: sticky;
  top: 120px;
}

.live-match-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.match-time {
  color: var(--white-70);
  font-size: 1.25rem;
  font-weight: 500;
}

.match-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  flex: 1;
}

.team-badge {
  width: 64px;
  height: 64px;
}

.team-badge svg {
  width: 100%;
  height: 100%;
}

.team-name {
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
}

.score-box {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.score {
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-display);
}

.score-divider {
  font-size: 2rem;
  color: var(--white-70);
}

.match-odds-row {
  display: flex;
  gap: var(--space-sm);
}

.odd-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  cursor: pointer;
  transition: var(--transition);
  font: inherit;
  color: inherit;
}

.odd-btn:hover,
.odd-btn:focus-visible {
  border-color: var(--gold);
  background: var(--white-10);
}

.odd-btn.highlighted {
  background: var(--gradient-orange);
  border-color: var(--orange);
}

.odd-label {
  font-size: 0.75rem;
  color: var(--white-70);
  font-weight: 500;
}

.odd-btn.highlighted .odd-label {
  color: var(--white-70);
}

.odd-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* ========================================
   CASINO SECTION
======================================== */
.casino {
  background: linear-gradient(180deg, rgba(26, 10, 46, 0.3) 0%, transparent 50%, rgba(26, 10, 46, 0.3) 100%);
}

.casino-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 900px) {
  .casino-games {
    grid-template-columns: repeat(4, 1fr);
  }
}

.game-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.game-card:hover,
.game-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border-color: var(--gold);
}

.game-visual {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, var(--purple-mid) 0%, var(--purple-deep) 100%);
  position: relative;
  overflow: hidden;
}

.game-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.game-visual svg {
  transition: var(--transition);
}

.game-card:hover .game-visual svg,
.game-card:focus-within .game-visual svg {
  transform: scale(1.1);
}

/* Roulette wheel animation — controlled by class, respects reduced motion */
.roulette-wheel {
  transform-origin: center;
}

.game-card:hover .roulette-wheel,
.game-card:focus-within .roulette-wheel {
  animation: spin 3s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.game-info {
  padding: var(--space-md);
}

.game-info h3 {
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.game-info p {
  font-size: 0.875rem;
  margin-bottom: var(--space-sm);
}

.game-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* Single arrow, direction handled by transform */
.game-link::after {
  content: '←';
  transition: var(--transition);
  display: inline-block;
}

[dir="ltr"] .game-link::after {
  content: '→';
}

.game-link:hover::after,
.game-link:focus-visible::after {
  transform: translateX(-4px);
}

[dir="ltr"] .game-link:hover::after,
[dir="ltr"] .game-link:focus-visible::after {
  transform: translateX(4px);
}

/* ========================================
   BONUSES SECTION
======================================== */
.bonuses {
  position: relative;
  overflow: hidden;
}

.bonuses::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.bonuses-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.bonuses-content {
  position: relative;
}

.bonuses-content h2 {
  margin-bottom: var(--space-md);
}

.bonuses-content h2 .highlight {
  color: var(--orange);
}

.bonuses-content > p {
  font-size: 1.125rem;
  max-width: 44ch;
}

.bonus-features {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.bonus-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--white-90);
}

.bonus-features svg {
  width: 20px;
  height: 20px;
  color: #22c55e;
  flex-shrink: 0;
}

/* Bonus Cards Visual — improved positioning */
.bonuses-visual {
  display: flex;
  justify-content: center;
  padding: var(--space-lg);
}

.bonus-card-stack {
  position: relative;
  width: 280px;
  height: 340px;
}

.bonus-card {
  position: absolute;
  width: 220px;
  height: 130px;
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bc-1 {
  top: 0;
  inset-inline-start: 0;
  background: linear-gradient(145deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-color: rgba(255, 107, 53, 0.3);
  z-index: 3;
}

.bc-2 {
  top: 80px;
  inset-inline-start: 30px;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 100%);
  border-color: rgba(212, 175, 55, 0.3);
  z-index: 2;
}

.bc-3 {
  top: 160px;
  inset-inline-start: 60px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  z-index: 1;
}

.bonus-card:hover {
  transform: translateY(-10px) rotate(-2deg);
}

.bc-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.bc-1 .bc-amount { color: var(--orange); }
.bc-2 .bc-amount { color: var(--gold); }
.bc-3 .bc-amount { color: #a78bfa; }

.bc-label {
  font-size: 0.9375rem;
  color: var(--white-70);
}

/* ========================================
   DOWNLOAD SECTION
======================================== */
.download {
  background: linear-gradient(180deg, transparent 0%, rgba(26, 10, 46, 0.5) 100%);
}

.download-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.download-visual {
  position: relative;
}

.download-phones {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
}

.download-phone {
  position: absolute;
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 32px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.phone-1 {
  inset-inline-end: 40%;
  top: 50px;
  transform: rotate(-5deg);
  z-index: 1;
}

.phone-2 {
  inset-inline-start: 40%;
  top: 0;
  transform: rotate(5deg);
  z-index: 2;
}

.dp-screen {
  width: 100%;
  height: 100%;
  background: var(--gradient-main);
  border-radius: 26px;
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.dp-header {
  padding-top: var(--space-md);
  text-align: center;
}

.dp-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
}

.dp-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dp-menu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.75rem;
}

.dp-menu-item.active {
  background: var(--gradient-orange);
  border-color: var(--orange);
}

.dp-menu-item svg {
  width: 14px;
  height: 14px;
}

.dp-live {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 0.375rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 600;
  align-self: flex-start;
  margin-top: var(--space-md);
}

.dp-live-dot {
  width: 5px;
  height: 5px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

/* Roulette wheel in download section — animation controlled, respects reduced motion via CSS */
.dp-roulette-wheel {
  width: 100px;
  height: 100px;
  background: conic-gradient(
    #c41e3a 0deg 20deg,
    #1a1a1a 20deg 40deg,
    #c41e3a 40deg 60deg,
    #1a1a1a 60deg 80deg,
    #c41e3a 80deg 100deg,
    #1a1a1a 100deg 120deg,
    #c41e3a 120deg 140deg,
    #1a1a1a 140deg 160deg,
    #c41e3a 160deg 180deg,
    #1a1a1a 180deg 200deg,
    #c41e3a 200deg 220deg,
    #1a1a1a 220deg 240deg,
    #c41e3a 240deg 260deg,
    #1a1a1a 260deg 280deg,
    #c41e3a 280deg 300deg,
    #1a1a1a 300deg 320deg,
    #c41e3a 320deg 340deg,
    #1a1a1a 340deg 360deg
  );
  border-radius: 50%;
  border: 4px solid var(--gold);
  animation: spin 8s linear infinite;
}

.dp-bet-amount {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--glass-bg);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.download-content {
  max-width: 480px;
}

.download-content h2 {
  margin-bottom: var(--space-md);
}

.download-content > p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.download-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  transition: var(--transition);
}

.download-btn:hover,
.download-btn:focus-visible {
  background: var(--white-10);
  border-color: var(--gold);
  transform: translateX(-4px);
}

[dir="ltr"] .download-btn:hover,
[dir="ltr"] .download-btn:focus-visible {
  transform: translateX(4px);
}

.store-icon {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.btn-text {
  display: flex;
  flex-direction: column;
}

.btn-text .small {
  font-size: 0.75rem;
  color: var(--white-70);
}

.btn-text .large {
  font-size: 1rem;
  font-weight: 500;
}

.download-features {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.df-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-70);
  font-size: 0.875rem;
}

.df-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ========================================
   SUPPORT SECTION
======================================== */
.support {
  padding: var(--space-2xl) 0;
}

.support-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  backdrop-filter: blur(20px);
}

.support-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.support-channels {
  display: flex;
  gap: var(--space-sm);
}

.support-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-weight: 500;
  transition: var(--transition);
}

.support-btn svg {
  width: 20px;
  height: 20px;
}

.support-btn:hover,
.support-btn:focus-visible {
  background: var(--white-10);
}

.support-btn.whatsapp:hover,
.support-btn.whatsapp:focus-visible {
  background: rgba(37, 211, 102, 0.2);
  border-color: #25d366;
}

.support-btn.telegram:hover,
.support-btn.telegram:focus-visible {
  background: rgba(0, 136, 204, 0.2);
  border-color: #0088cc;
}

.support-btn.chat:hover,
.support-btn.chat:focus-visible {
  border-color: var(--gold);
}

/* ========================================
   FOOTER
======================================== */
.site-footer {
  background: rgba(10, 22, 40, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.125rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: 0.9375rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  color: var(--white-70);
  font-size: 0.9375rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  gap: var(--space-lg);
}

.footer-legal p {
  font-size: 0.875rem;
  color: var(--white-70);
}

.footer-legal .disclaimer {
  font-size: 0.8125rem;
  color: var(--white-60);
  margin-top: 0.25rem;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.badge-18 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid #ef4444;
  border-radius: 50%;
  color: #ef4444;
  font-weight: 600;
  font-size: 0.875rem;
}

.badge-secure {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--white-70);
}

.badge-secure svg {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

/* ========================================
   ANIMATIONS
======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1024px) {
  .sports-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .sports-display {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .hero-desc {
    margin-inline: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-phone {
    order: -1;
    margin-bottom: var(--space-lg);
  }
  
  .phone-frame {
    width: 220px;
    height: 440px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .casino-games {
    grid-template-columns: 1fr;
  }
  
  .bonuses-wrapper {
    grid-template-columns: 1fr;
  }
  
  .bonuses-visual {
    order: -1;
  }
  
  .bonus-card-stack {
    height: 260px;
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }
  
  .bonus-card {
    width: 180px;
    height: 100px;
  }
  
  .bc-1 { top: 0; inset-inline-start: 0; }
  .bc-2 { top: 60px; inset-inline-start: 25px; }
  .bc-3 { top: 120px; inset-inline-start: 50px; }
  
  .bc-amount {
    font-size: 1.5rem;
  }
  
  .bc-label {
    font-size: 0.8125rem;
  }
  
  .download-wrapper {
    grid-template-columns: 1fr;
  }
  
  .download-visual {
    order: -1;
  }
  
  .download-phones {
    height: 350px;
  }
  
  .download-phone {
    width: 150px;
    height: 300px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .support-card {
    flex-direction: column;
    text-align: center;
  }
  
  .support-channels {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-2xl: 2.5rem;
    --space-3xl: 4rem;
  }
  
  .hero-7xl {
    font-size: 3.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
  }
  
  .match-content {
    flex-direction: column;
    gap: var(--space-sm);
  }
  
  .team {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  
  .score-box {
    margin: var(--space-sm) 0;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .download-features {
    flex-direction: column;
    align-items: center;
  }
}

/* Reduced Motion — disable all animations at CSS level */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .dp-roulette-wheel,
  .roulette-wheel,
  .badge-dot,
  .live-dot,
  .live-pulse,
  .dp-live-dot {
    animation: none !important;
  }
}
