/* ===================================================
   BIG FISH CASINO — styles.css
   Design: Dark Vegas Luxury with Gold Accents
   Fonts: Montserrat (headings) + Open Sans (body)
=================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --clr-bg: #0a0a1a;
  --clr-bg2: #0f0f23;
  --clr-surface: #13132a;
  --clr-surface2: #1a1a38;
  --clr-border: rgba(255, 200, 50, 0.15);
  --clr-gold: #ffd700;
  --clr-gold2: #ffb800;
  --clr-gold-dark: #cc9000;
  --clr-red: #e84040;
  --clr-green: #00d97e;
  --clr-purple: #9b59b6;
  --clr-accent: #ff6b35;
  --clr-text: #f0eaff;
  --clr-text2: #b0a8d0;
  --clr-white: #ffffff;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-hero: 0 20px 60px rgba(0, 0, 0, 0.6);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ===== VISUALLY HIDDEN (a11y) ===== */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

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

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

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 215, 0, 0.12);
  color: var(--clr-gold);
  border: 1px solid rgba(255, 215, 0, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--clr-text2);
  max-width: 600px;
  margin: 0 auto;
}

.section-text {
  font-size: 1rem;
  color: var(--clr-text2);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  white-space: nowrap;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, #e84040, #c0392b);
  color: var(--clr-white);
  box-shadow: 0 6px 24px rgba(232, 64, 64, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 10px 36px rgba(232, 64, 64, 0.6);
}

.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #000;
  box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4);
  font-weight: 900;
}

.btn-gold:hover {
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.7);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-text2);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

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

.btn-outline:hover {
  background: var(--clr-gold);
  color: #000;
}

.btn-nav {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #000;
  font-size: 0.85rem;
  padding: 10px 22px;
  font-weight: 900;
}

.btn-xl {
  padding: 18px 48px;
  font-size: 1.15rem;
}

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

/* Pulsing CTA animation */
.cta-pulse {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(255, 215, 0, 0.4); }
  50% { box-shadow: 0 6px 40px rgba(255, 215, 0, 0.8), 0 0 60px rgba(255, 215, 0, 0.3); }
}

/* ===== NAVBAR ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0;
}

.site-header.scrolled {
  background: rgba(10, 10, 26, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
  padding: 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--clr-gold);
  text-decoration: none;
  flex-shrink: 0;
}

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

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

.nav-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-text2);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: 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 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 60% 0%, #1a0a3a 0%, #0a0a1a 60%);
}

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

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

.hero-glow-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ffd700 0%, transparent 70%);
  top: -150px; right: 5%;
  animation: glowFloat 6s ease-in-out infinite;
}

.hero-glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #e84040 0%, transparent 70%);
  bottom: 0; left: -100px;
  animation: glowFloat 8s ease-in-out infinite reverse;
}

@keyframes glowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
}

/* Floating casino chips */
.hero-chips-anim {
  position: absolute;
  inset: 0;
}

.chip {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.6;
  animation: chipFloat linear infinite;
}

.chip-1 { top: 15%; left: 8%; animation-duration: 7s; animation-delay: 0s; }
.chip-2 { top: 30%; right: 12%; animation-duration: 9s; animation-delay: -2s; }
.chip-3 { top: 60%; left: 5%; animation-duration: 8s; animation-delay: -4s; }
.chip-4 { top: 70%; right: 8%; animation-duration: 6s; animation-delay: -1s; }
.chip-5 { top: 85%; left: 20%; animation-duration: 10s; animation-delay: -3s; }
.chip-6 { top: 10%; left: 40%; animation-duration: 11s; animation-delay: -5s; }

@keyframes chipFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  50% { transform: translateY(-25px) rotate(180deg); opacity: 0.9; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.6; }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.4);
  color: var(--clr-gold);
  padding: 8px 20px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-title-line1 { color: var(--clr-text); }
.hero-title-brand {
  background: linear-gradient(135deg, var(--clr-gold) 0%, #ffb800 50%, var(--clr-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-line2 { color: var(--clr-text); font-size: 0.75em; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text2);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-subtitle strong { color: var(--clr-white); }

/* Timer */
.hero-timer-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 64, 64, 0.1);
  border: 1px solid rgba(255, 64, 64, 0.3);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.timer-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: #ff8080;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.timer-unit span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--clr-white);
  line-height: 1;
  transition: color 0.3s;
}

.timer-unit small {
  font-size: 0.6rem;
  color: var(--clr-text2);
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  font-weight: 700;
}

.timer-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--clr-red);
  animation: blink 1s step-end infinite;
}

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

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--clr-text2);
  flex-wrap: wrap;
}

.hero-trust .divider { color: rgba(255, 215, 0, 0.3); }

