/* ===================================================
   MC LUCK CASINO – styles.css
   Fonts: Montserrat (headings) + Open Sans (body)
   Theme: Dark gold luxury casino aesthetic
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --gold: #c9a227;
  --gold-light: #f0c93a;
  --gold-dark: #a07d10;
  --bg-dark: #0a0a12;
  --bg-card: #12121f;
  --bg-section: #0e0e1a;
  --bg-mid: #151525;
  --text-primary: #f5f0e8;
  --text-secondary: #b8b0a0;
  --text-muted: #7a7060;
  --accent: #c9a227;
  --accent-hover: #f0c93a;
  --danger: #e84040;
  --success: #27c97a;
  --border: rgba(201,162,39,0.18);
  --shadow-gold: 0 0 30px rgba(201,162,39,0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,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;
  --nav-h: 72px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

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

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title .accent, .accent { color: var(--gold); }
.section-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 620px;
}
.section-sub.centered, .section-title.centered { text-align: center; }
.body-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.text-center { text-align: center; }

/* ===== 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;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  min-height: 48px;
  touch-action: manipulation;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn:hover { transform: scale(1.05); }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,162,39,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 8px 30px rgba(201,162,39,0.5);
  color: #000;
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,162,39,0.12);
  color: var(--gold-light);
}
.btn-outline-light {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.btn-xl { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.pulse-btn { animation: pulsate 2.2s ease-in-out infinite; }
@keyframes pulsate {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,162,39,0.35); }
  50% { box-shadow: 0 4px 40px rgba(201,162,39,0.7), 0 0 0 8px rgba(201,162,39,0.1); }
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-header { margin-bottom: 50px; display: flex; flex-direction: column; align-items: center; gap: 12px; }

/* ===== NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,10,18,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.navbar { height: 100%; }
.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { width: 40px; height: 40px; border-radius: 8px; }
.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--gold); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  padding: 8px 14px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(201,162,39,0.1);
}
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 50%, rgba(201,162,39,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%),
              var(--bg-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.glow-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -100px; left: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}
.glow-2 {
  width: 400px; height: 400px;
  background: #8b00ff;
  bottom: -50px; right: -50px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero-chips {
  position: absolute;
  inset: 0;
}
.chip {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.25;
  animation: chipFloat linear infinite;
}
.chip-1 { top: 15%; left: 5%;  animation-duration: 12s; animation-delay: 0s; }
.chip-2 { top: 25%; right: 8%; animation-duration: 15s; animation-delay: -3s; }
.chip-3 { top: 60%; left: 3%;  animation-duration: 10s; animation-delay: -6s; }
.chip-4 { top: 70%; right: 5%; animation-duration: 14s; animation-delay: -1s; }
.chip-5 { top: 40%; left: 48%; animation-duration: 11s; animation-delay: -8s; }
.chip-6 { top: 85%; left: 20%; animation-duration: 13s; animation-delay: -4s; }
@keyframes chipFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(15deg); }
  75% { transform: translateY(10px) rotate(-10deg); }
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: var(--font-head);
  letter-spacing: 0.5px;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-title-accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.hero-title-emoji { font-size: 0.7em; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
  max-width: 500px;
}
.hero-timer-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.timer-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: var(--font-head);
}
.countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 16px;
  min-width: 60px;
}
.countdown-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.countdown-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.countdown-sep {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-head);
}
.countdown-large .countdown-num { font-size: 2.8rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.hero-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  width: 100%;
  transition: transform 0.6s ease;
  animation: heroImgFloat 5s ease-in-out infinite;
}
@keyframes heroImgFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-badge-float {
  position: absolute;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,162,39,0.5);
  white-space: nowrap;
  animation: badgePop 3s ease-in-out infinite;
}
.badge-float-1 { top: 20px; left: -20px; animation-delay: 0s; }
.badge-float-2 { bottom: 30px; right: -20px; animation-delay: 1.5s; }
@keyframes badgePop {
  0%, 100% { transform: scale(1) rotate(-2deg); }
  50% { transform: scale(1.05) rotate(2deg); }
}
.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ===== ANIMATIONS ===== */
.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4,0,0.2,1) both;
}
.fade-in-right {
  animation: fadeInRight 0.9s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: 100%;
}
.about-img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-family: var(--font-head);
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}
.feature-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

