/* ========================================
   Jack Poker - Pure HTML5 + CSS3
   ======================================== */

/* CSS Variables */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #141428;
  --bg-card: rgba(20, 20, 40, 0.8);
  
  --violet: #8b5cf6;
  --violet-dark: #7c3aed;
  --amber: #fbbf24;
  --amber-dark: #f59e0b;
  --emerald: #34d399;
  --emerald-dark: #10b981;
  --blue: #60a5fa;
  --blue-dark: #3b82f6;
  --red: #f87171;
  --red-dark: #ef4444;
  --pink: #f472b6;
  --pink-dark: #ec4899;
  --orange: #fb923c;
  --green: #4ade80;
  
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-gray-light: #d1d5db;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-glow-violet: 0 0 40px rgba(139, 92, 246, 0.3);
  --shadow-glow-amber: 0 0 40px rgba(251, 191, 36, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* ========================================
   Header
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

@media (min-width: 1024px) {
  .header-container {
    height: 5rem;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 2rem;
  width: auto;
}

@media (min-width: 1024px) {
  .logo-img {
    height: 2.5rem;
  }
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.875rem;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--text-white);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--text-white);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, var(--violet) 0%, var(--violet-dark) 100%);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.btn-gold {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  color: #1a1a1a;
  font-size: 1.125rem;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(251, 191, 36, 0.5);
}

.btn-outline {
  padding: 1rem 2rem;
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.125rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-green {
  padding: 0.5rem 1rem;
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald);
  font-size: 0.875rem;
}

.btn-green:hover {
  background: rgba(52, 211, 153, 0.3);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.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: 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  transform: scale(1.1);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.5), rgba(10, 10, 15, 1));
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: rgba(139, 92, 246, 0.2);
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.8; }
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 3rem 0;
}

.hero-logo {
  margin-bottom: 1rem;
}

.hero-logo-img {
  height: 4rem;
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@media (min-width: 1024px) {
  .hero-logo-img {
    height: 5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(245, 158, 11, 0.3));
  border: 1px solid rgba(251, 191, 36, 0.5);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: #fcd34d;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 5rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 6rem;
  }
}

.hero-title-highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .hero-subtitle {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 2.5rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-gray-light);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-description br {
  display: none;
}

@media (min-width: 640px) {
  .hero-description br {
    display: block;
  }
}

.text-amber {
  color: var(--amber);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: 0.875rem;
  color: var(--text-gray-light);
}

.hero-feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-amber { background: var(--amber); }
.dot-emerald { background: var(--emerald); }
.dot-violet { background: var(--violet); }

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
  position: relative;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: 4rem;
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.badge-blue {
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--blue);
}

.badge-amber {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: var(--amber);
}

.badge-emerald {
  background: rgba(52, 211, 153, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--emerald);
}

.badge-pink {
  background: rgba(244, 114, 182, 0.2);
  border: 1px solid rgba(244, 114, 182, 0.3);
  color: var(--pink);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.text-blue { color: var(--blue); }
.text-emerald { color: var(--emerald); }
.text-pink { color: var(--pink); }

.text-gradient {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

.subsection-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* ========================================
   Cards
   ======================================== */
.card {
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .card {
    padding: 2rem;
  }
}

.card-glass {
  background: rgba(20, 20, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-blue { background: rgba(96, 165, 250, 0.2); color: var(--blue); }
.icon-green { background: rgba(74, 222, 128, 0.2); color: var(--green); }
.icon-emerald { background: rgba(52, 211, 153, 0.2); color: var(--emerald); }
.icon-violet { background: rgba(139, 92, 246, 0.2); color: var(--violet); }
.icon-amber { background: rgba(251, 191, 36, 0.2); color: var(--amber); }
.icon-pink { background: rgba(244, 114, 182, 0.2); color: var(--pink); }
.icon-red { background: rgba(248, 113, 113, 0.2); color: var(--red); }
.icon-orange { background: rgba(251, 146, 60, 0.2); color: var(--orange); }

.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-white);
}

/* ========================================
   VPN Section
   ======================================== */
.section-vpn {
  position: relative;
}

.vpn-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}

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

.vpn-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary), transparent, var(--bg-primary));
}

.vpn-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .vpn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 2rem;
  height: 2rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--violet);
  flex-shrink: 0;
}

