/* ============================
   DOUBLEDOWN CASINO - styles.css
   ============================ */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #FFD700;
  --gold-dark: #C8A200;
  --gold-light: #FFF3A3;
  --red: #E8210A;
  --red-dark: #B01A08;
  --bg-dark: #0A0A0F;
  --bg-card: #12121A;
  --bg-card2: #1A1A28;
  --text-primary: #FFFFFF;
  --text-secondary: #C0C0D0;
  --text-muted: #808090;
  --border: rgba(255,215,0,0.15);
  --border-hover: rgba(255,215,0,0.5);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.3);
  --shadow-red: 0 0 30px rgba(232,33,10,0.4);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.mt-4 { margin-top: 1.5rem; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 48px;
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, #FF4500 100%);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(232,33,10,0.4);
}

.btn-primary:hover, .btn-primary:focus {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(232,33,10,0.6);
  background: linear-gradient(135deg, #FF4500 0%, var(--red) 100%);
  outline: none;
}

.btn-primary:active { transform: scale(0.98); }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline:hover, .btn-outline:focus {
  background: var(--gold);
  color: var(--bg-dark);
  transform: scale(1.05);
  outline: none;
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-xl { padding: 20px 44px; font-size: 1.2rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.pulse-btn {
  animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,33,10,0.4); }
  50% { box-shadow: 0 8px 40px rgba(232,33,10,0.8), 0 0 0 6px rgba(232,33,10,0.15); }
}

/* ===== NAVBAR ===== */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

#main-nav.scrolled {
  background: rgba(10,10,15,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.navbar { padding: 14px 0; }

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  align-items: center;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}

.nav-link:hover, .nav-link:focus {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
  outline: none;
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 22px;
  font-size: 0.9rem;
  min-height: 44px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 60px 80px;
  gap: 40px;
  background: radial-gradient(ellipse at 30% 50%, rgba(232,33,10,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 50%, rgba(255,215,0,0.08) 0%, transparent 50%),
              var(--bg-dark);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h60v60H0z' fill='none'/%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,215,0,0.03)'/%3E%3C/svg%3E");
  pointer-events: none;
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatParticle linear infinite;
  opacity: 0;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  width: fit-content;
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.hero-title-accent {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(255,215,0,0.5);
  position: relative;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.hero-chips {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: fit-content;
}

.chips-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chips-icon { font-size: 2rem; }

.chips-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.chips-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  width: fit-content;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.stat-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: var(--border);
}

.hero-timer {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(232,33,10,0.1);
  border: 1px solid rgba(232,33,10,0.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  width: fit-content;
}

.timer-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 4px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232,33,10,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  min-width: 50px;
}

.timer-block span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: #FF4500;
  line-height: 1;
}

.timer-block small {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timer-colon {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  color: #FF4500;
  animation: blinkColon 1s ease infinite;
}

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

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), var(--shadow-gold);
  animation: heroFloat 4s ease-in-out infinite;
}

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

.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  border-radius: var(--radius-lg);
  animation: glowPulse 3s ease-in-out infinite;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
  background: linear-gradient(90deg, rgba(255,215,0,0.06) 0%, rgba(232,33,10,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.25);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===== ABOUT ===== */
.about-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: -10px;
  background: linear-gradient(135deg, var(--red), #FF4500);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-red);
}

.badge-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

.badge-text {
  font-size: 0.7rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content { padding-left: 10px; }

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-chip {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ===== DISCOUNT ===== */
.discount-section {
  background: var(--bg-card);
  padding: 60px 0;
}

.discount-card {
  background: linear-gradient(135deg, rgba(232,33,10,0.15) 0%, rgba(255,215,0,0.08) 100%);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-lg);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.discount-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,215,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.discount-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.discount-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.discount-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.discount-right img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

/* ===== GAMES ===== */
.games-section {
  background: var(--bg-dark);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

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

.game-card:hover, .game-card:focus {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), var(--shadow-gold);
  outline: none;
}

.game-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

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

.game-card:hover .game-img-wrapper img { transform: scale(1.05); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

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

.game-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.game-badge.hot { background: var(--red); color: white; }
.game-badge.new { background: var(--gold); color: var(--bg-dark); }

.game-info { padding: 16px; }

.game-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.game-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.game-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-rating {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
}

.game-type {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 50px;
}

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

/* ===== HOW TO PLAY ===== */
.how-section {
  background: var(--bg-card);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

.step-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}

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

.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(255,215,0,0.15);
  line-height: 1;
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-connector {
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
  opacity: 0.5;
}

/* ===== VIP ===== */
.vip-section {
  background: var(--bg-dark);
}

.vip-grid {
  grid-template-columns: 1fr 1fr;
}

.vip-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold);
}

.vip-tiers {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.vip-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  gap: 4px;
  transition: all var(--transition);
  flex: 1;
  min-width: 80px;
}

.vip-tier.active {
  border-color: var(--gold);
  background: rgba(255,215,0,0.08);
  box-shadow: var(--shadow-gold);
}

.tier-icon { font-size: 1.5rem; }

.tier-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-primary);
}

.tier-perk {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: var(--bg-card);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}

.review-card:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.review-stars {
  font-size: 1rem;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), #FF8C00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.reviewer-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== BENEFITS ===== */
.benefits-section {
  background: var(--bg-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  display: block;
}

.benefit-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.benefit-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== ORDER ===== */
.order-section {
  background: var(--bg-card);
}

.order-card {
  background: linear-gradient(135deg, rgba(232,33,10,0.12) 0%, rgba(255,215,0,0.06) 100%);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.order-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.order-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
}

.order-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.order-img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
}

.order-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg-dark);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.faq-item:focus-within {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
  min-height: 64px;
}

