/* ══════════════════════════════════════════════════════════
   GTA VI COUNTDOWN — style.css
   Palette: void-black · deep-navy · neon-pink · gold · silver
   ══════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --black: #0a0a0f;
  --navy: #0d0d1a;
  --card: #111120;
  --border: #1e1e3a;
  --pink: #ff2d55;
  --pink-dim: #c4103a;
  --gold: #ff9500;
  --gold-dim: #cc7700;
  --silver: #b0b0c8;
  --white: #f0f0ff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-ui: 'Rajdhani', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-pink: 0 0 20px rgba(255, 45, 85, 0.7), 0 0 60px rgba(255, 45, 85, 0.3);
  --glow-gold: 0 0 20px rgba(255, 149, 0, 0.7), 0 0 60px rgba(255, 149, 0, 0.3);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

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

/* ─── UTILITY ─────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

.section-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--silver);
  font-size: 1rem;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--glow-pink);
}

.btn-primary:hover {
  background: var(--pink-dim);
  box-shadow: 0 0 40px rgba(255, 45, 85, 0.9), 0 0 80px rgba(255, 45, 85, 0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--silver);
}

.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--white);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* ─── NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-vi {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--pink);
  text-shadow: var(--glow-pink);
  line-height: 1;
}

.logo-text {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--silver);
  line-height: 1;
  padding-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  transition: color var(--transition);
}

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

/* Wanted Stars */
.wanted-stars {
  display: flex;
  gap: 4px;
  margin-left: 24px;
}

.wanted-stars span {
  font-size: 1rem;
  color: #333;
  transition: color 0.3s, text-shadow 0.3s;
}

.wanted-stars span.lit {
  color: var(--gold);
  text-shadow: var(--glow-gold);
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  /* Added extra bottom padding to secure layout room */
  overflow: hidden;
}

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

/* Animated city grid */
.city-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 45, 85, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 45, 85, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
  transform-origin: center;
}

@keyframes gridDrift {
  0% {
    transform: perspective(600px) rotateX(30deg) translateY(0);
  }

  100% {
    transform: perspective(600px) rotateX(30deg) translateY(60px);
  }
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.15) 2px,
      rgba(0, 0, 0, 0.15) 4px);
  pointer-events: none;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 45, 85, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(255, 149, 0, 0.08) 0%, transparent 60%),
    linear-gradient(to bottom, var(--black) 0%, rgba(10, 10, 15, 0.4) 50%, var(--black) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
  /* Prevents text elements overlapping the absolute scroll indicator */
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.85;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.title-gta {
  display: block;
  font-size: clamp(5rem, 18vw, 14rem);
  color: var(--white);
  letter-spacing: 0.02em;
}

.title-vi {
  display: block;
  font-size: clamp(6rem, 22vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 3px var(--pink);
  text-shadow: var(--glow-pink);
  letter-spacing: -0.02em;
  animation: flicker 4s ease-in-out 2s infinite;
}

@keyframes flicker {

  0%,
  94%,
  96%,
  100% {
    opacity: 1;
  }

  95% {
    opacity: 0.4;
  }
}

.hero-tagline {
  font-family: var(--font-ui);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-sub {
  color: var(--silver);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.scroll-indicator {
  position: absolute;
  bottom: 12px;
  /* Pushed lower towards the edge of the viewport */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--silver);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  animation: pulse 2s ease-in-out infinite;
  z-index: 2;
}

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

@keyframes arrowBounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── COUNTDOWN ───────────────────────────────────────── */
.countdown-section {
  padding: 100px 24px;
  text-align: center;
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(255, 45, 85, 0.06) 0%, transparent 70%),
    var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.countdown-section .section-eyebrow {
  font-size: 0.9rem;
  margin-bottom: 48px;
}

.timer-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.timer-digit {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 1;
  color: var(--white);
  text-shadow:
    0 0 10px rgba(255, 45, 85, 0.9),
    0 0 30px rgba(255, 45, 85, 0.6),
    0 0 80px rgba(255, 45, 85, 0.3);
  letter-spacing: 0.02em;
  transition: transform 0.15s ease;
  min-width: 2ch;
  display: inline-block;
}

.timer-digit.tick {
  transform: scale(1.04);
}

.timer-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--pink);
  margin-top: 8px;
}

.timer-sep {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--pink);
  text-shadow: var(--glow-pink);
  line-height: 1;
  align-self: flex-start;
  padding-top: 8px;
  animation: colonBlink 1s step-end infinite;
}

