/* =============================================
   HOLLYWOOD CASINO - styles.css
   Mobile-First, Production-Ready
   ============================================= */

/* === CSS VARIABLES === */
:root {
  --gold: #FFD700;
  --gold-dark: #C9960A;
  --gold-light: #FFE55C;
  --red: #C0392B;
  --red-dark: #96200F;
  --dark: #0A0A0F;
  --dark-2: #13131C;
  --dark-3: #1C1C2E;
  --dark-card: #16162A;
  --light: #F5F0E8;
  --white: #FFFFFF;
  --text-muted: #A09080;
  --border: rgba(255,215,0,0.2);
  --shadow-gold: 0 0 30px rgba(255,215,0,0.3);
  --shadow-red: 0 0 30px rgba(192,57,43,0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }
h4 { font-size: clamp(1rem, 2.5vw, 1.3rem); }

p { color: rgba(245,240,232,0.85); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  min-height: 48px;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.03em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.btn:hover::before { transform: scaleX(1); }

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(192,57,43,0.6);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}
.btn-gold:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
  color: var(--dark);
}

.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
}

.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.05);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
  transform: scale(1.05);
}

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; min-height: 40px; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-xl { padding: 1.1rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* Mobile tap feedback */
@media (max-width: 768px) {
  .btn:active {
    transform: scale(0.98);
  }
}

/* === HEADER / NAV === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,15,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.navbar { width: 100%; }

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nav-logo:hover { color: var(--gold-light); }

.nav-links {
  display: none;
  list-style: none;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: rgba(245,240,232,0.8);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: var(--transition);
  display: block;
}
.nav-link:hover {
  color: var(--gold);
  background: rgba(255,215,0,0.08);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 48px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.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); }

/* Mobile Nav Dropdown */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10,10,15,0.98);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem;
  gap: 0.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-cta { display: none; }

@media (min-width: 992px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-cta { display: inline-flex; }
  .nav-links.open {
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
  }
}

/* === SECTION BASE === */
.section {
  padding: 5rem 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

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

.section-lead {
  max-width: 600px;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
}

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

@media (min-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .reverse-mobile { direction: ltr; }
}

/* === HERO === */
.hero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 1.25rem 4rem;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(192,57,43,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(255,215,0,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100,0,150,0.15) 0%, transparent 50%);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.35);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,215,0,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255,215,0,0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero-highlight {
  background: linear-gradient(135deg, var(--gold), #FF6B35, var(--gold));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
  display: inline-block;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(245,240,232,0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-timer {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.4);
  border-radius: var(--radius);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

.timer-label {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timer-display {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0,0,0,0.4);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  min-width: 64px;
}

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

.timer-unit small {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

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

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

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-trust span {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: bounce-down 1.5s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* Hero animated particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* === ABOUT SECTION === */
.about-section { background: var(--dark-3); }

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px var(--border);
}

.img-frame img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-frame:hover img { transform: scale(1.03); }

.img-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}

.img-frame-alt {
  border: 2px solid var(--border);
}

.img-badge-alt {
  left: auto;
  right: 1rem;
  bottom: 1rem;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}

.section-text h2 { margin-bottom: 1rem; }
.section-text p { margin-bottom: 1rem; }

.stats-row {
  display: flex;
  gap: 1.5rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,215,0,0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  min-width: 90px;
}

.stat-item strong {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
}

.stat-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* === GAMES SECTION === */
.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .games-grid { grid-template-columns: repeat(3, 1fr); }
}

.game-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), var(--shadow-gold);
}

.game-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,15,0.8) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1rem;
  font-size: 2rem;
}

.game-card-body {
  padding: 1.5rem;
}

.game-card-body h3 {
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.game-card-body p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

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

/* === SPORTSBOOK SECTION === */
.sportsbook-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

/* === DINING SECTION === */
.dining-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .dining-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .dining-grid { grid-template-columns: repeat(4, 1fr); }
}

.dining-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dining-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  border-color: rgba(255,215,0,0.4);
}

.dining-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.dining-card h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.dining-card p { font-size: 0.88rem; }

