/* ============================================
   W88 Landing Page — Luxury Dark Casino
   ============================================ */

/* --- CSS Custom Properties (Registered) --- */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

/* --- Design Tokens --- */
:root {
  /* Base */
  --bg-primary: #0a0a0f;
  --bg-secondary: #0f1023;
  --bg-card: rgba(15, 16, 35, 0.65);
  --bg-card-hover: rgba(20, 22, 50, 0.8);

  /* Gold System */
  --gold: #d4af37;
  --gold-light: #f5d76e;
  --gold-dark: #a07c1c;
  --gold-glow: rgba(212, 175, 55, 0.35);

  /* Accents */
  --blue: #00b4ff;
  --blue-glow: rgba(0, 180, 255, 0.3);
  --purple: #8b5cf6;
  --purple-glow: rgba(139, 92, 246, 0.3);
  --green: #00ff88;
  --green-glow: rgba(0, 255, 136, 0.3);
  --red: #ff3366;

  /* Text */
  --text-primary: #f0ece2;
  --text-secondary: rgba(240, 236, 226, 0.7);
  --text-muted: rgba(240, 236, 226, 0.45);

  /* Spacing */
  --section-pad: clamp(3rem, 8vw, 7rem);
  --card-pad: clamp(1.5rem, 3vw, 2.5rem);
  --container-max: 1200px;

  /* Misc */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-btn: 50px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Prompt', 'Noto Sans Thai', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

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

/* --- Background Noise Texture Overlay --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 9999;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* --- Gold Shimmer Text --- */
.text-gold {
  background: linear-gradient(
    120deg,
    var(--gold-dark) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold-dark) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 36px;
  width: auto;
  transition: var(--transition-fast);
}

.logo:hover {
  filter: brightness(1.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--gold-light);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* ============================================
   CTA BUTTON
   ============================================ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: var(--radius-btn);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  letter-spacing: 0.03em;
  box-shadow:
    0 4px 20px var(--gold-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.btn-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 35px var(--gold-glow),
    0 0 60px rgba(212, 175, 55, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta:hover::before {
  left: 120%;
}

.btn-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Header CTA (smaller) */
.btn-cta--sm {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Secondary / outline variant */
.btn-cta--outline {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-cta--outline:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--bg-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 1rem 4rem;
}

/* Animated gradient background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 180, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  animation: gradient-shift 12s ease-in-out infinite alternate;
}

/* Decorative grid lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--radius-btn);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: glow-pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: scale-in 0.9s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1rem);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.countdown-value {
  position: relative;
  width: clamp(56px, 10vw, 76px);
  height: clamp(56px, 10vw, 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  color: var(--text-primary);
  background: rgba(15, 16, 35, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-sm);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-variant-numeric: tabular-nums;
}

/* Gold glow pulse on the countdown boxes */
.countdown-value::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), transparent 60%);
  pointer-events: none;
}

.countdown-text {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.countdown-sep {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.2rem;
  animation: glow-pulse 2s ease-in-out infinite;
}

/* Digit flip micro-animation */
.countdown-value.tick {
  animation: digit-tick 0.3s ease-out;
}

@keyframes digit-tick {
  0% { transform: scale(1); }
  40% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Floating decorative orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-orb--1 {
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.06);
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 180, 255, 0.05);
  bottom: 15%;
  left: -3%;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.05);
  top: 30%;
  left: 10%;
  animation-delay: -5s;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
}

/* ============================================
   PROMO CARDS GRID
   ============================================ */
.promos {
  padding: var(--section-pad) 0;
  position: relative;
}

/* Subtle divider glow between hero and promos */
.promos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.promos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2rem);
}

/* --- Individual Promo Card --- */
.promo-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 0;
  transition: var(--transition);
  overflow: hidden;

  /* Scroll reveal initial state */
  opacity: 0;
  transform: translateY(40px);
}

.promo-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Staggered delays */
.promo-card:nth-child(1).visible { transition-delay: 0s; }
.promo-card:nth-child(2).visible { transition-delay: 0.12s; }
.promo-card:nth-child(3).visible { transition-delay: 0.24s; }
.promo-card:nth-child(4).visible { transition-delay: 0.36s; }

.promo-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Card inner glow (top highlight) */
.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* Accent glow blob per card */
.promo-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0.5;
}

.promo-card:hover::after {
  opacity: 0.8;
}

/* Card accent colors — glow blob */
.promo-card--blue::after { background: var(--blue-glow); }
.promo-card--gold::after { background: var(--gold-glow); }
.promo-card--purple::after { background: var(--purple-glow); }
.promo-card--green::after { background: var(--green-glow); }

/* Card accent top border strip */
.promo-card--blue { border-top: 3px solid var(--blue); }
.promo-card--gold { border-top: 3px solid var(--gold); }
.promo-card--purple { border-top: 3px solid var(--purple); }
.promo-card--green { border-top: 3px solid var(--green); }
.promo-card--featured { border-top: none; }