.step-title {
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.step-text {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Countries */
.countries {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.country {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.country-allowed {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  color: var(--text-gray-light);
}

.country-flag {
  font-size: 1.25rem;
}

.countries-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.country-blocked {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  background: rgba(248, 113, 113, 0.2);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: #fca5a5;
}

/* Alerts */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1.5rem;
}

.alert-danger {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(185, 28, 28, 0.1));
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-success {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(22, 163, 74, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(239, 68, 68, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-danger .alert-icon {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.alert-success .alert-icon {
  background: rgba(34, 197, 94, 0.2);
  color: var(--emerald);
}

.alert-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.alert-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.text-green {
  color: var(--emerald);
}

.text-red {
  color: var(--red);
}

.alert-text {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

/* ========================================
   Bonuses Section
   ======================================== */
.section-bonuses {
  position: relative;
}

.bonuses-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

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

.bonuses-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary), transparent, var(--bg-primary));
}

.bonuses-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .bonuses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.bonus-card {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.bonus-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.bonus-card-highlight {
  border-width: 2px;
  border-color: rgba(139, 92, 246, 0.5);
}

.bonus-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.bonus-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bonus-icon-violet { background: linear-gradient(135deg, var(--violet), var(--violet-dark)); }
.bonus-icon-amber { background: linear-gradient(135deg, var(--amber), var(--amber-dark)); }
.bonus-icon-emerald { background: linear-gradient(135deg, var(--emerald), var(--emerald-dark)); }
.bonus-icon-blue { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); }

.bonus-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.bonus-text {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: #c4b5fd;
}

/* Main Bonus */
.main-bonus {
  position: relative;
  background: rgba(20, 20, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .main-bonus {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem;
  }
}

.main-bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
  pointer-events: none;
}

.main-bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: #c4b5fd;
  margin-bottom: 1rem;
}

.main-bonus-badge svg {
  width: 1rem;
  height: 1rem;
}

.main-bonus-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .main-bonus-title {
    font-size: 2.5rem;
  }
}

.main-bonus-text {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.main-bonus-terms {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.terms-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.terms-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.terms-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.terms-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ========================================
   Tournaments Section
   ======================================== */
.section-tournaments {
  position: relative;
}

.tournaments-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

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

.tournaments-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-primary), transparent, var(--bg-primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

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

.stat-card {
  background: rgba(20, 20, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

/* Games Grid */
.games-grid {
  display: grid;
  gap: 1rem;
}

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

.game-card {
  background: rgba(20, 20, 35, 0.6);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.game-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
}

.game-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.game-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-white);
}

.game-players {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.game-description {
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.game-limits {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--emerald);
}

.game-limits svg {
  width: 1rem;
  height: 1rem;
}

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

.mt-10 {
  margin-top: 2.5rem;
}

/* ========================================
   Support Section
   ======================================== */
.support-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-name {
  font-weight: 600;
  color: var(--text-white);
  transition: color 0.3s ease;
}

.contact-item:hover .contact-name {
  color: var(--blue);
}

.contact-value {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.response-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.response-time svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
}

/* Payment List */
.payment-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}

.payment-icon {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-icon svg {
  width: 1rem;
  height: 1rem;
}

.payment-name {
  flex: 1;
  color: var(--text-white);
}

.payment-status {
  font-size: 0.875rem;
  color: var(--emerald);
}

.min-deposit {
  padding: 1rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.2);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  color: var(--emerald);
}

.min-deposit span {
  color: var(--text-white);
  font-weight: 600;
}

/* ========================================
   CTA Section
   ======================================== */
.section-cta {
  position: relative;
  padding-bottom: 0;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.cta-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark), var(--violet));
  border-radius: var(--radius-xl);
  padding: 1px;
}

.cta-border::before {
  content: '';
  position: absolute;
  inset: 1px;
  background: var(--bg-primary);
  border-radius: calc(var(--radius-xl) - 1px);
}

.cta-content {
  position: relative;
  padding: 2rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cta-content {
    padding: 3rem;
  }
}

.cta-logo {
  margin-bottom: 1.5rem;
}

.cta-logo-img {
  height: 2.5rem;
  margin: 0 auto;
  opacity: 0.8;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: #c4b5fd;
  margin-bottom: 1.5rem;
}

.cta-badge svg {
  width: 1rem;
  height: 1rem;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .cta-title {
    font-size: 3rem;
  }
}

.cta-text {
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-gray-light);
}

.cta-benefit svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
}

.cta-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-gray);
  margin-top: 1.5rem;
}

.cta-security svg {
  width: 1rem;
  height: 1rem;
  color: var(--emerald);
}

/* ========================================
   IP Check Block
   ======================================== */
.ip-check-block {
  background: rgba(20, 20, 40, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.ip-check-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  color: var(--text-gray);
}

.ip-check-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(139, 92, 246, 0.2);
  border-top-color: var(--violet);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.ip-check-hidden {
  display: none !important;
}

.ip-check-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ip-check-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ip-check-icon.allowed {
  background: rgba(52, 211, 153, 0.2);
  color: var(--emerald);
}

.ip-check-icon.blocked {
  background: rgba(239, 68, 68, 0.2);
  color: var(--red);
}

.ip-check-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.ip-check-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.ip-check-title.allowed {
  color: var(--emerald);
}

.ip-check-title.blocked {
  color: var(--red);
}

.ip-check-text {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ip-check-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ip-check-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.ip-check-tag.allowed {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: var(--emerald);
}

.ip-check-tag.blocked {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: var(--red);
}

.ip-check-tag.info {
  background: rgba(96, 165, 250, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--blue);
}

.ip-check-cta {
  margin-top: 1rem;
}

.ip-check-cta .btn {
  animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
}

.ip-check-error {
  text-align: center;
  color: var(--text-gray);
  padding: 1rem;
}

.ip-check-error svg {
  width: 2rem;
  height: 2rem;
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo-img {
  height: 2rem;
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.75rem;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--text-gray-light);
}

.footer-copy {
  font-size: 0.75rem;
  color: #4b5563;
}

/* ========================================
   Scrollbar
   ======================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--violet-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--violet);
}

/* ========================================
   Selection
   ======================================== */
::selection {
  background: rgba(139, 92, 246, 0.3);
  color: var(--text-white);
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