/* Hero image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-frame {
  position: relative;
  max-width: 480px;
  width: 100%;
}

.hero-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  width: 100%;
  border: 2px solid rgba(255, 215, 0, 0.2);
  object-fit: cover;
  min-height: 300px;
  background: var(--clr-surface2);
  animation: heroImgFloat 5s ease-in-out infinite;
}

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

.hero-img-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #000;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
}

.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  pointer-events: none;
  z-index: -1;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--clr-surface);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 32px 0;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 120px;
}

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

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--clr-gold);
  line-height: 1.2;
}

.trust-item small {
  font-size: 0.78rem;
  color: var(--clr-text2);
  font-weight: 500;
}

/* ===== ABOUT ===== */
.about {
  background: var(--clr-bg);
}

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

.about-img-frame {
  position: relative;
}

.about-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--clr-border);
  min-height: 300px;
  background: var(--clr-surface);
  object-fit: cover;
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--clr-surface2);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-gold);
}

.about-float-badge span { font-size: 1.8rem; }

.about-float-badge div {
  display: flex;
  flex-direction: column;
}

.about-float-badge strong {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--clr-gold);
  font-weight: 800;
}

.about-float-badge small {
  font-size: 0.75rem;
  color: var(--clr-text2);
}

/* ===== DISCOUNT BANNER ===== */
.discount-banner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2d1600 50%, #1a0a0a 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.3);
  border-bottom: 1px solid rgba(255, 107, 53, 0.3);
  padding: 48px 0;
}

.discount-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.discount-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.discount-text p {
  color: var(--clr-text2);
  font-size: 1rem;
}

/* ===== STEPS ===== */
.how-it-works {
  background: var(--clr-bg2);
}

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

.step-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-accent));
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-gold);
}

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

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--clr-text2);
  line-height: 1.6;
}

/* ===== FEATURES ===== */
.features {
  background: var(--clr-bg);
}

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

.feature-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.15);
}

.feature-icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--clr-text2);
  line-height: 1.7;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--clr-bg2);
}

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

.review-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--clr-gold);
  background: var(--clr-surface2);
  flex-shrink: 0;
}

.review-header div {
  flex: 1;
  min-width: 0;
}

.review-header strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-white);
}

.review-header small {
  font-size: 0.8rem;
  color: var(--clr-text2);
}

.review-stars {
  font-size: 0.85rem;
  margin-left: auto;
  flex-shrink: 0;
}

.review-card p {
  font-size: 0.92rem;
  color: var(--clr-text2);
  line-height: 1.7;
  font-style: italic;
}

/* ===== INSIDE ===== */
.inside {
  background: var(--clr-bg);
}

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

.inside-card {
  display: flex;
  gap: 16px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color var(--transition), transform var(--transition);
}

.inside-card:hover {
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateX(4px);
}

.inside-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 215, 0, 0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.inside-body h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 8px;
}

.inside-body p {
  font-size: 0.88rem;
  color: var(--clr-text2);
  line-height: 1.6;
}

/* ===== HOW TO ===== */
.howto {
  background: var(--clr-bg2);
}

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

.howto-list {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.howto-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.howto-list li:hover { border-color: rgba(255, 215, 0, 0.35); }

.howto-icon { font-size: 1.6rem; flex-shrink: 0; }

.howto-list strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.howto-list p {
  font-size: 0.88rem;
  color: var(--clr-text2);
  line-height: 1.6;
}

.howto-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero);
  border: 2px solid var(--clr-border);
  min-height: 400px;
  background: var(--clr-surface);
  object-fit: cover;
  width: 100%;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--clr-bg);
}

.guarantee-card {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 215, 0, 0.02));
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.guarantee-icon { font-size: 4rem; flex-shrink: 0; }

.guarantee-content { flex: 1; min-width: 250px; }

.guarantee-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.guarantee-content p {
  color: var(--clr-text2);
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.7;
}

.guarantee-badge-img {
  width: 120px;
  flex-shrink: 0;
}

/* ===== WHERE TO GET ===== */
.where-to-get {
  background: var(--clr-bg2);
}

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

.platform-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.platform-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: var(--shadow-gold);
}

.platform-card.featured {
  border-color: var(--clr-gold);
  background: linear-gradient(180deg, rgba(255,215,0,0.07) 0%, var(--clr-surface) 100%);
}

.platform-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #000;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.platform-icon { font-size: 2.8rem; margin-bottom: 14px; }