/* Card hover colored shadow */
.promo-card--blue:hover {
  box-shadow: 0 12px 40px rgba(0, 180, 255, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
}
.promo-card--gold:hover {
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
}
.promo-card--purple:hover {
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
}
.promo-card--featured:hover {
  box-shadow: 0 16px 50px rgba(0, 255, 136, 0.12), 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Card banner image */
.promo-banner {
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.promo-banner img {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-card:hover .promo-banner img {
  transform: scale(1.06);
}

/* Gradient fade at bottom of banner */
.promo-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  pointer-events: none;
}

.promo-body {
  padding: var(--card-pad);
  padding-top: 1.25rem;
}

/* Featured card banner */
.promo-banner--featured {
  border-radius: calc(var(--radius) - 6px) calc(var(--radius) - 6px) 0 0;
}

.promo-banner--featured img {
  aspect-ratio: 3 / 1;
}

.promo-banner--featured::after {
  height: 100px;
  background: linear-gradient(to top, var(--bg-secondary), transparent);
}

/* Badge: สมาชิกใหม่ */
.promo-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-btn);
  margin-bottom: 1rem;
}

.promo-card--blue .promo-badge {
  color: var(--blue);
  background: rgba(0, 180, 255, 0.1);
  border: 1px solid rgba(0, 180, 255, 0.2);
}

.promo-card--gold .promo-badge {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.promo-card--purple .promo-badge {
  color: var(--purple);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.promo-card--green .promo-badge {
  color: var(--green);
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.2);
}

.promo-title {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.promo-highlight {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.promo-card--blue .promo-highlight { color: var(--blue); }
.promo-card--gold .promo-highlight { color: var(--gold-light); }
.promo-card--purple .promo-highlight { color: var(--purple); }
.promo-card--green .promo-highlight { color: var(--green); }

.promo-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* Card-specific CTA color overrides */
.promo-card--blue .btn-cta {
  background: linear-gradient(135deg, #00d4ff, var(--blue), #0088cc);
}

.promo-card--purple .btn-cta {
  background: linear-gradient(135deg, #a78bfa, var(--purple), #6d28d9);
}

.promo-card--green .btn-cta {
  background: linear-gradient(135deg, #34ffaa, var(--green), #00cc66);
}

/* ============================================
   FIFA WORLD CUP FEATURED CARD
   ============================================ */
.promo-card--featured {
  grid-column: 1 / -1;
  position: relative;
  background: var(--bg-card);
  border: none;
  padding: 3px; /* space for animated border */
}

.promo-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: conic-gradient(
    from var(--border-angle),
    var(--green) 0%,
    var(--gold) 25%,
    var(--blue) 50%,
    var(--gold) 75%,
    var(--green) 100%
  );
  z-index: -1;
  animation: rotate-border 4s linear infinite;
}

.promo-card--featured > .promo-card-inner {
  background: var(--bg-secondary);
  border-radius: calc(var(--radius) - 3px);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.promo-card--featured .promo-body {
  padding: var(--card-pad);
  padding-top: 1.5rem;
}

/* Override the default ::after glow for featured */
.promo-card--featured::after {
  display: none;
}

.promo-card--featured .promo-card-inner::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background: var(--green-glow);
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

/* ============================================
   REGISTER CTA SECTION
   ============================================ */
.register-cta {
  text-align: center;
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.register-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.register-cta .container {
  position: relative;
  z-index: 1;
}

.register-cta .section-title {
  margin-bottom: 1rem;
}

.register-cta .register-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.register-cta .btn-cta {
  font-size: 1.15rem;
  padding: 1rem 3rem;
}

/* Scroll reveal for register section */
.register-cta {
  opacity: 0;
  transform: translateY(30px);
}

.register-cta.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Gold line separator above register */
.register-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  height: 28px;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
}

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

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 4px currentColor;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 12px currentColor, 0 0 24px currentColor;
    opacity: 0.7;
  }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(15px, -20px) rotate(2deg); }
  66% { transform: translate(-10px, 10px) rotate(-1deg); }
}

@keyframes gradient-shift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.05) translate(-1%, 2%); }
}

@keyframes rotate-border {
  to { --border-angle: 360deg; }
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet+ */
@media (min-width: 768px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-toggle { display: none !important; }
}

/* Mobile nav */
@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .promos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens */
@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .promo-card,
  .register-cta {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.5);
}

/* ============================================
   SPARKLE DECORATIONS
   ============================================ */
.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
  pointer-events: none;
}

.sparkle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 60%; right: 15%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { bottom: 25%; left: 30%; animation-delay: 1s; }
.sparkle:nth-child(4) { top: 40%; right: 25%; animation-delay: 1.5s; }

/* Slot reel spinning icon */
.slot-spin {
  display: inline-block;
  animation: spin-slow 3s linear infinite;
}
