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

:root {
  --navy:      #0a3161;
  --navy-dark: #061d3a;
  --red:       #b31942;
  --red-dark:  #8e1434;
  --gold:      #f8c400;
  --sol-purple:#9945FF;
  --sol-green: #14F195;
  --white:     #ffffff;
  --off-white: #f4f6f9;
  --text:      #111827;
  --text-muted:#6b7280;
  --radius:    10px;
  --shadow-sm: 0 1px 6px rgba(0,0,0,0.08);
  --shadow:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ─── Typography ─────────────────────────────────────────────── */
.section-title {
  font-family: 'Exo', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title.white { color: var(--white); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-sub.white-sub { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(179,25,66,0.4);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(179,25,66,0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.8); }
.btn-sm {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  transition: background 0.2s;
  margin-top: 0.75rem;
}
.btn-sm:hover { background: #0d4080; }
.btn-spotify {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1db954;
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  box-shadow: 0 4px 14px rgba(29,185,84,0.35);
  transition: background 0.2s, transform 0.15s;
}
.btn-spotify:hover { background: #17a34a; transform: translateY(-2px); }
.btn-spotify-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1db954;
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(29,185,84,0.4);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.btn-spotify-hero:hover { background: #17a34a; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(29,185,84,0.5); }

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 8px rgba(248,196,0,0.3));
}
.nav-logo-text {
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.nav-buy-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 0.4rem 1.1rem !important;
  font-weight: 700 !important;
  font-family: 'Exo', sans-serif !important;
  font-size: 0.82rem !important;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 10px rgba(179,25,66,0.35);
}
.nav-buy-btn:hover { background: var(--red-dark) !important; transform: translateY(-1px); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.nav-links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Socials dropdown */
.nav-socials-dropdown { position: relative; }
.nav-socials-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-socials-btn:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.socials-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  min-width: 165px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  overflow: hidden;
  animation: dropIn 0.15s ease;
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.socials-dropdown.open { display: block; }
.socials-dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: background 0.15s, color 0.15s;
}
.socials-dropdown li a:hover { background: var(--red); color: var(--white); }
.social-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 3px;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.25rem;
}

/* ─── Merch Banner ───────────────────────────────────────────── */
.merch-banner {
  background: var(--gold);
  color: var(--navy-dark);
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.55rem 1rem;
  letter-spacing: 0.06em;
}

/* ─── Marquee ────────────────────────────────────────────────── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--sol-purple), var(--red), var(--sol-purple));
  background-size: 200% 100%;
  animation: marqueeBarShift 6s linear infinite;
  overflow: hidden;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
@keyframes marqueeBarShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.5rem;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 65% 50%, rgba(153,69,255,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 60%, rgba(10,49,97,0.5) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(20,241,149,0.08) 0%, transparent 40%),
    linear-gradient(160deg, rgba(6,29,58,0.92) 0%, rgba(10,42,85,0.86) 45%, rgba(7,20,40,0.95) 100%),
    url('images/hero-bg.png') center/cover no-repeat;
  color: var(--white);
  padding: 5rem 1.5rem 5rem;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 10% 20%, rgba(255,255,255,0.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 65%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 12%, rgba(248,196,0,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 75%, rgba(255,255,255,0.35) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 90% 20%, rgba(255,255,255,0.4) 0%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
/* ── Left: Text ── */
.hero-text { display: flex; flex-direction: column; align-items: flex-start; }
.hero-pills-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(248,196,0,0.15);
  border: 1px solid rgba(248,196,0,0.4);
  color: var(--gold);
  border-radius: 50px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.usa-pill {
  background: linear-gradient(135deg, rgba(179,25,66,0.25), rgba(10,49,97,0.35));
  border-color: rgba(179,25,66,0.5);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(179,25,66,0.2);
}
.solana-pill {
  background: linear-gradient(135deg, rgba(153,69,255,0.2), rgba(20,241,149,0.15));
  border-color: rgba(153,69,255,0.5);
  color: #14F195;
}
.hero-title {
  font-family: 'Exo', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4), 0 0 60px rgba(255,255,255,0.06);
}
.hero-title .accent {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(248,196,0,0.6), 0 0 60px rgba(248,196,0,0.3);
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(248,196,0,0.6), 0 0 60px rgba(248,196,0,0.3); }
  50%       { text-shadow: 0 0 30px rgba(248,196,0,0.9), 0 0 90px rgba(248,196,0,0.5); }
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  line-height: 1.65;
  max-width: 440px;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
/* ── Right: Coin ── */
.hero-coin {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.coin-ring {
  width: clamp(260px, 38vw, 420px);
  height: clamp(260px, 38vw, 420px);
  border-radius: 50%;
  border: 3px solid rgba(248,196,0,0.5);
  box-shadow:
    0 0 0 8px rgba(248,196,0,0.08),
    0 0 40px rgba(248,196,0,0.35),
    0 0 90px rgba(153,69,255,0.25),
    0 0 160px rgba(20,241,149,0.12);
  animation: coinFloat 4s ease-in-out infinite, coinGlowCycle 6s ease-in-out infinite;
  overflow: hidden;
  flex-shrink: 0;
}
@keyframes coinGlowCycle {
  0%, 100% { box-shadow: 0 0 0 8px rgba(248,196,0,0.08), 0 0 40px rgba(248,196,0,0.35), 0 0 90px rgba(153,69,255,0.25), 0 0 160px rgba(20,241,149,0.12); }
  50%       { box-shadow: 0 0 0 8px rgba(248,196,0,0.12), 0 0 60px rgba(248,196,0,0.5),  0 0 120px rgba(153,69,255,0.35), 0 0 200px rgba(20,241,149,0.18); }
}
.coin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coin-glow {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,196,0,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
.ca-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}
.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.55rem 1rem;
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ca-box:hover {
  border-color: rgba(20,241,149,0.5);
  background: rgba(20,241,149,0.06);
}
.ca-copy-icon {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: color 0.2s;
}
.ca-box:hover .ca-copy-icon { color: #14F195; }
.ca-label { color: var(--gold); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.ca-address { font-family: monospace; color: rgba(255,255,255,0.75); font-size: 0.72rem; word-break: break-all; }
.ca-copy {
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0.15rem 0.4rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.ca-copy:hover { background: rgba(255,255,255,0.2); }
.ca-copy-msg { font-size: 0.8rem; color: var(--gold); height: 1em; opacity: 0; transition: opacity 0.2s; }
.ca-copy-msg.show { opacity: 1; }
/* Red/Blue stripes decorative */
.hero-stripes {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 33%, var(--gold) 66%, var(--sol-purple) 100%);
  background-size: 200% 100%;
  animation: stripeScroll 4s linear infinite;
  opacity: 0.9;
}
@keyframes stripeScroll {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ─── Countdown ──────────────────────────────────────────────── */
.countdown-section {
  background: linear-gradient(135deg, #06111f 0%, var(--navy-dark) 40%, #0a0f2e 100%);
  border-top: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  padding: 4.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(179,25,66,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(153,69,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.countdown-section .section-title.white {
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}
.countdown-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.countdown-box {
  background: rgba(0,0,0,0.5);
  border: 2px solid rgba(179,25,66,0.4);
  border-radius: 12px;
  padding: 1.2rem 1.6rem;
  min-width: 100px;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 20px rgba(179,25,66,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.countdown-box:hover {
  border-color: rgba(248,196,0,0.6);
  box-shadow: 0 0 30px rgba(248,196,0,0.2);
}
.countdown-num {
  display: block;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 0 20px rgba(248,196,0,0.5);
}
.countdown-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.3rem;
}
.countdown-sep {
  font-family: 'Exo', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  padding-bottom: 1.8rem;
  line-height: 1;
}
.countdown-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.countdown-done {
  font-family: 'Exo', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--gold);
  text-shadow: 0 0 30px rgba(248,196,0,0.6);
  animation: glow 2s ease-in-out infinite alternate;
}
@keyframes glow {
  from { text-shadow: 0 0 20px rgba(248,196,0,0.4); }
  to   { text-shadow: 0 0 40px rgba(248,196,0,0.8); }
}

/* ─── Sections ───────────────────────────────────────────────── */
.section { padding: 5.5rem 1.5rem; }
.bg-light { background: var(--off-white); }
.bg-navy  { background: var(--navy-dark); }

/* ─── Spotify Embed ──────────────────────────────────────────── */
.spotify-embed-wrap {
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ─── Swap Section ───────────────────────────────────────────── */
.swap-section {
  background: linear-gradient(160deg, #071428 0%, #0a3161 100%);
  padding: 5rem 1.5rem;
}
.jupiter-wrap {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 50px rgba(0,0,0,0.5);
  background: #131320;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.jupiter-fallback { text-align: center; padding: 3rem 2rem; color: rgba(255,255,255,0.5); }
.jupiter-fallback a { display: inline-block; margin-top: 1rem; color: var(--gold); font-weight: 700; text-decoration: underline; }

/* ─── How to Buy ─────────────────────────────────────────────── */
.platform-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.platform-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.platform-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--navy); }
.platform-logo {
  height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.platform-card h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.platform-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 1.3rem;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.step:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a5fa8 100%);
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10,49,97,0.3);
}
.step-content h4 { font-family: 'Exo', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.35rem; }
.step-content p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.step-content p + p { margin-top: 0.4rem; }
.step-ca { margin-top: 0.4rem; font-size: 0.78rem; color: var(--text-muted); }
.inline-ca { font-family: monospace; font-size: 0.72rem; background: #f3f4f6; padding: 0.1rem 0.35rem; border-radius: 3px; word-break: break-all; }

/* ─── Tokenomics ─────────────────────────────────────────────── */
.tokenomics-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.token-bars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.token-bar-item { display: flex; flex-direction: column; gap: 0.5rem; }
.token-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.token-bar-icon-label { display: flex; align-items: center; gap: 0.6rem; }
.token-bar-icon-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 6px;
}
.token-bar-label { font-family: 'Exo', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); }
.token-bar-pct { font-family: 'Exo', sans-serif; font-weight: 900; font-size: 1.4rem; color: var(--navy); }
.token-bar-track {
  height: 14px;
  background: #e5e7eb;
  border-radius: 50px;
  overflow: hidden;
}
.token-bar-fill {
  height: 100%;
  border-radius: 50px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
  width: 0;
}
.token-bar-fill.navy { background: linear-gradient(90deg, var(--navy) 0%, #1a6abf 100%); }
.token-bar-fill.red  { background: linear-gradient(90deg, var(--red) 0%, #e8426a 100%); }
.token-bar-fill.gold { background: linear-gradient(90deg, #c49b00 0%, var(--gold) 100%); }
.token-bar-desc { font-size: 0.84rem; color: var(--text-muted); }
.token-supply-note {
  text-align: center;
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  border-radius: 12px;
  padding: 1.25rem 2rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.token-supply-note strong { color: var(--gold); }

/* ─── Roadmap ────────────────────────────────────────────────── */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.roadmap-phase {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.roadmap-phase:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.phase-img {
  background: var(--navy-dark);
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.phase-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.phase-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(248,196,0,0.1) 0%, transparent 70%);
}
.phase-img-3  { background: linear-gradient(135deg, var(--red-dark) 0%, #c41e4a 100%); }
.phase-img-4  { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
.phase-body { padding: 1.5rem; flex: 1; }
.phase-badge {
  display: inline-block;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-1 { background: rgba(10,49,97,0.12); color: var(--navy); }
.badge-2 { background: rgba(10,49,97,0.12); color: var(--navy); }
.badge-3 { background: rgba(179,25,66,0.12); color: var(--red); }
.badge-4 { background: rgba(124,58,237,0.12); color: #7c3aed; }
.roadmap-phase h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.roadmap-phase ul { display: flex; flex-direction: column; gap: 0.6rem; }
.roadmap-phase ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
  line-height: 1.45;
}
.roadmap-phase ul li::before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.roadmap-phase ul li strong { color: var(--text); }
.phase-intro { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.5; }
.phase-4-card { grid-column: 1 / -1; }
.phase-4-card .phase-milestones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.milestone {
  background: var(--off-white);
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(248,196,0,0.3);
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.milestone-banner {
  width: 100%;
  height: 60px;
  object-fit: cover;
  display: block;
}
.milestone-body {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
}
.milestone-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.milestone-text { flex: 1; }
.milestone strong { display: block; color: var(--navy); font-family: 'Exo', sans-serif; font-weight: 700; margin-bottom: 0.25rem; }

/* ─── About (legacy, unused) ─────────────────────────────────── */
.stat-card {
  background: var(--white);
  border: 2px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.4rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.stat-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.stat-num {
  display: block;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
}
.stat-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 0.3rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

/* ─── News ───────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.news-card {
  background: var(--white);
  border: 1px solid rgba(10,49,97,0.15);
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
}
.news-card:hover {
  box-shadow: var(--shadow), 0 0 24px rgba(10,49,97,0.12);
  transform: translateY(-5px);
  border-color: var(--navy);
}
.news-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.news-card h4 { font-family: 'Exo', sans-serif; font-weight: 700; font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.news-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

/* ─── Exchanges ──────────────────────────────────────────────── */
.exchanges {
  background: var(--navy-dark);
  padding: 3.5rem 1.5rem;
}
.exchange-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.exchange-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  font-family: 'Exo', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.exchange-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.exchange-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255,255,255,0.9);
  padding: 2px 4px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.footer { background: #040f1e; color: rgba(255,255,255,0.75); padding: 4rem 1.5rem 2.5rem; }
.footer-simple {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.footer-coin-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 16px rgba(248,196,0,0.25));
}
.footer-brand-name {
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.45); }
.footer-ca-line {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
}
.footer-ca-val { font-family: monospace; font-size: 0.72rem; word-break: break-all; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  max-width: 600px;
  margin-top: 0.5rem;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); margin-top: 0.25rem; }

/* ─── Reveal animations ──────────────────────────────────────── */
.reveal-pending { opacity: 0; transform: translateY(22px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal-pending.revealed { opacity: 1; transform: translateY(0); }
.steps-grid .reveal-pending:nth-child(even) { transition-delay: 0.08s; }
.roadmap-grid .reveal-pending:nth-child(2) { transition-delay: 0.08s; }
.roadmap-grid .reveal-pending:nth-child(3) { transition-delay: 0.16s; }

/* ─── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(90deg, var(--navy-dark) 0%, #0d1a3a 50%, var(--navy-dark) 100%);
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  padding: 1rem 1.5rem;
  box-shadow: 0 0 30px rgba(153,69,255,0.15), 0 0 60px rgba(20,241,149,0.06);
}
.stats-bar::before, .stats-bar::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
}
.stats-bar::before {
  top: 0;
  background: linear-gradient(90deg, var(--sol-purple), var(--red), var(--gold), var(--sol-green));
}
.stats-bar::after {
  bottom: 0;
  background: linear-gradient(90deg, var(--sol-green), var(--navy), var(--sol-purple));
  opacity: 0.5;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
}
.stat-item-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.15rem;
}
.stat-item-val {
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--gold);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* ─── Token Cards ─────────────────────────────────────────────── */
.token-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto 3rem;
}
.token-cards.token-cards-single {
  grid-template-columns: minmax(280px, 480px);
  justify-content: center;
}
.token-card {
  background: var(--white);
  border: 2px solid rgba(153,69,255,0.2);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 30px rgba(153,69,255,0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.token-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(153,69,255,0.2), 0 0 80px rgba(20,241,149,0.1);
  border-color: var(--sol-purple);
}
.token-card-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.token-card-body { padding: 1.5rem; }
.token-card-pct {
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.35rem;
}
.navy-pct { color: var(--navy); }
.red-pct  { color: var(--red); }
.gold-pct { color: #c49b00; }
.token-card-body h3 {
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.token-card-body p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 1rem; }

/* ─── About Dark ─────────────────────────────────────────────── */
.bg-dark-navy {
  background: linear-gradient(135deg, #061d3a 0%, #0a3161 100%);
  color: var(--white);
}
.bg-dark-navy .section-sub { color: rgba(255,255,255,0.55); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about-doge-img {
  width: clamp(220px, 35vw, 380px);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  border-radius: 0 0 20px 20px;
}
.bg-dark-navy .about-text p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; font-size: 1rem; line-height: 1.7; }
.bg-dark-navy .about-disclaimer { font-size: 0.82rem !important; color: rgba(255,255,255,0.4) !important; }
.light-pill {
  background: rgba(248,196,0,0.12);
  border: 1px solid rgba(248,196,0,0.35);
  color: var(--gold);
}
.left-title {
  text-align: left;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.left-title .accent { color: var(--gold); }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-text { align-items: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .ca-wrap { align-items: center; }
  .hero-coin { order: -1; }
  .coin-ring { width: clamp(200px, 55vw, 300px); height: clamp(200px, 55vw, 300px); }
  .about-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .left-title { text-align: center; }
  .about-img-wrap { order: -1; }
  .bg-dark-navy .about-text p { text-align: left; }
  .stat-item { padding: 0.4rem 1rem; }
  .stat-item-val { font-size: 0.95rem; }
  .token-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-logo-text { font-size: 1rem; }
  .nav-inner { flex-wrap: wrap; height: auto; padding: 0.75rem 1.25rem; gap: 0; }
  .nav-links {
    flex-direction: column;
    width: 100%;
    background: var(--navy-dark);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links li a { padding: 0.7rem 1.25rem; display: block; font-size: 0.95rem; }

  /* Hero */
  .hero { min-height: auto; padding: 3rem 1.25rem 3.5rem; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .hero-sub { font-size: 0.95rem; }
  .btn-primary, .btn-spotify-hero, .btn-outline { padding: 0.75rem 1.6rem; font-size: 1rem; }

  /* Stats bar */
  .stats-inner { gap: 0; }
  .stat-item { padding: 0.4rem 0.8rem; }
  .stat-divider { height: 28px; }

  /* Countdown */
  .countdown-box { min-width: 68px; padding: 0.85rem 0.75rem; }
  .countdown-num { font-size: clamp(2rem, 8vw, 3rem); }
  .countdown-sep { font-size: 1.8rem; }

  /* Tokenomics */
  .token-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .token-card-img { height: 240px; }

  /* About */
  .about-doge-img { width: clamp(180px, 60vw, 280px); }
  .section { padding: 3.5rem 1.25rem; }
  .spotify-embed-wrap { border-radius: 10px; }

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

@media (max-width: 480px) {
  .hero-inner { gap: 2rem; }
  .coin-ring { width: clamp(160px, 70vw, 240px); height: clamp(160px, 70vw, 240px); }
  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .btn-spotify-hero { width: 100%; justify-content: center; }
  .ca-box { font-size: 0.78rem; padding: 0.45rem 0.75rem; }
  .stats-inner { flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
  .stat-divider { display: none; }
  .stat-item { padding: 0.3rem 0.75rem; border: 1px solid rgba(255,255,255,0.08); border-radius: 6px; }
  .countdown-grid { gap: 0.35rem; }
  .countdown-box { min-width: 58px; padding: 0.7rem 0.5rem; }
  .section-title { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .footer-ca-val { font-size: 0.65rem; }
  .vote-stamp { width: 86px; height: 86px; font-size: 0.6rem; bottom: 5px; }
  .election-stars-left, .election-stars-right { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   ELECTION VIBES — PIFF UPGRADES
   ═══════════════════════════════════════════════════════════════ */

/* ─── Campaign Top Banner ─────────────────────────────────────── */
.campaign-top-banner {
  background: linear-gradient(90deg, var(--red) 0%, var(--navy-dark) 40%, var(--navy-dark) 60%, var(--red) 100%);
  background-size: 200% 100%;
  animation: bannerShift 10s linear infinite;
  color: var(--white);
  text-align: center;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  padding: 0.55rem 1rem;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
  position: relative;
}
.campaign-top-banner .banner-star { color: var(--gold); margin: 0 0.5rem; }
.campaign-top-banner .banner-sep  { color: rgba(255,255,255,0.35); margin: 0 1rem; }
@keyframes bannerShift {
  0%   { background-position: 0%   0%; }
  100% { background-position: 200% 0%; }
}

/* ─── Marquee — proper red/navy/red ──────────────────────────── */
.marquee-wrap {
  background: linear-gradient(90deg, var(--red), var(--navy-dark), var(--red)) !important;
  background-size: 200% 100% !important;
}

/* ─── Election Badge (countdown) ─────────────────────────────── */
.election-badge {
  display: inline-block;
  background: rgba(179,25,66,0.18);
  border: 2px solid rgba(179,25,66,0.65);
  color: var(--white);
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  padding: 0.45rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  animation: electionBadgePulse 2.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes electionBadgePulse {
  0%, 100% { box-shadow: 0 0 18px rgba(179,25,66,0.3); }
  50%       { box-shadow: 0 0 36px rgba(179,25,66,0.6), 0 0 70px rgba(248,196,0,0.15); }
}

/* ─── Election Stars (countdown sides) ───────────────────────── */
.election-stars-left,
.election-stars-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.05rem;
  color: rgba(248,196,0,0.35);
  letter-spacing: 0.65em;
  writing-mode: vertical-rl;
  animation: starSideFade 2.8s ease-in-out infinite alternate;
  pointer-events: none;
  user-select: none;
}
.election-stars-left  { left: 2.5rem; }
.election-stars-right { right: 2.5rem; transform: translateY(-50%) rotate(180deg); }
@keyframes starSideFade {
  from { opacity: 0.18; }
  to   { opacity: 0.75; }
}

/* ─── Hero Floating Stars ────────────────────────────────────── */
.hero-float-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.fstar {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  animation: floatStar var(--dur, 6s) ease-in-out infinite;
}
.fstar-1 { top: 11%; left: 6%;   font-size: 1.6rem;  --dur: 5s;    animation-delay: 0s;   }
.fstar-2 { top: 74%; left: 4%;   font-size: 1.0rem;  --dur: 7s;    animation-delay: 1.2s; }
.fstar-3 { top: 22%; right: 7%;  font-size: 1.3rem;  --dur: 6.5s;  animation-delay: 0.8s; }
.fstar-4 { top: 80%; right: 6%;  font-size: 1.1rem;  --dur: 8s;    animation-delay: 2s;   }
.fstar-5 { top: 50%; left: 46%;  font-size: 0.85rem; --dur: 5.5s;  animation-delay: 3s;   }
.fstar-6 { top: 7%;  right: 27%; font-size: 1.5rem;  --dur: 6.2s;  animation-delay: 1.5s; }
.fstar-7 { top: 62%; left: 22%;  font-size: 0.9rem;  --dur: 7.5s;  animation-delay: 0.3s; }
.fstar-8 { top: 34%; right: 21%; font-size: 1.2rem;  --dur: 5.8s;  animation-delay: 2.5s; }
@keyframes floatStar {
  0%   { transform: translateY(0)     rotate(0deg);  opacity: 0;    }
  20%  {                                             opacity: 0.5;  }
  50%  { transform: translateY(-16px) rotate(22deg); opacity: 0.55; }
  80%  {                                             opacity: 0.4;  }
  100% { transform: translateY(0)     rotate(0deg);  opacity: 0;    }
}

/* ─── Coin ring: star-ray halo ───────────────────────────────── */
.hero-coin { position: relative; }
.hero-coin::before {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: conic-gradient(
    transparent 0deg, rgba(248,196,0,0.07) 20deg, transparent 40deg,
    transparent 60deg, rgba(248,196,0,0.07) 80deg, transparent 100deg,
    transparent 120deg,rgba(248,196,0,0.07) 140deg,transparent 160deg,
    transparent 180deg,rgba(248,196,0,0.07) 200deg,transparent 220deg,
    transparent 240deg,rgba(248,196,0,0.07) 260deg,transparent 280deg,
    transparent 300deg,rgba(248,196,0,0.07) 320deg,transparent 340deg,
    transparent 360deg
  );
  animation: coinHaloSpin 18s linear infinite;
  pointer-events: none;
}
@keyframes coinHaloSpin { to { transform: rotate(360deg); } }

/* ─── Countdown flag strip ───────────────────────────────────── */
.election-flag-strip {
  display: flex;
  height: 5px;
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 0;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 0 16px rgba(179,25,66,0.4);
}
.flag-red   { flex: 1; background: var(--red); }
.flag-white { flex: 1; background: var(--white); }
.flag-blue  { flex: 1; background: var(--navy); }

/* ─── Hero CTA — make the Spotify button pop more ────────────── */
.btn-spotify-hero {
  box-shadow: 0 4px 24px rgba(29,185,84,0.5), 0 0 0 0 rgba(29,185,84,0.4) !important;
  animation: spotifyPulse 2.8s ease-in-out infinite;
}
@keyframes spotifyPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(29,185,84,0.5), 0 0 0 0   rgba(29,185,84,0.3); }
  50%       { box-shadow: 0 6px 30px rgba(29,185,84,0.65),0 0 0 10px rgba(29,185,84,0); }
}

/* ─── Vote Stamp ─────────────────────────────────────────────── */
.about-img-wrap { position: relative; }
.vote-stamp {
  position: absolute;
  bottom: 20px;
  right: -8px;
  width: 108px;
  height: 108px;
  border: 4px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: 'Exo', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.45;
  transform: rotate(-18deg);
  opacity: 0.85;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 0 8px rgba(179,25,66,0.4));
  box-shadow: inset 0 0 0 7px rgba(179,25,66,0.07);
  animation: stampFade 4s ease-in-out infinite alternate;
}
@keyframes stampFade {
  from { opacity: 0.7; filter: drop-shadow(0 0 6px rgba(179,25,66,0.3)); }
  to   { opacity: 1;   filter: drop-shadow(0 0 14px rgba(179,25,66,0.6)); }
}

/* ─── News cards — red left border accent ────────────────────── */
.news-card {
  border-left: 4px solid var(--red) !important;
  border-top: 1px solid rgba(10,49,97,0.15);
  border-right: 1px solid rgba(10,49,97,0.15);
  border-bottom: 1px solid rgba(10,49,97,0.15);
}
.news-card:hover { border-left-color: var(--navy) !important; }

/* ─── Stats bar: gold stat values glow ───────────────────────── */
.stat-item-val {
  animation: statValGlow 3s ease-in-out infinite alternate;
}
@keyframes statValGlow {
  from { text-shadow: none; }
  to   { text-shadow: 0 0 12px rgba(248,196,0,0.5); }
}

/* ─── Section title: flanking stars ─────────────────────────── */
.section-title::before,
.section-title::after {
  content: ' ★ ';
  color: var(--red);
  font-size: 0.6em;
  vertical-align: middle;
  opacity: 0.7;
}

/* ─── Countdown numbers: bigger glow ────────────────────────── */
.countdown-num {
  text-shadow: 0 0 30px rgba(248,196,0,0.7), 0 0 60px rgba(248,196,0,0.35) !important;
}

/* ─── Footer: patriotic bottom accent ───────────────────────── */
.footer::after {
  content: '';
  display: block;
  margin-top: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--red) 33%, var(--white) 33%, var(--white) 66%, var(--navy) 66%);
  border-radius: 2px;
  opacity: 0.25;
}