.platform-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.platform-card p {
  font-size: 0.9rem;
  color: var(--clr-text2);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* ===== ORDER CTA ===== */
.order-cta {
  position: relative;
  background: radial-gradient(ellipse at center, #1a0a2e 0%, #0a0a1a 70%);
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}

.order-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.order-coins {
  position: absolute;
  inset: 0;
}

.order-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.order-cta-inner p {
  font-size: 1.1rem;
  color: var(--clr-text2);
  max-width: 600px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.order-cta-img-wrap {
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.order-cta-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero), var(--shadow-gold);
  border: 2px solid rgba(255, 215, 0, 0.3);
  width: 100%;
  min-height: 200px;
  background: var(--clr-surface);
  object-fit: cover;
}

.order-note {
  margin-top: 16px !important;
  font-size: 0.85rem !important;
  color: var(--clr-text2) !important;
  position: relative;
  z-index: 1;
}

/* Coin rain animation */
.coin {
  position: absolute;
  font-size: 1.2rem;
  animation: coinFall linear infinite;
  opacity: 0.4;
}

@keyframes coinFall {
  0% { transform: translateY(-50px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(calc(100vh + 50px)) rotate(720deg); opacity: 0; }
}

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

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

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

.faq-item.open { border-color: rgba(255, 215, 0, 0.4); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-white);
  text-align: left;
  transition: color var(--transition);
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.faq-question:hover { color: var(--clr-gold); }

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--clr-text2);
  line-height: 1.7;
}

/* ===== INTERNAL LINKS ===== */
.internal-links {
  background: var(--clr-surface);
  padding: 40px 0;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.internal-link {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  color: var(--clr-text2);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.internal-link:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
  background: rgba(255, 215, 0, 0.06);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-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(--clr-border);
}

.footer-logo {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--clr-text2);
  line-height: 1.6;
}

.footer-links h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a,
.footer-legal a {
  font-size: 0.9rem;
  color: var(--clr-text2);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover { color: var(--clr-gold); }

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--clr-text2);
  margin-bottom: 8px;
}

.footer-disclaimer {
  font-size: 0.8rem !important;
  color: rgba(176, 168, 208, 0.6) !important;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold2));
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 320px;
  width: calc(100vw - 48px);
  background: var(--clr-surface2);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 14px 40px 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 1100;
  transform: translateX(-110%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.notif-popup.show { transform: translateX(0); }

.notif-avatar {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.notif-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.notif-body strong {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clr-white);
}

.notif-body span {
  font-size: 0.8rem;
  color: var(--clr-text2);
}

.notif-body small {
  font-size: 0.72rem;
  color: var(--clr-gold);
}

.notif-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--clr-text2);
  font-size: 1.2rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.notif-close:hover { color: var(--clr-white); }

/* ===== EXIT INTENT POPUP ===== */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.exit-popup {
  background: var(--clr-surface2);
  border: 2px solid var(--clr-gold);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-gold), var(--shadow-hero);
  animation: popupSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes popupSlideIn {
  from { transform: scale(0.85) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.exit-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--clr-text2);
  font-size: 1.6rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.exit-close:hover {
  color: var(--clr-white);
  background: rgba(255, 255, 255, 0.1);
}

.exit-icon { font-size: 3.5rem; margin-bottom: 12px; }

.exit-popup h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 12px;
}

.exit-popup p {
  font-size: 1rem;
  color: var(--clr-text2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.exit-perks {
  text-align: left;
  margin: 0 auto 28px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exit-perks li {
  font-size: 0.92rem;
  color: var(--clr-green);
  font-family: var(--font-heading);
  font-weight: 700;
}

.exit-skip {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: rgba(176, 168, 208, 0.5);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}

.exit-skip:hover { color: var(--clr-text2); }

/* ===== ANIMATIONS — SCROLL REVEAL ===== */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] { transform: translateX(-40px); }
[data-animate="fade-right"] { transform: translateX(40px); }
[data-animate="fade-up"] { transform: translateY(30px); }

[data-animate].animated {
  opacity: 1;
  transform: translate(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1 !important; transform: none !important; }
}

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .inside-grid { grid-template-columns: 1fr; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrapper { order: -1; max-width: 400px; margin: 0 auto; }
  .hero-cta-group { justify-content: center; }
  .hero-trust { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-frame { max-width: 500px; margin: 0 auto; }
  .howto-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Nav */
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--clr-border);
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-nav { display: none; }

  .site-header { position: fixed; }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-title { font-size: clamp(1.7rem, 7vw, 2.4rem); align-items: center; }

  .hero-timer-box {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .timer-unit span { font-size: 2.2rem; }

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

  .hero-cta-group .btn { text-align: center; justify-content: center; }

  /* Trust bar */
  .trust-container {
    justify-content: center;
    gap: 16px;
  }

  .trust-item {
    flex: none;
    min-width: 120px;
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Inside */
  .inside-card { flex-direction: column; gap: 8px; }
  .inside-num { font-size: 1.4rem; }

  /* Platform */
  .platform-grid { grid-template-columns: 1fr; }

  /* Guarantee */
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  /* Discount */
  .discount-inner {
    flex-direction: column;
    text-align: center;
  }

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

  /* Buttons */
  .btn-xl {
    padding: 16px 32px;
    font-size: 1rem;
  }

  /* Notif popup */
  .notif-popup {
    bottom: 16px;
    left: 12px;
    max-width: calc(100vw - 24px);
    width: auto;
  }

  /* Exit popup */
  .exit-popup { padding: 36px 24px; }

  .howto-list li { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .btn-hero { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
  .hero { padding: 96px 0 48px; }
  .section { padding: 48px 0; }
}
