/* ===================================
   CrownPlay Casino - Premium CSS
   Version: 2.5.7
   Author: Dev Team C
   =================================== */

/* CSS Variables & Theme */
:root {
  --primary-gold: #d4a574;
  --primary-gold-dark: #b08d5a;
  --primary-gold-light: #e6b885;
  --accent-green: #00d4aa;
  --accent-green-light: #00e6bb;
  --bg-dark: #0a0908;
  --bg-panel: #1f1c1a;
  --bg-panel-hover: #2a2622;
  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-muted: #6b6866;
  --border-color: rgba(165,130,100,.15);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 4px 16px rgba(0,0,0,.5);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.6);
  --shadow-gold: 0 8px 32px rgba(212,165,116,.25);
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --mobile-breakpoint: 768px;
  --tablet-breakpoint: 992px;
  --desktop-breakpoint: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(212,165,116,.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0,212,170,.03) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(212,165,116,.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Loading Screen */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loader {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(212,165,116,.2);
  border-top-color: var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.loader-wrapper.loaded {
  opacity: 0;
  visibility: hidden;
}

/* Modern Navigation */
.nav-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(10,9,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-base);
}

.nav-modern.scrolled {
  height: 64px;
  background: rgba(10,9,8,.98);
  box-shadow: var(--shadow-md);
}

.nav-modern.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: width var(--transition-base);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-actions.mobile-only {
  display: none;
}

.nav-actions.desktop-only {
  display: flex;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.05);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  color: #000;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,165,116,.35);
}