/* ===== GAMES SECTION ===== */
.section-bg-dark {
  background: var(--bg-mid);
  padding: 80px 0;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.game-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.game-card:focus { outline: 2px solid var(--gold); outline-offset: 3px; }
.game-card-icon {
  font-size: 2rem;
  text-align: center;
  padding: 24px 0 8px;
}
.game-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.game-card-body { padding: 20px; }
.game-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.game-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-section { background: var(--bg-section); }
.steps-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.step-number {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(201,162,39,0.12);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.65; }
.step-arrow {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

/* ===== OFFER SECTION ===== */
.offer-section { padding: 0; }
.offer-bg {
  background: linear-gradient(135deg, rgba(201,162,39,0.06) 0%, var(--bg-dark) 50%, rgba(139,0,255,0.04) 100%);
  padding: 80px 0;
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.offer-card-featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(201,162,39,0.1), var(--bg-card));
  transform: scale(1.04);
  box-shadow: var(--shadow-gold);
}
.offer-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.offer-card-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  font-family: var(--font-head);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.offer-card-badge.popular {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  border-color: var(--gold);
}
.offer-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.offer-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.offer-price {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.offer-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.offer-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.offer-img { max-width: 700px; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }

/* ===== BENEFITS SECTION ===== */
.benefits-section { background: var(--bg-section); }
.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: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.benefit-desc { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 0; }
.reviews-bg {
  background: var(--bg-mid);
  padding: 80px 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.review-location { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { font-size: 1.1rem; margin-bottom: 12px; }
.review-text { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; }
.review-overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 40px;
  max-width: 500px;
  margin: 0 auto;
}
.review-overall-score {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
}
.review-overall-stars { font-size: 1.4rem; margin-bottom: 6px; }
.review-overall-text { font-size: 0.9rem; color: var(--text-secondary); }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg-section); }
.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:has(.faq-question[aria-expanded="true"]) { border-color: var(--gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  background: transparent;
  transition: color var(--transition);
  min-height: 64px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== CTA SECTION ===== */
.cta-section { padding: 0; }
.cta-bg {
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,39,0.15) 0%, var(--bg-dark) 60%),
              var(--bg-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,162,39,0.2) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(232,64,64,0.15);
  border: 1px solid rgba(232,64,64,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e84040;
  font-family: var(--font-head);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  animation: urgentPulse 1.5s ease-in-out infinite;
}
@keyframes urgentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
.cta-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-timer-wrap { margin-bottom: 36px; }
.cta-timer-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
  font-family: var(--font-head);
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 40px;
}
.cta-slots-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 2rem;
  opacity: 0.3;
}
.cta-slots-row .slot-symbol {
  animation: slotSpin 3s ease-in-out infinite;
}
.cta-slots-row .slot-symbol:nth-child(2) { animation-delay: 0.2s; }
.cta-slots-row .slot-symbol:nth-child(3) { animation-delay: 0.4s; }
.cta-slots-row .slot-symbol:nth-child(4) { animation-delay: 0.6s; }
.cta-slots-row .slot-symbol:nth-child(5) { animation-delay: 0.8s; }
.cta-slots-row .slot-symbol:nth-child(6) { animation-delay: 1.0s; }
.cta-slots-row .slot-symbol:nth-child(7) { animation-delay: 1.2s; }
@keyframes slotSpin {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-10px) scale(1.2); opacity: 0.6; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 14px 0 20px;
  line-height: 1.6;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.footer-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-cta-box p { font-size: 0.9rem; color: var(--text-muted); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-legal {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-legal a:hover { color: var(--gold); }
.footer-disclaimer {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  max-width: 700px;
  margin: 0 auto;
}

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

/* ===== NOTIFICATION POPUP ===== */
.notif-popup {
  position: fixed;
  bottom: 24px; left: 24px;
  max-width: 320px;
  width: calc(100% - 48px);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 1100;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.notif-popup.show { transform: translateX(0); }
.notif-img-wrap { flex-shrink: 0; }
.notif-img {
  width: 44px; height: 44px;
  border-radius: 8px;
  object-fit: cover;
}
.notif-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.notif-name {
  font-size: 0.88rem;
  color: var(--text-primary);
  font-family: var(--font-head);
}
.notif-msg {
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.notif-time {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.notif-close {
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.notif-close:hover { background: rgba(255,255,255,0.12); }

/* ===== MAIN POPUP ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.overlay.active { opacity: 1; pointer-events: all; }
.main-popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: calc(100% - 32px);
  max-width: 500px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  z-index: 1300;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.main-popup.active { opacity: 1; transform: translate(-50%, -50%) scale(1); pointer-events: all; }
.popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition);
}
.popup-close:hover { background: rgba(255,255,255,0.15); color: var(--text-primary); }
.popup-badge {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(232,64,64,0.15);
  border: 1px solid rgba(232,64,64,0.3);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #e84040;
  font-family: var(--font-head);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.popup-icon { font-size: 3.5rem; margin-bottom: 16px; }
.popup-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
}
.popup-text {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}
.popup-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.popup-features span {
  padding: 6px 14px;
  background: rgba(201,162,39,0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}
.popup-cta { width: 100%; justify-content: center; margin-bottom: 14px; }
.popup-decline {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  transition: color var(--transition);
}
.popup-decline:hover { color: var(--text-secondary); }

/* ===== SECTION GRID ===== */
.section-grid { display: grid; gap: 60px; align-items: center; }

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

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 60px 0; }
  
  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(10,10,18,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    z-index: 999;
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link { width: 100%; padding: 14px 16px; font-size: 1rem; }
  .nav-cta { display: none; }

  /* Hero mobile */
  .hero-container { grid-template-columns: 1fr; gap: 40px; padding-top: 20px; }
  .hero-visual { order: -1; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero-subtitle { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .badge-float-1 { top: 10px; left: -10px; font-size: 0.75rem; }
  .badge-float-2 { bottom: 10px; right: -10px; font-size: 0.75rem; }
  .chip { display: none; }

  /* About grid */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .reveal-right { opacity: 0; transform: translateY(30px); }
  .reveal-right.visible { transform: translateY(0); }

  /* Games */
  .games-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Steps */
  .steps-wrap { flex-direction: column; gap: 12px; }
  .step-arrow { transform: rotate(90deg); font-size: 1.5rem; }
  .step-card { max-width: 100%; width: 100%; }

  /* Offers */
  .offer-cards { grid-template-columns: 1fr; gap: 16px; }
  .offer-card-featured { transform: scale(1); }
  .offer-card-featured:hover { transform: translateY(-6px); }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-overall { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }
  .cta-slots-row { gap: 10px; font-size: 1.5rem; }

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

  /* Scroll top */
  .scroll-top { bottom: 80px; right: 16px; width: 52px; height: 52px; }

  /* Notif popup mobile */
  .notif-popup { left: 12px; right: 12px; bottom: 80px; max-width: 100%; width: calc(100% - 24px); }

  /* Main popup */
  .main-popup { padding: 32px 20px; }
  .popup-title { font-size: 1.4rem; }

  .countdown-num { font-size: 1.5rem; }
  .countdown-large .countdown-num { font-size: 2rem; }
}

@media (max-width: 480px) {
  .games-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 6px; font-size: 0.8rem; }
  .hero-trust span:nth-child(even) { display: none; }
  .btn-xl { padding: 16px 24px; font-size: 1rem; }
  .footer-legal { gap: 10px; }
  .cta-slots-row { display: none; }
}
