/* ========================================
   DK88 Casino — Premium Design System
   ======================================== */

:root {
  --bg-primary: #0a0e27;
  --bg-secondary: #0f1535;
  --bg-card: #141937;
  --bg-card-hover: #1a2045;
  --bg-surface: #1c2248;
  --text-primary: #ffffff;
  --text-secondary: #b0b8d1;
  --text-muted: #6b7394;
  --accent-green: #c8f542;
  --accent-green-dark: #a8d035;
  --accent-blue: #4a6cf7;
  --accent-blue-light: #6b8cff;
  --accent-purple: #7c3aed;
  --accent-gold: #fbbf24;
  --accent-orange: #f97316;
  --accent-red: #ef4444;
  --gradient-primary: linear-gradient(135deg, #4a6cf7 0%, #7c3aed 100%);
  --gradient-green: linear-gradient(135deg, #c8f542 0%, #a8d035 100%);
  --gradient-dark: linear-gradient(180deg, #0a0e27 0%, #0f1535 100%);
  --gradient-card: linear-gradient(145deg, #141937 0%, #1c2248 100%);
  --gradient-hero: linear-gradient(135deg, #0a0e27 0%, #1a0a3e 50%, #0f1535 100%);
  --border-color: rgba(74, 108, 247, 0.15);
  --border-glow: rgba(200, 245, 66, 0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(74, 108, 247, 0.2);
  --shadow-green-glow: 0 0 30px rgba(200, 245, 66, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-primary: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1240px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--accent-blue-light);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-green);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-primary);
  line-height: 1.3;
  font-weight: 700;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.text-center { text-align: center; }

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
  background: rgba(10, 14, 39, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 24px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left i {
  color: var(--accent-green);
  font-size: 11px;
}

.top-bar-right {
  display: flex;
  gap: 8px;
}

.lang-link {
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: var(--transition);
}

.lang-link.active,
.lang-link:hover {
  color: var(--accent-green);
  border-color: var(--accent-green);
  background: rgba(200, 245, 66, 0.08);
}

/* ========================================
   Header
   ======================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(10, 14, 39, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 44px;
  width: auto;
}

.main-nav ul {
  display: flex;
  gap: 4px;
}

.main-nav a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-green);
  color: #0a0e27;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green-glow);
  color: #0a0e27;
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(200, 245, 66, 0.06);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 18px;
  border-radius: var(--radius-md);
}

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

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.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(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-purple);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  bottom: -100px;
  left: -100px;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}

.hero-content {
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 245, 66, 0.1);
  color: var(--accent-green);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(200, 245, 66, 0.2);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #c8f542 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.hero-stat-num {
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 4px;
}

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

/* Hero Banner (Screenshot) */
.hero-banner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1;
}

.hero-banner-inner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(74, 108, 247, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(74, 108, 247, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-banner-inner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-banner-fade {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.hero-banner-fade-left {
  top: 0;
  bottom: 0;
  left: 0;
  width: 80px;
  background: linear-gradient(to right, #0d0f2a 0%, transparent 100%);
}

.hero-banner-fade-right {
  top: 0;
  bottom: 0;
  right: 0;
  width: 80px;
  background: linear-gradient(to left, #0d0f2a 0%, transparent 100%);
}

.hero-banner-fade-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-secondary) 0%, transparent 100%);
}

/* ========================================
   Section Base
   ======================================== */
.section {
  padding: 90px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
}

.section-gradient {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #120a30 50%, var(--bg-primary) 100%);
}

.section-cta {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(74, 108, 247, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-green);
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

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

/* ========================================
   Content Grids
   ======================================== */
.content-grid {
  display: grid;
  gap: 50px;
  align-items: start;
}

.content-grid-2 {
  grid-template-columns: 1fr 1fr;
}

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

.content-grid-reverse .content-visual {
  order: -1;
}

.content-text p {
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.8;
}

/* Feature Lists */
.feature-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}

.feature-list li i {
  color: var(--accent-green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* ========================================
   Info Tables
   ======================================== */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  font-size: 14px;
}

.info-table caption {
  text-align: left;
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
  background: rgba(74, 108, 247, 0.08);
  border-bottom: 1px solid var(--border-color);
}

.info-table thead {
  background: rgba(74, 108, 247, 0.1);
}

.info-table thead th {
  padding: 14px 18px;
  text-align: left;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-color);
}

.info-table tbody th {
  padding: 13px 18px;
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  width: 35%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.info-table td {
  padding: 13px 18px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.info-table tbody tr:last-child th,
.info-table tbody tr:last-child td {
  border-bottom: none;
}

.info-table tbody tr:hover {
  background: rgba(74, 108, 247, 0.04);
}

/* ========================================
   Info Card
   ======================================== */
.info-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.info-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}

.info-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.info-card p {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 14px;
}

/* ========================================
   Game Categories Grid
   ======================================== */
.game-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

.game-cat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.game-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition);
}

.game-cat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 108, 247, 0.3);
  box-shadow: var(--shadow-glow);
}

.game-cat-card:hover::before {
  opacity: 1;
}

.game-cat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.game-cat-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.game-cat-card p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.game-count {
  display: inline-block;
  background: rgba(200, 245, 66, 0.1);
  color: var(--accent-green);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

/* ========================================
   Promo Grid
   ======================================== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.promo-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.promo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.promo-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(74, 108, 247, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  border-color: rgba(74, 108, 247, 0.3);
  text-align: center;
  padding: 48px 40px;
}

.promo-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}

.promo-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 245, 66, 0.1);
  color: var(--accent-green);
  font-size: 22px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.promo-featured .promo-icon {
  margin: 0 auto 20px;
  width: 70px;
  height: 70px;
  font-size: 28px;
}

.promo-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.promo-featured h3 {
  font-size: 26px;
}

.promo-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   VIP Cards
   ======================================== */
.vip-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vip-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.vip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.vip-card-featured {
  border-color: var(--accent-gold);
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.1);
}

.vip-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.vip-badge.bronze { background: linear-gradient(135deg, #cd7f32, #b87333); color: white; }
.vip-badge.silver { background: linear-gradient(135deg, #c0c0c0, #a8a8a8); color: #333; }
.vip-badge.gold { background: linear-gradient(135deg, #ffd700, #daa520); color: #333; }
.vip-badge.platinum { background: linear-gradient(135deg, #e5e4e2, #c0bfbd); color: #333; }

.vip-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.vip-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vip-card li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vip-card li:last-child {
  border-bottom: none;
}

/* ========================================
   Steps Grid
   ======================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 900;
  color: rgba(74, 108, 247, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ========================================
   Support Cards
   ======================================== */
.support-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.support-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 108, 247, 0.1);
  color: var(--accent-blue-light);
  font-size: 24px;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.support-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 14px;
  line-height: 1.7;
}

.support-badge {
  display: inline-block;
  background: rgba(200, 245, 66, 0.1);
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  margin-top: 12px;
}

/* ========================================
   Providers Grid
   ======================================== */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.provider-card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.provider-card i {
  color: var(--accent-gold);
  font-size: 12px;
}

.provider-card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 108, 247, 0.3);
  background: var(--bg-card-hover);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(74, 108, 247, 0.3);
  box-shadow: var(--shadow-glow);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq-question i {
  color: var(--accent-green);
  font-size: 14px;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-glow);
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 17px;
  margin-bottom: 32px;
}

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

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

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.trust-badges i {
  color: var(--accent-green);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #060919;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand img {
  margin-bottom: 16px;
  height: 38px;
  width: auto;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer-links a:hover {
  color: var(--accent-green);
  padding-left: 4px;
}

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

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

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-badges i {
  color: var(--accent-green);
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 800px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

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

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-blue);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-green);
  color: var(--bg-primary);
  transform: translateY(-3px);
}

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ========================================
   Mobile Sticky CTA Bar
   ======================================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10, 14, 39, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-color);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 10px;
}

.mobile-sticky-cta .btn {
  flex: 1;
  text-align: center;
  padding: 13px 10px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

/* ========================================
   Touch Device Optimization
   ======================================== */
@media (hover: none) and (pointer: coarse) {
  .game-cat-card:hover,
  .promo-card:hover,
  .vip-card:hover,
  .step-card:hover,
  .support-card:hover,
  .provider-card:hover {
    transform: none;
    box-shadow: none;
  }

  .game-cat-card:active,
  .promo-card:active,
  .step-card:active,
  .support-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
  }

  .btn:active {
    transform: scale(0.96);
  }

  .btn-primary:hover {
    transform: none;
    box-shadow: none;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

/* ========================================
   Responsive — Tablet (1024px)
   ======================================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-banner-fade-left,
  .hero-banner-fade-right {
    width: 40px;
  }

  .hero-banner-fade-bottom {
    height: 60px;
  }

  .content-grid-2 {
    grid-template-columns: 1fr;
  }

  .content-grid-reverse .content-visual {
    order: 0;
  }

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

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

  .promo-featured {
    grid-column: 1 / -1;
  }

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

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

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* ========================================
   Responsive — Mobile (768px)
   ======================================== */
@media (max-width: 768px) {

  /* --- Top Bar --- */
  .top-bar-left {
    display: none;
  }

  .top-bar {
    padding: 6px 0;
  }

  .top-bar-right {
    margin-left: auto;
  }

  /* --- Header --- */
  .header-inner {
    height: 58px;
  }

  .logo img {
    height: 34px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.active {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav a {
    display: block;
    padding: 16px 24px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  /* --- Mobile Sticky CTA visible --- */
  .mobile-sticky-cta {
    display: flex;
  }

  /* --- Hero --- */
  .hero {
    padding: 40px 0 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 18px;
  }

  .hero-text {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .hero-cta {
    margin-bottom: 32px;
    gap: 12px;
  }

  .hero-cta .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hero-stat {
    padding: 12px 8px;
  }

  .hero-stat-num {
    font-size: 20px;
  }

  .hero-stat-label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .hero-inner {
    margin-bottom: 28px;
  }

  .hero-banner-inner {
    border-radius: var(--radius-sm);
  }

  .hero-banner-fade-left,
  .hero-banner-fade-right {
    width: 24px;
  }

  .hero-banner-fade-bottom {
    height: 40px;
  }

  /* --- Sections --- */
  .section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .section-tag {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  /* --- Content Grids --- */
  .content-grid {
    gap: 30px;
  }

  .content-text p {
    font-size: 14px;
    line-height: 1.75;
  }

  .feature-list {
    gap: 10px;
  }

  .feature-list li {
    font-size: 14px;
    gap: 10px;
  }

  /* --- Tables --- mobile card layout for 2-col tables --- */
  .info-table {
    font-size: 13px;
  }

  .info-table caption {
    font-size: 13px;
    padding: 12px 16px;
  }

  .info-table thead th,
  .info-table tbody th,
  .info-table td {
    padding: 10px 14px;
  }

  /* Tables with many columns get horizontal scroll */
  .info-table thead th {
    font-size: 11px;
    white-space: nowrap;
  }

  /* Wrap tables in scrollable container */
  .content-visual .info-table,
  .mt-40.info-table,
  table.info-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  /* --- Game Categories --- */
  .game-categories {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .game-cat-card {
    padding: 22px;
  }

  .game-cat-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .game-cat-card h3 {
    font-size: 17px;
  }

  .game-cat-card p {
    font-size: 13px;
  }

  /* --- Promo Grid --- */
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .promo-featured {
    grid-column: auto;
    padding: 30px 22px;
  }

  .promo-featured h3 {
    font-size: 20px;
  }

  .promo-card {
    padding: 22px;
  }

  .promo-card h3 {
    font-size: 16px;
  }

  .promo-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
    margin-bottom: 16px;
  }

  .promo-featured .promo-icon {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  /* --- VIP Tiers --- */
  .vip-tiers {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vip-card {
    padding: 24px 20px;
  }

  .vip-card h3 {
    font-size: 16px;
  }

  .vip-card li {
    font-size: 13px;
    padding: 5px 0;
  }

  /* --- Steps Grid --- */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-card {
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .step-number {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
    min-width: 40px;
  }

  .step-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-card p {
    font-size: 13px;
  }

  /* --- Support Cards --- */
  .content-grid-3 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .support-card {
    padding: 22px;
    display: flex;
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
  }

  .support-icon {
    margin: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .support-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .support-card p {
    font-size: 13px;
  }

  .support-badge {
    margin-top: 8px;
  }

  /* --- Providers --- */
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .provider-card {
    padding: 14px 12px;
    font-size: 12px;
    gap: 6px;
  }

  /* --- FAQ --- */
  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
    gap: 12px;
    min-height: 52px;
  }

  .faq-answer p {
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.75;
  }

  /* --- CTA Section --- */
  .cta-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .btn-xl {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 14px;
  }

  .trust-badges {
    gap: 8px;
  }

  .trust-badges span {
    font-size: 11px;
    gap: 5px;
  }

  /* --- Info Card --- */
  .info-card {
    padding: 28px 20px;
  }

  .info-card img {
    width: 80px;
    height: 80px;
  }

  .info-card h3 {
    font-size: 18px;
  }

  /* --- Footer --- */
  .footer {
    padding: 40px 0 20px;
    padding-bottom: calc(20px + 70px); /* space for sticky CTA */
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand img {
    height: 32px;
  }

  .footer-brand p {
    font-size: 13px;
  }

  .footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .footer-links a {
    font-size: 13px;
  }

  .footer-links ul {
    gap: 8px;
  }

  .footer-badges {
    gap: 8px;
  }

  .footer-badges span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .footer-disclaimer {
    font-size: 11px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  /* --- Back to Top --- */
  .back-to-top {
    bottom: 80px; /* above sticky CTA */
    right: 16px;
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
}

/* ========================================
   Responsive — Small Mobile (480px)
   ======================================== */
@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero {
    padding: 30px 0 0;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-text {
    font-size: 13px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-stat {
    padding: 10px 6px;
  }

  .hero-stat-num {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 9px;
  }

  .hero-inner {
    margin-bottom: 20px;
  }

  /* Sections */
  .section {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .section-subtitle {
    font-size: 13px;
  }

  /* Cards spacing */
  .game-cat-card,
  .promo-card,
  .vip-card,
  .step-card,
  .support-card {
    padding: 18px;
  }

  .promo-featured {
    padding: 24px 18px;
  }

  .promo-featured h3 {
    font-size: 18px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Providers */
  .providers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .provider-card {
    padding: 12px 8px;
    font-size: 11px;
  }

  /* CTA */
  .cta-content h2 {
    font-size: 20px;
  }

  .cta-content p {
    font-size: 13px;
  }
}

/* ========================================
   Responsive — Extra Small (360px)
   ======================================== */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero h1 {
    font-size: 20px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .section-header h2 {
    font-size: 18px;
  }

  .hero-stat-num {
    font-size: 16px;
  }

  .btn-lg {
    padding: 11px 16px;
    font-size: 13px;
  }

  .mobile-sticky-cta .btn {
    padding: 11px 8px;
    font-size: 13px;
  }

  .logo img {
    height: 28px;
  }

  .faq-question {
    font-size: 13px;
    padding: 14px 14px;
  }

  .faq-answer p {
    padding: 0 14px 14px;
    font-size: 12px;
  }
}

/* ========================================
   Landscape Phone Fix
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 20px 0 0;
  }

  .hero h1 {
    font-size: 22px;
  }

  .hero-cta {
    margin-bottom: 20px;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .hero-inner {
    margin-bottom: 16px;
  }

  .section {
    padding: 30px 0;
  }

  .mobile-sticky-cta {
    padding: 6px 16px;
  }
}

/* ========================================
   Safe area insets (notch devices)
   ======================================== */
@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-sticky-cta {
    padding-bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .footer {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
}

/* ========================================
   Reduced Motion (accessibility)
   ======================================== */
@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;
  }
}

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

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

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

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

/* ========================================
   Selection
   ======================================== */
::selection {
  background: rgba(200, 245, 66, 0.3);
  color: white;
}