@keyframes colonBlink {

  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0.2;
  }
}

.release-note {
  color: var(--silver);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

.release-note strong {
  color: var(--gold);
}

/* ─── AFFILIATE ───────────────────────────────────────── */
.affiliate-section {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--black);
}

.affiliate-inner {
  position: relative;
  z-index: 1;
}

.affiliate-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.affiliate-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.affiliate-desc {
  color: var(--silver);
  margin-bottom: 36px;
  font-size: 1rem;
}

.btn-buy {
  background: linear-gradient(135deg, var(--gold) 0%, var(--pink) 100%);
  color: var(--white);
  font-size: 1.1rem;
  padding: 18px 48px;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(255, 149, 0, 0.4), 0 0 60px rgba(255, 45, 85, 0.2);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.btn-buy:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 149, 0, 0.7), 0 0 100px rgba(255, 45, 85, 0.4);
}

.btn-icon {
  font-size: 1.2em;
}

.btn-arrow {
  margin-left: 4px;
  transition: transform 0.3s;
}

.btn-buy:hover .btn-arrow {
  transform: translateX(4px);
}

.affiliate-disclaimer {
  margin-top: 16px;
  font-size: 0.75rem;
  color: #555;
}

.affiliate-disclaimer code {
  color: var(--gold);
}

.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.deco-ring-1 {
  width: 500px;
  height: 500px;
  border-color: rgba(255, 149, 0, 0.06);
  animation: ringPulse 3s ease-in-out infinite;
}

.deco-ring-2 {
  width: 700px;
  height: 700px;
  border-color: rgba(255, 45, 85, 0.04);
  animation: ringPulse 3s ease-in-out 1.5s infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

/* ─── NEWS ────────────────────────────────────────────── */
.news-section {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.news-refresh-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--silver);
}

.refresh-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 45, 85, 0.7);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 45, 85, 0);
  }
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--pink);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(255, 45, 85, 0.12);
}

.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--border);
}

.news-card-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--card) 0%, #1a1a30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card-source {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--pink);
  text-transform: uppercase;
}

.news-card-title {
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--white);
  flex: 1;
}

.news-card-date {
  font-size: 0.75rem;
  color: var(--silver);
}

.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 4px;
  transition: gap var(--transition);
}

.news-card-link:hover {
  gap: 10px;
}

/* Skeletons */
.news-skeleton {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  height: 320px;
  background: linear-gradient(90deg, var(--card) 25%, #181828 50%, var(--card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

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

  100% {
    background-position: -200% 0;
  }
}

/* ─── COMMENTS ────────────────────────────────────────── */
.comments-section {
  padding: 100px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.auth-block {
  max-width: 680px;
  margin: 0 auto 56px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
}

.auth-prompt {
  text-align: center;
  color: var(--silver);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.auth-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-auth {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.btn-google {
  background: #1a1a2e;
}

.btn-google:hover {
  background: #252540;
  border-color: #4285F4;
}

.btn-facebook {
  background: #1a1a2e;
}

.btn-facebook:hover {
  background: #252540;
  border-color: #1877F2;
}

.btn-auth-soon {
  opacity: 0.65;
  position: relative;
}

.btn-auth-soon:hover {
  opacity: 0.85;
}

.btn-auth-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 2px 7px;
  border-radius: 3px;
  margin-left: 2px;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  object-fit: cover;
}

.user-name {
  font-family: var(--font-ui);
  font-weight: 600;
  flex: 1;
}

.btn-signout {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--silver);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 4px;
  transition: all var(--transition);
}

.btn-signout:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.comment-composer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comment-input {
  width: 100%;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px;
  resize: vertical;
  transition: border-color var(--transition);
  outline: none;
}

.comment-input:focus {
  border-color: var(--pink);
}

.comment-input::placeholder {
  color: #555;
}

.composer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.char-count {
  font-size: 0.75rem;
  color: #555;
}

/* Comment list */
.comment-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comments-loading {
  text-align: center;
  color: var(--silver);
  padding: 40px;
}

.comment-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  transition: border-color var(--transition);
}

.comment-card:hover {
  border-color: rgba(255, 45, 85, 0.3);
}

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

.comment-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.comment-meta {
  flex: 1;
}

.comment-author {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
}

.comment-time {
  font-size: 0.75rem;
  color: var(--silver);
}

.comment-body {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.comment-actions {
  display: flex;
  gap: 16px;
}

.comment-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--silver);
  transition: color var(--transition);
  padding: 4px 0;
}