.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question:focus { outline: 2px solid var(--gold); outline-offset: -2px; }

.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  animation: fadeInDown 0.25s ease;
}

.faq-answer[hidden] { display: none; }

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

/* ===== FINAL CTA ===== */
.final-cta-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,33,10,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 80%, rgba(255,215,0,0.1) 0%, transparent 50%),
              var(--bg-dark);
  padding: 100px 0;
  text-align: center;
}

.final-cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.final-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.final-cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.final-cta-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}

.final-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050508;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

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

.footer-brand img { margin-bottom: 14px; }

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.footer-links ul li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 12px;
}

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

.footer-copy a { color: var(--text-muted); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--red), #FF4500);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(232,33,10,0.5);
  z-index: 500;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232,33,10,0.7);
}

.scroll-top[hidden] { display: none; }

/* ===== PURCHASE NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--bg-card2);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 900;
  max-width: 320px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,215,0,0.1);
  animation: slideInLeft 0.4s ease;
}

.notif-popup[hidden] { display: none; }

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.notif-text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.4;
}

.notif-text strong {
  color: var(--gold);
  display: block;
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.notif-text span { color: var(--text-secondary); }

.notif-close {
  color: var(--text-muted);
  font-size: 0.8rem;
  padding: 4px;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all var(--transition);
}

.notif-close:hover { background: rgba(255,255,255,0.1); color: var(--text-primary); }

/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay[hidden] { display: none; }

.exit-popup, .delay-popup {
  background: var(--bg-card2);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.exit-popup-close:hover { background: rgba(255,255,255,0.15); color: white; }

.exit-popup-emoji {
  font-size: 3.5rem;
  margin-bottom: 16px;
  display: block;
}

.exit-popup-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.2;
}

.exit-popup-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
}

.exit-chips-display {
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.chips-big {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.chips-sub {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.exit-cta { width: 100%; }

.exit-decline {
  display: block;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 8px;
  min-height: 40px;
  width: 100%;
  transition: color var(--transition);
}

.exit-decline:hover { color: var(--text-secondary); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s ease forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeRight 0.8s ease 0.3s forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== TOUCH FEEDBACK (Mobile) ===== */
@media (hover: none) and (pointer: coarse) {
  .btn:active { transform: scale(0.98); }
  .game-card:active { transform: scale(0.99); }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none; }
  .pulse-btn { animation: none; }
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 40px 60px;
    text-align: center;
  }

  .hero-image-wrapper {
    order: -1;
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-img { max-width: 480px; margin: 0 auto; }
  .hero-stats { margin: 0 auto; }
  .hero-chips { margin: 0 auto; }
  .hero-timer { margin: 0 auto; }
  .hero-badge { margin: 0 auto; }
  .hero-cta-group { justify-content: center; }

  .section-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid .about-image { order: -1; }
  .vip-grid .vip-image { order: -1; }

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

  .discount-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-connector { transform: rotate(90deg); text-align: center; }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,15,0.98);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .nav-links.open + .nav-cta {
    display: flex;
    margin: 8px 20px 16px;
    width: calc(100% - 40px);
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-subtitle { font-size: 0.95rem; }

  .hero-stats {
    gap: 0;
    padding: 12px 16px;
  }

  .stat-item { padding: 0 12px; }
  .stat-number { font-size: 1.1rem; }

  .hero-timer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }

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

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

  .discount-card { padding: 30px 20px; }
  .order-card { padding: 40px 20px; }

  .about-img-badge { right: 10px; bottom: 10px; }

  .vip-tiers { gap: 6px; }
  .vip-tier { min-width: calc(33% - 4px); padding: 10px 8px; }

  .notif-popup {
    left: 10px;
    right: 10px;
    max-width: calc(100% - 20px);
    bottom: 80px;
  }

  .scroll-top {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .exit-popup, .delay-popup { padding: 30px 20px; }
  .exit-popup-title { font-size: 1.3rem; }

  .trust-container { gap: 16px; }
  .trust-item { font-size: 0.78rem; }

  .final-cta-section { padding: 70px 0; }

  .hero-stats { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; }
}

@media (max-width: 400px) {
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn-lg { width: 100%; }
  .hero-title { font-size: 1.75rem; }
  .chips-amount { font-size: 1.3rem; }
}