/* === REWARDS SECTION === */
.rewards-section {
  background: var(--dark-3);
}

.rewards-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .rewards-inner { grid-template-columns: 1.5fr 1fr; }
}

.rewards-text h2 { margin-bottom: 1rem; }

.reward-card-inner {
  background: linear-gradient(135deg, var(--dark-card), var(--dark-2));
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.reward-card-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,215,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.reward-card-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}

.reward-card-inner h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.reward-card-pts {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.reward-card-inner ul {
  text-align: left;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.reward-card-inner ul li {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
}

/* === REVIEWS SECTION === */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  border-color: rgba(255,215,0,0.35);
}

.review-stars { font-size: 1.1rem; }

.review-card blockquote {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.85);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}

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

.review-card footer strong {
  display: block;
  color: var(--gold);
  font-size: 0.9rem;
}

.review-card footer span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* === HOW IT WORKS / STEPS === */
.steps-section { background: var(--dark); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 600px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step-item {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.step-item:hover { transform: translateY(-5px); }

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

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

.step-item h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.step-item p { font-size: 0.87rem; }

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

/* === FAQ SECTION === */
.faq-container { max-width: 800px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-align: left;
  min-height: 56px;
  transition: var(--transition);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
  font-style: normal;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.25rem;
}

.faq-answer.open {
  max-height: 400px;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer p { font-size: 0.9rem; color: rgba(245,240,232,0.8); }

/* === FINAL CTA === */
.final-cta-section {
  position: relative;
  background: linear-gradient(135deg, rgba(192,57,43,0.25) 0%, var(--dark) 50%, rgba(255,215,0,0.08) 100%);
  border-top: 1px solid rgba(192,57,43,0.3);
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.25rem;
}

.final-cta-sub {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: rgba(245,240,232,0.8);
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.final-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === FOOTER === */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}

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

@media (min-width: 600px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-nav h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: var(--font-head);
}

.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-cta h4 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-head);
}

.footer-cta p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.footer-disclaimer a {
  color: var(--red);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 1.25rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(192,57,43,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover { transform: translateY(-3px) scale(1.08); }

/* === PURCHASE NOTIFICATION === */
.notif-popup {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 800;
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6);
  max-width: calc(100vw - 2rem);
  width: 320px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  pointer-events: all;
}

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

.notif-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
}

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

.notif-text {
  flex: 1;
  min-width: 0;
}

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

.notif-text span {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.75);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
  flex-shrink: 0;
}

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

/* === EXIT POPUP === */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.popup-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.popup-box {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), var(--shadow-gold);
  position: relative;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.popup-overlay.open .popup-box {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

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

.popup-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  animation: pulse-border 1.5s ease-in-out infinite;
}

.popup-box h2 {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  margin-bottom: 0.75rem;
}

.popup-box p {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.8);
  margin-bottom: 1.25rem;
}

.popup-timer-wrap {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.popup-timer-wrap span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.popup-timer {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
}

.popup-cta {
  display: block;
  margin-bottom: 0.75rem;
}

.popup-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up-anim 0.8s ease forwards;
}

@keyframes fade-up-anim {
  to { opacity: 1; transform: translateY(0); }
}

.delay-1 { animation-delay: 0.15s; transition-delay: 0.1s; }
.delay-2 { animation-delay: 0.3s; transition-delay: 0.2s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.3s; }
.delay-4 { animation-delay: 0.6s; transition-delay: 0.4s; }
.delay-5 { animation-delay: 0.75s; transition-delay: 0.5s; }

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .fade-up { opacity: 1; transform: none; }
}

/* === RESPONSIVE MOBILE === */
@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .hero { padding: 6rem 1.25rem 3rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; }
  .stats-row { justify-content: center; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .final-cta-btns .btn { width: 100%; max-width: 320px; }
  .notif-popup { left: 0.5rem; right: 0.5rem; width: auto; max-width: none; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.45rem; }
  .timer-unit span { font-size: 1.5rem; }
  .timer-unit { min-width: 52px; padding: 0.4rem 0.75rem; }
}