.comment-action-btn:hover {
  color: var(--pink);
}

.comment-action-btn.liked {
  color: var(--pink);
}

/* Reply section */
.reply-list {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reply-card {
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.reply-card .comment-author {
  color: var(--silver);
  font-size: 0.85rem;
}

.reply-card .comment-body {
  font-size: 0.9rem;
}

.reply-composer {
  margin-top: 12px;
  display: none;
}

.reply-composer.open {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.reply-input {
  flex: 1;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 10px 14px;
  resize: none;
  outline: none;
  transition: border-color var(--transition);
  height: 60px;
}

.reply-input:focus {
  border-color: var(--pink);
}

.no-comments {
  text-align: center;
  color: var(--silver);
  padding: 48px 24px;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* ─── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 64px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.footer-brand p {
  color: var(--silver);
  font-size: 0.875rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-links h4,
.footer-social h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--silver);
  font-size: 0.875rem;
  transition: color var(--transition);
}

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

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 0.8rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--silver);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer-disclaimer {
  color: #444;
  font-size: 0.75rem;
  max-width: 700px;
  line-height: 1.6;
}

.footer-copy {
  color: #333;
  font-size: 0.75rem;
}

/* ─── EASTER EGG: POLICE SCANNER TOGGLE ──────────────── */
.scanner-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scanner-toggle:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: scale(1.1);
}

.scanner-toggle.active {
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .timer-grid {
    gap: 0;
  }

  .timer-block {
    padding: 0 10px;
  }

  .timer-sep {
    font-size: clamp(2rem, 8vw, 4rem);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .auth-btns {
    flex-direction: column;
    align-items: stretch;
  }

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

  .title-vi {
    -webkit-text-stroke-width: 2px;
  }
}

@media (max-width: 480px) {
  .timer-block {
    padding: 0 6px;
  }

  .btn-buy {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .affiliate-section {
    padding: 60px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── SEO Section ─────────────────────────────────────────── */
.seo-section {
  background: #0a0a0a;
  padding: 48px 0;
  border-top: 1px solid #1a1a1a;
}

.seo-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #555;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.seo-section p {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 800px;
}

.seo-section strong {
  color: #555;
}

/* ── Coming Soon Toast ───────────────────────────────────── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translate(-50%, 20px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--gold);
  box-shadow: 0 0 30px rgba(255, 149, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.5);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-width: 90vw;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.toast-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.toast strong {
  color: var(--gold);
}

@media (max-width: 480px) {
  .toast {
    bottom: 20px;
    padding: 12px 16px;
    font-size: 0.85rem;
  }
}

/* When the scanner is active, give it a flashing siren glow */
.scanner-toggle.active {
  animation: police-siren 1s infinite alternate;
}

@keyframes police-siren {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8), 0 0 20px rgba(255, 0, 0, 0.4);
    background-color: #ff3333;
  }

  100% {
    box-shadow: 0 0 10px rgba(0, 0, 255, 0.8), 0 0 20px rgba(0, 0, 255, 0.4);
    background-color: #3333ff;
  }
}