.btn-hero {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-large {
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 700;
}

.btn-icon {
  margin-right: 8px;
  font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  background: transparent;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10,9,8,.5) 50%, var(--bg-dark) 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(212,165,116,.1);
  border: 1px solid var(--primary-gold);
  border-radius: 100px;
  color: var(--primary-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.badge-icon {
  font-size: 20px;
}

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

.hero-title {
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

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

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease;
}

/* Stats Bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 60px;
  padding: 32px;
  background: rgba(31,28,26,.3);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1.4s ease;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Trust Section */
.trust-section {
  padding: 40px 24px;
  background: linear-gradient(90deg, rgba(31,28,26,.5) 0%, rgba(42,38,34,.5) 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.trust-badge:hover {
  opacity: 1;
  transform: scale(1.05);
}

.trust-icon {
  font-size: 32px;
}

/* Features Grid */
.features {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(31,28,26,.2) 100%);
}

.features-container,
.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: rgba(0,212,170,.1);
  border: 1px solid var(--accent-green);
  border-radius: 100px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--accent-green));
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-gold);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card.premium {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, var(--bg-panel) 100%);
  border-color: rgba(212,165,116,.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.icon-emoji {
  font-size: 32px;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-stats {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-pill {
  padding: 4px 12px;
  background: rgba(212,165,116,.1);
  border: 1px solid rgba(212,165,116,.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-gold);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--accent-green);
  color: #000;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Games Showcase */
.games-showcase {
  padding: 100px 24px;
  position: relative;
}

.games-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn.active {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.tab-btn:hover:not(.active) {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-panel);
  transition: all var(--transition-base);
  cursor: pointer;
  aspect-ratio: 3/4;
}

.game-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.game-card.featured {
  border: 2px solid var(--primary-gold);
}

.game-card.exclusive {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, var(--bg-panel) 100%);
}

.game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.game-overlay.visible {
  opacity: 1;
}

.game-card:hover .game-overlay {
  opacity: 1;
}

.game-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  background: rgba(0,0,0,.8);
  color: var(--text-primary);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 4px;
}

.game-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.game-provider {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.game-info {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.game-info span {
  padding: 4px 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.game-jackpot {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.live-badge {
  color: #ff4444;
  animation: blink 1s infinite;
  display: flex;
  align-items: center;
  gap: 4px;
}

.live-dot {
  font-size: 12px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.play-btn {
  padding: 10px 24px;
  background: var(--accent-green);
  color: #000;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.play-btn:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
}

.view-all-cta {
  text-align: center;
  margin-top: 48px;
}

/* Promotions */
.promotions {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(31,28,26,.2) 0%, var(--bg-dark) 100%);
}

.promo-main {
  background: linear-gradient(135deg, rgba(212,165,116,.08) 0%, rgba(0,212,170,.08) 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
}

.promo-main::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

.promo-highlight {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0,212,170,.2);
  border: 1px solid var(--accent-green);
  border-radius: 100px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.promo-amount {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-gold), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.promo-details {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.promo-breakdown {
  display: grid;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: rgba(0,0,0,.3);
  border-radius: 12px;
}

.deposit-step {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.deposit-step:last-child {
  border-bottom: none;
}

.step-label {
  font-weight: 600;
  color: var(--primary-gold);
}

.step-bonus {
  font-weight: 700;
  color: var(--text-primary);
}

.promo-terms {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.promo-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-gold);
}

.promo-card.vip {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, var(--bg-panel) 100%);
  border-color: var(--primary-gold);
}

.promo-card.hot::before {
  content: '🔥 HOT';
  position: absolute;
  top: -1px;
  right: 20px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: white;
  font-size: 10px;
  font-weight: 800;
  border-radius: 0 0 6px 6px;
}

.promo-card.special {
  background: linear-gradient(135deg, rgba(147,51,234,.1) 0%, var(--bg-panel) 100%);
}

.promo-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.promo-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.promo-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.promo-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-gold);
  margin-bottom: 16px;
}

.promo-timer {
  padding: 8px 16px;
  background: rgba(255,107,53,.2);
  border-radius: 6px;
  color: #ff6b35;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
}

.promo-levels {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.level {
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.level.bronze { background: #cd7f32; color: white; }
.level.silver { background: #c0c0c0; color: #000; }
.level.gold { background: var(--primary-gold); color: #000; }
.level.platinum { background: linear-gradient(135deg, #e5e4e2, #fff); color: #000; }

.promo-days {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  justify-content: center;
}

.day {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.day.active {
  background: rgba(0,212,170,.2);
  border-color: var(--accent-green);
  color: var(--accent-green);
}

/* Live Casino Section */
.live-casino-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(31,28,26,.3) 0%, var(--bg-dark) 100%);
}

.live-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.live-stat {
  text-align: center;
}

.live-stat .stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-gold);
  display: block;
  margin-bottom: 8px;
}

.live-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.live-game-card {
  background: var(--bg-panel);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-base);
}

.live-game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.live-game-card.vip {
  border: 2px solid var(--primary-gold);
}

.live-indicator {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  background: rgba(255,0,0,.9);
  color: white;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 10;
  animation: pulse 2s infinite;
}

.live-game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.live-game-card h3 {
  padding: 16px;
  font-size: 20px;
  font-weight: 700;
}

.live-game-card p {
  padding: 0 16px 16px;
  color: var(--text-secondary);
}

.live-game-card .btn {
  margin: 0 16px 16px;
  width: calc(100% - 32px);
}

/* Sports Section */
.sports-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(31,28,26,.2) 100%);
}

.sports-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

.sport-feature {
  text-align: center;
  padding: 32px;
  background: var(--bg-panel);
  border-radius: 16px;
  transition: all var(--transition-base);
}

.sport-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.sport-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.sport-feature h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sport-feature p {
  color: var(--text-secondary);
  font-size: 14px;
}

.odds-boost-banner {
  background: linear-gradient(135deg, rgba(0,212,170,.1) 0%, rgba(212,165,116,.1) 100%);
  border: 2px solid var(--accent-green);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.odds-boost-banner h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent-green), var(--primary-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Payment Section */
.payment-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(31,28,26,.1) 0%, var(--bg-dark) 100%);
}

.payment-container {
  max-width: 1200px;
  margin: 0 auto;
}

.payment-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 48px 0;
}

.highlight-card {
  background: var(--bg-panel);
  border-left: 4px solid var(--primary-gold);
  padding: 24px;
  border-radius: 8px;
  transition: all var(--transition-base);
}

.highlight-card:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}

.highlight-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-gold);
}

.highlight-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.payment-methods-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 48px;
}

.payment-method {
  padding: 12px 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.payment-method:hover {
  transform: translateY(-4px);
  border-color: var(--primary-gold);
  box-shadow: var(--shadow-md);
}

.payment-method.crypto {
  border-color: var(--accent-green);
}

.payment-logo {
  height: 40px;
  width: auto;
}

/* SEO Content */
.seo-content {
  padding: 100px 24px;
  background: linear-gradient(180deg, rgba(31,28,26,.1) 0%, var(--bg-dark) 100%);
}

.content-container {
  max-width: 1000px;
  margin: 0 auto;
}

.content-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.content-subtitle {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--primary-gold);
}

