/* =============================================
   SPREE CASINO – styles.css
   Fonts: Montserrat (headings) | Open Sans (body)
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #f5c842;
  --gold-dark: #d4a017;
  --red: #e53935;
  --red-dark: #b71c1c;
  --bg-dark: #0d0d0d;
  --bg-dark-alt: #131313;
  --bg-card: #1a1a1a;
  --bg-card2: #212121;
  --text-light: #f0f0f0;
  --text-muted: #aaaaaa;
  --border: rgba(245,200,66,0.18);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 8px 32px rgba(0,0,0,0.5);
  --glow: 0 0 24px rgba(245,200,66,0.25);
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-light);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; }
strong { color: var(--text-light); }

/* ---------- Utility ---------- */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.mt-3 { margin-top: 2rem; }
.section-pad { padding: 80px 0; }
.bg-dark-alt { background: var(--bg-dark-alt); }
.highlight { color: var(--gold); }
.inline-link { color: var(--gold); font-weight: 700; }
.section-label {
  display: inline-block;
  background: rgba(245,200,66,0.12);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.section-heading { margin-bottom: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  min-height: 48px;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(245,200,66,0.35);
}
.btn-primary:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(245,200,66,0.55); color: #000; }
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover { background: rgba(245,200,66,0.1); transform: scale(1.05); }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; min-height: 40px; }
.btn-large { padding: 18px 42px; font-size: 1.1rem; }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(245,200,66,0.35); }
  50% { box-shadow: 0 4px 40px rgba(245,200,66,0.7); }
}
.link-btn { background: none; border: none; cursor: pointer; color: var(--text-muted); font-size: 0.85rem; text-decoration: underline; }
.link-btn:hover { color: var(--text-light); }

/* ---------- Scroll Animations ---------- */
.fade-in-up { opacity: 0; transform: translateY(40px); transition: opacity 0.6s ease var(--delay, 0s), transform 0.6s ease var(--delay, 0s); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in-up.visible, .fade-in-left.visible, .fade-in-right.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in-up, .fade-in-left, .fade-in-right { opacity: 1 !important; transform: none !important; transition: none !important; }
  .pulse-btn { animation: none; }
}

/* ===================== NAVBAR ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13,13,13,0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
}
.navbar { padding: 0; }
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
  text-decoration: none;
}
.logo-icon { font-size: 1.6rem; }
.logo-text strong { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nav-link {
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav-link:hover { color: var(--gold); background: rgba(245,200,66,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000 !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 50px;
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 4px 16px rgba(245,200,66,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at 20% 50%, rgba(245,200,66,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(229,57,53,0.06) 0%, transparent 50%),
              var(--bg-dark);
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-particles { position: absolute; inset: 0; }
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,200,66,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(245,200,66,0.15);
  color: var(--gold);
  border: 1px solid var(--border);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease 0.2s both;
}
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease 0.3s both;
}
.title-line { font-size: clamp(1.5rem, 3.5vw, 2.2rem); color: var(--text-light); }
.title-highlight {
  font-size: clamp(2.5rem, 6vw, 4rem);
  background: linear-gradient(135deg, var(--gold) 0%, #fff7c0 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
  animation: fadeDown 0.6s ease 0.4s both;
}
.hero-timer-wrap {
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease 0.5s both;
}
.timer-label { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 8px; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.countdown-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 18px;
  text-align: center;
  min-width: 64px;
}
.countdown-box span {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.countdown-box small { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.countdown-sep { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--gold); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; animation: fadeDown 0.6s ease 0.55s both; }
.hero-trust {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeDown 0.6s ease 0.6s both;
}
.hero-trust span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.hero-image { animation: fadeDown 0.8s ease 0.4s both; }
.hero-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.hero-main-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
  border: 1px solid var(--border);
}
.img-badge-1, .img-badge-2 {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  animation: float 3s ease-in-out infinite;
}
.img-badge-1 { top: -12px; left: 16px; animation-delay: 0s; }
.img-badge-2 { bottom: -12px; right: 16px; animation-delay: 1.5s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: 60px; }

/* ===================== DISCOUNT BANNER ===================== */
.discount-banner { padding: 70px 0; background: var(--bg-dark); }
.discount-img {
  max-width: 700px;
  width: 100%;
  margin: 28px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.discount-img:hover { transform: scale(1.02); }
.discount-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 24px; }

/* ===================== ABOUT ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%;
}
.about-content p { margin-bottom: 16px; }

/* ===================== HOW IT WORKS ===================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: var(--gold); }
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  opacity: 0.7;
}
.step-icon { font-size: 2.2rem; margin-bottom: 12px; }
.step-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-light); }
.step-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===================== GAMES ===================== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.game-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-card:hover { transform: scale(1.04); box-shadow: var(--glow); }
.game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.game-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.game-card:hover .game-overlay { opacity: 1; }
.game-overlay span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--gold);
  font-size: 0.95rem;
}
.game-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  padding: 8px 8px 10px;
  background: var(--bg-card);
  margin: 0;
}
.game-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.game-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.game-type-card:hover { transform: translateY(-6px); box-shadow: var(--glow); }
.game-type-card img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 2px solid var(--border); }
.game-type-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.game-type-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }

/* ===================== BONUSES ===================== */
.full-width-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: block;
}
.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.bonus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.bonus-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: var(--gold); }
.bonus-icon { font-size: 2.4rem; margin-bottom: 12px; }
.bonus-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.bonus-value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.bonus-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }

/* ===================== LIVE DEALER ===================== */
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.live-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.live-content p { margin-bottom: 16px; }
.feature-list { margin-bottom: 20px; }
.feature-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list strong { color: var(--text-light); }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--glow); border-color: var(--gold); }
.why-icon { font-size: 2.4rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ===================== REVIEWS ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--glow); }
.review-stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); flex-shrink: 0; }
.review-author strong { display: block; color: var(--text-light); font-family: 'Montserrat', sans-serif; font-size: 0.92rem; }
.review-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ===================== FAQ ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 40px 20px 0;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  min-height: 48px;
  transition: color var(--transition);
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform var(--transition);
  line-height: 1;
}
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 16px; }
.faq-a p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }

/* ===================== ORDER SECTION ===================== */
.order-section { background: radial-gradient(ellipse at center, rgba(245,200,66,0.06) 0%, transparent 70%), var(--bg-dark); }
.order-img {
  max-width: 720px;
  width: 100%;
  margin: 28px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--glow);
  border: 1px solid var(--border);
  display: block;
  transition: transform var(--transition);
}
.order-img:hover { transform: scale(1.02); }
.order-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 28px; }
.order-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.order-trust span { font-size: 0.85rem; color: var(--text-muted); font-family: 'Montserrat', sans-serif; font-weight: 600; }

/* ===================== QUICK LINKS ===================== */
.quick-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}
.qlinks-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.qlinks-list li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.qlinks-list li a:hover { color: var(--gold); border-color: var(--gold); background: rgba(245,200,66,0.06); }

/* ===================== FOOTER ===================== */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand .logo-icon { font-size: 1.6rem; }
.footer-brand .logo-text { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.footer-links h4, .footer-legal h4, .footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links ul li, .footer-legal ul li { margin-bottom: 10px; }
.footer-links ul li a, .footer-legal ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-links ul li a:hover, .footer-legal ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; color: var(--text-muted); }
.footer-contact a { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; text-align: center; }
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 8px; }
.footer-bottom a { color: var(--gold); }
.disclaimer { font-size: 0.8rem !important; opacity: 0.7; }

/* ===================== SCROLL TO TOP ===================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 1.2rem;
  font-weight: 900;
  border: none;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top:hover { transform: scale(1.1); }

/* ===================== PURCHASE NOTIFICATION POPUP ===================== */
.purchase-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 1100;
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  max-width: 300px;
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.purchase-popup.show { opacity: 1; transform: translateX(0); pointer-events: all; }
.pp-icon { font-size: 1.8rem; flex-shrink: 0; }
.pp-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.pp-text strong { color: var(--text-light); }
.pp-text small strong { color: var(--gold); }
.pp-close {
  position: absolute;
  top: 6px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.75rem;
  min-width: 24px;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-close:hover { color: var(--text-light); }

/* ===================== EXIT INTENT POPUP ===================== */
.exit-overlay, .delay-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;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.exit-overlay.show, .delay-overlay.show { opacity: 1; pointer-events: all; }
.exit-modal, .delay-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), var(--glow);
  animation: modalIn 0.4s ease;
}
@keyframes modalIn { from { transform: scale(0.9) translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.exit-close, .delay-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  min-width: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.exit-close:hover, .delay-close:hover { background: rgba(255,255,255,0.1); color: var(--text-light); }
.exit-badge, .delay-badge {
  display: inline-block;
  background: rgba(229,57,53,0.15);
  color: #ff6b6b;
  border: 1px solid rgba(229,57,53,0.3);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.exit-title { font-size: clamp(1.3rem, 3vw, 1.8rem); margin-bottom: 14px; }
.exit-sub { color: var(--text-muted); margin-bottom: 20px; font-size: 0.97rem; }
.exit-modal img { max-width: 280px; margin: 0 auto 18px; border-radius: var(--radius-sm); }
.exit-timer {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.exit-timer span { color: var(--red); font-size: 1.1rem; }
.exit-dismiss, .delay-dismiss { margin-top: 14px; margin-bottom: 0; }
.delay-modal h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); margin-bottom: 12px; }
.delay-modal p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.delay-badge { background: rgba(245,200,66,0.15); color: var(--gold); border-color: var(--border); }

/* ===================== PARTICLES (JS-generated) ===================== */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 0.6; transform: scale(1); }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-120px) scale(0); }
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .bonuses-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
  .hero-image { order: -1; max-width: 480px; margin: 0 auto; }
  .hero-content { text-align: center; }
  .hero-btns, .hero-trust { justify-content: center; }
  .hero-timer-wrap { display: flex; flex-direction: column; align-items: center; }
  .about-grid, .live-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .game-types { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(13,13,13,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 4px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link, .nav-cta { border-radius: var(--radius-sm); padding: 14px 16px; min-height: 52px; width: 100%; justify-content: flex-start; }
  .nav-cta { text-align: center; justify-content: center; }
  .section-pad { padding: 56px 0; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .game-types { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .bonuses-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .purchase-popup { max-width: calc(100vw - 40px); bottom: 70px; }
  .scroll-top { bottom: 20px; right: 16px; }
  .countdown-box span { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .title-highlight { font-size: clamp(2rem, 8vw, 3rem); }
  .reviews-grid { grid-template-columns: 1fr; }
  .exit-modal, .delay-modal { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-large { width: 100%; }
}

/* Touch feedback */
@media (hover: none) {
  .btn:active { transform: scale(0.98); }
  .game-card:active { transform: scale(0.98); }
}