.content-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.content-cta {
  background: linear-gradient(135deg, rgba(212,165,116,.1) 0%, rgba(0,212,170,.1) 100%);
  border: 2px solid var(--primary-gold);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
  margin-top: 48px;
}

.content-cta h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.content-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* Footer */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border-color);
  padding: 64px 24px 32px;
  margin-top: 100px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column h4 {
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition-fast);
}

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

.language-selector {
  margin: 48px 0;
  padding: 32px;
  background: rgba(31,28,26,.3);
  border-radius: 16px;
}

.language-selector h4 {
  color: var(--primary-gold);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.language-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.lang-link {
  padding: 8px 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.lang-link:hover,
.lang-link.active {
  background: var(--primary-gold);
  color: #000;
  border-color: var(--primary-gold);
}

.footer-licenses {
  margin: 32px 0;
  padding: 24px;
  background: rgba(31,28,26,.3);
  border-radius: 12px;
}

.footer-licenses h4 {
  color: var(--primary-gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.license-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.license-badge {
  padding: 8px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  color: var(--primary-gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
  transform: translateY(-3px);
}

.footer-disclaimer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-disclaimer a {
  color: var(--primary-gold);
  text-decoration: none;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 500px;
  background: var(--bg-panel);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  display: none;
}

.cookie-banner.show {
  display: block;
  animation: slideUp 0.5s ease;
}

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

.cookie-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cookie-text a {
  color: var(--primary-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: var(--primary-gold);
  color: #000;
}

.cookie-reject {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

/* Utility Classes */
.glass-effect {
  background: rgba(31,28,26,.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,165,116,.2);
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

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

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--primary-gold);
  outline-offset: 2px;
}

/* Mobile Responsive - Critical */
@media (max-width: 768px) {
  /* Navigation Mobile */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 32px;
    transition: left var(--transition-base);
    z-index: 999;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-actions.desktop-only {
    display: none;
  }

  .nav-actions.mobile-only {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
  }

  .nav-actions.mobile-only .btn {
    width: 100%;
  }

  /* Hero Mobile */
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px 16px;
  }

  .stat-value {
    font-size: 24px;
  }

  /* Trust Section Mobile */
  .trust-badges {
    gap: 24px;
  }

  .trust-icon {
    font-size: 24px;
  }

  /* Features Mobile */
  .features {
    padding: 60px 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  /* Games Mobile */
  .games-showcase {
    padding: 60px 16px;
  }

  .games-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Promotions Mobile */
  .promotions {
    padding: 60px 16px;
  }

  .promo-main {
    padding: 32px 20px;
  }

  .promo-amount {
    font-size: 32px;
  }

  .promo-breakdown {
    padding: 16px;
  }

  .deposit-step {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .promo-levels {
    max-width: 100%;
  }

  /* Live Casino Mobile */
  .live-casino-section {
    padding: 60px 16px;
  }

  .live-stats {
    gap: 32px;
  }

  .live-stat .stat-number {
    font-size: 36px;
  }

  .live-games-grid {
    grid-template-columns: 1fr;
  }

  /* Sports Mobile */
  .sports-section {
    padding: 60px 16px;
  }

  .sports-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .sport-feature {
    padding: 20px;
  }

  .odds-boost-banner {
    padding: 32px 20px;
  }

  .odds-boost-banner h3 {
    font-size: 24px;
  }

  /* Payment Mobile */
  .payment-section {
    padding: 60px 16px;
  }

  .payment-highlights {
    grid-template-columns: 1fr;
  }

  .payment-methods-grid {
    gap: 12px;
  }

  /* SEO Content Mobile */
  .seo-content {
    padding: 60px 16px;
  }

  .content-title {
    font-size: 28px;
  }

  .content-subtitle {
    font-size: 20px;
  }

  .content-cta {
    padding: 32px 20px;
  }

  /* Footer Mobile */
  .footer {
    padding: 48px 16px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .language-links {
    flex-direction: column;
  }

  .lang-link {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Cookie Banner Mobile */
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 12px 12px 0 0;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .games-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .promo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .features-container,
  .container,
  .payment-container,
  .content-container,
  .footer-container {
    max-width: 1400px;
  }

  .games-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Print Styles */
@media print {
  .nav-modern,
  .cookie-banner,
  .loader-wrapper {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* Performance Optimizations */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Animation Performance */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --primary-gold: #ffcc00;
    --text-secondary: #cccccc;
    --border-color: rgba(255,255,255,.3);
  }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 80px 16px 40px;
  }

  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}
