/* ================================================================
   نادي الاتحاد — الزعيم قادم  |  Coming Soon Pro — Final Polish
   Developed by Abdullah Elamir | 0911111296
   ================================================================ */

@font-face {
  font-family: 'Reem Kufi Local';
  src: url('../assets/fonts/reem-kufi-arabic.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: 'Cairo Local';
  src: url('../assets/fonts/cairo-arabic.woff2') format('woff2');
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --red:        #E21B24;
  --red-dark:   #B8141C;
  --red-soft:   rgba(226, 27, 36, 0.70);
  --red-glow:   rgba(226, 27, 36, 0.35);
  --white:      #FFFFFF;
  --muted:      rgba(255, 255, 255, 0.52);
  --muted-dim:  rgba(255, 255, 255, 0.34);
  --border:     rgba(255, 255, 255, 0.12);
  --border-red: rgba(226, 27, 36, 0.22);
  --glass:      rgba(8, 8, 8, 0.48);
  --ff-display: 'Reem Kufi Local', 'Tahoma', 'Segoe UI', sans-serif;
  --ff-body:    'Cairo Local', 'Tahoma', 'Segoe UI', sans-serif;
  --ease-out:   cubic-bezier(0.0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius:     12px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  background: #030303;
  color: var(--white);
  font-family: var(--ff-body);
  min-height: 100vh;
  overflow-x: hidden;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  user-select: none;
  -webkit-user-select: none;
}
a   { text-decoration: none; color: inherit; }
img {
  display: block;
  max-width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* ── Top Loading Bar ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; top: 0; right: 0; left: auto;
  height: 2px; width: 0;
  background: linear-gradient(to left, var(--red-dark), var(--red), #ff6060);
  box-shadow: 0 0 12px var(--red), 0 0 26px rgba(226,27,36,0.40);
  animation: topBarFill 1.5s var(--ease-out) 0.08s both;
  z-index: 9999;
}

/* ── Grain Overlay ──────────────────────────────────────────── */
.grain-svg {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 3;
}

/* ================================================================
   PAGE & HERO
   ================================================================ */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

/* ── Background Slideshow Panels ──────────────────────────── */
/* Two overlapping panels — JS crossfades between them       */
.bg-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  transform-origin: center 30%;
  will-change: opacity;
}
.bg-slide.is-active {
  opacity: 1;
  animation: slowZoom 22s ease-in-out infinite alternate;
}

/* Subtle club logo watermark — shows identity indirectly */
.bg-watermark {
  position: absolute;
  bottom: 13%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(160px, 18vw, 260px);
  height: clamp(160px, 18vw, 260px);
  background: url('../assets/ittihad-logo.png') center / contain no-repeat;
  opacity: 0.055;
  z-index: 2;
  pointer-events: none;
  filter: grayscale(20%) brightness(1.1);
}

/* hero::before — completely masks the "Nim" watermark in top-left corner */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
  /* Strong corner mask: covers the top-left 10% × 6% area completely */
  background:
    linear-gradient(to right,
      rgba(3,3,3,1.00)  0%,
      rgba(3,3,3,0.90)  6%,
      rgba(3,3,3,0.00) 16%
    ),
    linear-gradient(to bottom,
      rgba(3,3,3,0.85)  0%,
      rgba(3,3,3,0.00)  9%
    );
}

/* Gradient overlay — refined for better text readability + visible crowd */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    /* Vertical gradient */
    linear-gradient(to bottom,
      rgba(3,3,3,0.58)  0%,     /* header — slight shade */
      rgba(3,3,3,0.05)  18%,    /* fans fully visible */
      rgba(3,3,3,0.10)  35%,    /* headline area — very clean */
      rgba(3,3,3,0.50)  62%,    /* countdown — readable */
      rgba(3,3,3,0.84)  80%,
      rgba(3,3,3,0.97)  100%
    ),
    /* Strong vignette on left/right edges */
    radial-gradient(ellipse 75% 95% at 50% 38%,
      transparent 28%,
      rgba(3,3,3,0.58) 100%
    );
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: relative; z-index: 5;
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 2rem 2rem 1.4rem;
  direction: rtl;
  animation: fadeDown 1s var(--ease-out) 0.1s both;
}

.site-logo {
  height: clamp(60px, 8vw, 82px);
  width: auto; object-fit: contain;
  filter:
    drop-shadow(0 0 16px rgba(226,27,36,0.68))
    drop-shadow(0 0 40px rgba(226,27,36,0.22))
    drop-shadow(0 3px 14px rgba(0,0,0,0.95));
  transition: filter 0.4s ease;
}
.site-logo:hover {
  filter:
    drop-shadow(0 0 28px rgba(226,27,36,0.95))
    drop-shadow(0 0 70px rgba(226,27,36,0.42));
}

.header-text { display: flex; flex-direction: column; line-height: 1.35; }

.club-name {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0,0,0,0.95), 0 0 36px rgba(0,0,0,0.8);
}
.club-sub {
  font-size: 0.68rem;
  color: var(--muted-dim);
  letter-spacing: 0.09em;
  margin-top: 3px;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.95);
}

/* ── Hero Body ──────────────────────────────────────────────── */
.hero-body {
  position: relative; z-index: 5;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 0.9rem;
  padding: 0 2.5rem;
  flex: 1;
  justify-content: center;
}

/* ── Text Shield — soft dark radial behind headline for clarity */
.hero-body::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 85%;
  background: radial-gradient(ellipse at center,
    rgba(3,3,3,0.38) 0%,
    rgba(3,3,3,0.18) 45%,
    transparent 72%
  );
  pointer-events: none;
  z-index: -1;
}

/* ── Eyebrow ────────────────────────────────────────────────── */
.eyebrow {
  display: flex; align-items: center; gap: 0.8rem;
  margin-bottom: 0.5rem;
  animation: fadeUp 0.7s var(--ease-out) 0.48s both;
}
.eyebrow-line {
  display: block; width: 30px; height: 1px;
  background: rgba(226,27,36,0.65);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--ff-body);
  font-size: clamp(0.63rem, 1.1vw, 0.76rem);
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.26em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95);
}

/* ── Headline — reduced 15%, more gap between words ─────────── */
h1.headline {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 0.15em;           /* breathing room between الزعيم & قادم */
  line-height: 0.88;
  animation: fadeUp 1s var(--ease-out) 0.62s both;
}

.hl-red {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(4.2rem, 9.5vw, 9rem);
  color: var(--red);
  letter-spacing: -0.01em;
  opacity: 0.95;
  text-align: center;
  text-shadow:
    0 0 38px rgba(226,27,36,0.50),
    0 0 80px rgba(226,27,36,0.18),
    0 4px 36px rgba(0,0,0,1);
}

.hl-white {
  font-family: var(--ff-display); font-weight: 900;
  font-size: clamp(5.8rem, 14.5vw, 13.5rem);
  color: var(--white);
  letter-spacing: -0.022em;
  text-align: center;
  text-shadow:
    0 0 60px rgba(255,255,255,0.10),
    0 5px 50px rgba(0,0,0,1),
    0 0 140px rgba(226,27,36,0.06);
}

/* ── Subtitle ───────────────────────────────────────────────── */
.subtitle {
  font-size: clamp(0.70rem, 1.2vw, 0.86rem);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.95);
  margin-top: 0.2rem;
  animation: fadeUp 0.7s var(--ease-out) 0.84s both;
}

/* ── Rule ───────────────────────────────────────────────────── */
.rule-row {
  display: flex; align-items: center; gap: 0.9rem;
  margin: 0.25rem 0 0.25rem;
  animation: fadeUp 0.6s var(--ease-out) 0.94s both;
}
.rule-line {
  display: block; width: 60px; height: 1px;
  background: linear-gradient(to left, transparent, rgba(226,27,36,0.70));
  flex-shrink: 0;
}
.rule-line:last-child {
  background: linear-gradient(to right, transparent, rgba(226,27,36,0.70));
}
.rule-gem { color: rgba(226,27,36,0.80); font-size: 0.55rem; }

/* ================================================================
   COUNTDOWN — Premium Refinement
   ================================================================ */
/* ── Typewriter ──────────────────────────────────────────── */
.typewriter-wrap {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  direction: rtl;
  background: rgba(6, 2, 2, 0.78);
  border: 1px solid rgba(226,27,36,0.22);
  border-radius: 16px;
  padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1.2rem, 3vw, 1.6rem);
  max-width: 500px;
  width: 100%;
  min-height: 3.4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.65),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.10);
  opacity: 0;
  animation: fadeUp 0.65s var(--ease-out) 1.0s both;
}

/* Shimmer gradient */
.typewriter-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.06) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Red accent top line — stronger */
.typewriter-wrap::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to left, transparent, rgba(226,27,36,0.80), transparent);
  pointer-events: none;
}

/* Live dot */
.tw-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  box-shadow: 0 0 7px rgba(226,27,36,0.85);
  animation: twPulse 2s ease-in-out infinite;
}

@keyframes twPulse {
  0%, 100% { opacity: 1;   box-shadow: 0 0 7px  rgba(226,27,36,0.85); }
  50%       { opacity: 0.25; box-shadow: 0 0 3px rgba(226,27,36,0.25); }
}

/* Text */
.tw-text {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: clamp(0.96rem, 2.4vw, 1.16rem);
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 24px rgba(255,255,255,0.18),
    0 1px 12px rgba(0,0,0,0.95);
  direction: rtl;
  flex: 1;
  min-height: 1.4em;
  line-height: 1.4;
}

/* Blinking cursor */
.tw-cursor {
  display: inline-block;
  width: 2.5px;
  height: 1.15em;
  background: var(--red);
  border-radius: 1px;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(226,27,36,0.90);
  animation: twBlink 0.85s step-end infinite;
  align-self: center;
}

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

/* Utility */
.is-hidden { display: none !important; }

/* ── Social Row — better integration ───────────────────────── */
.social-row {
  display: flex; gap: 1rem; justify-content: center;
  margin-top: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease-out) 1.55s both;
}

.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(6,6,6,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.30s var(--ease-spring),
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    color 0.28s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.52);
}
.social-btn svg { width: 22px; height: 22px; }

.social-btn:hover {
  transform: translateY(-6px) scale(1.12);
  box-shadow: 0 14px 38px rgba(226,27,36,0.28),
              0 0 0 1px rgba(226,27,36,0.28);
  color: var(--white);
}
.s-fb:hover { background: #1877F2; border-color: transparent; }
.s-ig:hover {
  background: linear-gradient(135deg,
    #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
}

/* ── Anthem Control ───────────────────────────────────────────── */
.anthem-row {
  width: min(100%, 560px);
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 0.75s var(--ease-out) 1.72s both;
  position: relative;
}

.anthem-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015)),
    rgba(6,6,6,0.56);
  box-shadow:
    0 14px 40px rgba(0,0,0,0.50),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  position: relative;
  overflow: hidden;
}

.anthem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,0.035) 42%,
    transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.anthem-card:hover::before {
  transform: translateX(100%);
}

.anthem-card__media {
  position: relative;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.18), transparent 48%),
    linear-gradient(135deg, rgba(226,27,36,0.24), rgba(60,0,0,0.28));
  border: 1px solid rgba(226,27,36,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 0 24px rgba(226,27,36,0.16);
}

.anthem-card__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(226,27,36,0.18))
    drop-shadow(0 4px 12px rgba(0,0,0,0.55));
}

.anthem-card__glow {
  position: absolute;
  inset: auto auto -26px -18px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,27,36,0.26), transparent 68%);
  pointer-events: none;
}

.anthem-card__eq {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  margin-inline-start: 0;
  opacity: 0.20;
  transition: opacity 0.45s ease;
}

.anthem-card__eq--left  { left:  6px; }
.anthem-card__eq--right { right: 6px; }

.anthem-card__eq     span:nth-child(1) { height: 10px; }
.anthem-card__eq     span:nth-child(2) { height: 22px; }
.anthem-card__eq     span:nth-child(3) { height: 14px; }

.anthem-card__eq--right span:nth-child(1) { height: 14px; }
.anthem-card__eq--right span:nth-child(2) { height: 22px; }
.anthem-card__eq--right span:nth-child(3) { height: 10px; }

.anthem-card.is-playing .anthem-card__eq { opacity: 0.88; }

.anthem-card__copy {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  text-align: right;
  min-width: 0;
}

.anthem-card__eyebrow {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.44);
  letter-spacing: 0.18em;
}

.anthem-card__title {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.8vw, 1.26rem);
  font-weight: 800;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 2px 12px rgba(0,0,0,0.58);
}

.anthem-card__meta {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

.anthem-card__hint {
  font-size: 0.64rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

.anthem-share-feedback {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 36px;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.01)),
    rgba(8,8,8,0.96);
  color: rgba(255,255,255,0.96);
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow:
    0 12px 32px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.07);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px) scale(0.94);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  z-index: 9999;
}

.anthem-share-feedback.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0) scale(1);
}

.anthem-share-feedback.is-error {
  background: linear-gradient(135deg, rgba(110,8,8,0.96), rgba(65,4,4,0.98));
  border-color: rgba(226,27,36,0.32);
  color: rgba(255,185,185,0.96);
}

.anthem-card__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  justify-content: flex-start;
  overflow: visible;
}

.anthem-action {
  min-width: 98px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  transition:
    transform 0.28s var(--ease-spring),
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
  font: inherit;
}

.anthem-action:hover {
  transform: translateY(-3px);
  border-color: rgba(226,27,36,0.24);
  box-shadow: 0 12px 28px rgba(0,0,0,0.30);
}

.anthem-action__icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.anthem-action__icon svg {
  width: 18px;
  height: 18px;
}

/* Icon visibility — play / pause / spinner */
.anthem-icon-pause { display: none; }
.anthem-icon-spin  { display: none; }

.anthem-card.is-playing .anthem-icon-play  { display: none; }
.anthem-card.is-playing .anthem-icon-pause { display: block; }

.anthem-card.is-loading .anthem-action--play {
  cursor: wait;
  pointer-events: none;
  opacity: 0.72;
}
.anthem-card.is-loading .anthem-icon-play  { display: none; }
.anthem-card.is-loading .anthem-icon-spin  {
  display: block;
  animation: anthemSpin 0.85s linear infinite;
}

@keyframes anthemSpin {
  to { transform: rotate(360deg); }
}

.anthem-action--play {
  background: linear-gradient(135deg, rgba(226,27,36,0.22), rgba(91,0,0,0.26));
  border-color: rgba(226,27,36,0.22);
}

.anthem-action--share {
  min-width: 92px;
}

.anthem-progress-wrap {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.anthem-progress {
  flex: 1;
  height: 5px;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.anthem-progress::-webkit-progress-bar {
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.anthem-progress::-webkit-progress-value {
  background: linear-gradient(90deg, rgba(226,27,36,0.65), rgba(255,255,255,0.92));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(226,27,36,0.22);
}

.anthem-progress::-moz-progress-bar {
  background: linear-gradient(90deg, rgba(226,27,36,0.65), rgba(255,255,255,0.92));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(226,27,36,0.22);
}

.anthem-progress-label {
  min-width: 88px;
  text-align: left;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.anthem-card.is-playing {
  border-color: rgba(226,27,36,0.30);
  box-shadow:
    0 18px 46px rgba(0,0,0,0.54),
    0 0 36px rgba(226,27,36,0.14),
    inset 0 0 24px rgba(226,27,36,0.06);
}

.anthem-card.is-playing .anthem-card__eq--left  span:nth-child(1) { animation: anthemEq 0.85s ease-in-out infinite 0.00s; }
.anthem-card.is-playing .anthem-card__eq--left  span:nth-child(2) { animation: anthemEq 0.85s ease-in-out infinite 0.28s; }
.anthem-card.is-playing .anthem-card__eq--left  span:nth-child(3) { animation: anthemEq 0.85s ease-in-out infinite 0.14s; }
.anthem-card.is-playing .anthem-card__eq--right span:nth-child(1) { animation: anthemEq 0.85s ease-in-out infinite 0.42s; }
.anthem-card.is-playing .anthem-card__eq--right span:nth-child(2) { animation: anthemEq 0.85s ease-in-out infinite 0.07s; }
.anthem-card.is-playing .anthem-card__eq--right span:nth-child(3) { animation: anthemEq 0.85s ease-in-out infinite 0.56s; }

.anthem-eq {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  height: 26px;
  margin-inline-start: 0.15rem;
  opacity: 0.72;
}

.anthem-eq span {
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(255,255,255,0.28), rgba(226,27,36,0.95));
  transform-origin: bottom center;
}

.anthem-eq span:nth-child(1) { height: 8px; }
.anthem-eq span:nth-child(2) { height: 18px; }
.anthem-eq span:nth-child(3) { height: 12px; }

/* ── Slide Indicator Dots ───────────────────────────────────── */
.slide-dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: clamp(1rem, 2.5vh, 1.6rem);
  z-index: 10;
  position: relative;
}
.slide-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.5s ease, width 0.5s ease, border-radius 0.5s ease;
}
.slide-dot.is-active {
  width: 22px;
  border-radius: 3px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(226,27,36,0.65);
}

/* ── Footer — muted, non-competing ─────────────────────────── */
.site-footer {
  position: relative; z-index: 20;
  padding: 0.9rem 2rem;
  text-align: center;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.20);
  border-top: 1px solid rgba(255,255,255,0.04);
  background: rgba(3,3,3,0.80);
  letter-spacing: 0.04em;
}

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes topBarFill  { to { width: 100%; } }

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes anthemEq {
  0%, 100% { transform: scaleY(0.38); opacity: 0.45; }
  50%      { transform: scaleY(1);    opacity: 1; }
}

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

/* ── Large Desktop (1400px+) ──────────────────────────────────── */
@media (min-width: 1400px) {
  .hero-body { gap: 1.1rem; }
}

/* ── Tablet Landscape (960px–1199px) ─────────────────────────── */
@media (max-width: 1199px) {
  .hl-red   { font-size: clamp(4rem, 10vw, 7rem); }
  .hl-white { font-size: clamp(5.5rem, 15vw, 11rem); }
}

/* ── Tablet Portrait (600px–960px) ──────────────────────────── */
@media (max-width: 960px) {
  .site-header  { padding: 1.6rem 1.6rem 1.2rem; }
  .site-logo    { height: clamp(56px, 9vw, 72px); }

  .hero-body    { gap: 0.85rem; padding: 0 1.8rem; }

  .hl-red       { font-size: clamp(3.6rem, 11.5vw, 6rem); }
  .hl-white     { font-size: clamp(5rem, 16.5vw, 9rem); }

  .social-btn   { width: 50px; height: 50px; }
}

/* ── Mobile (≤600px) ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .site-header  { padding: 1.2rem 1rem 0.9rem; gap: 0.65rem; }
  .site-logo    { height: 50px; }
  .club-name    { font-size: 0.98rem; }
  .club-sub     { font-size: 0.60rem; letter-spacing: 0.06em; }

  .hero-body    { padding: 0 1rem; gap: 0.65rem; }

  .hl-red       { font-size: clamp(2.8rem, 17vw, 4.6rem); }
  .hl-white     { font-size: clamp(4rem, 25vw, 6.5rem); }
  h1.headline   { gap: 0.08em; }

  .eyebrow-text { font-size: 0.60rem; letter-spacing: 0.18em; }
  .subtitle     { font-size: 0.66rem; letter-spacing: 0.13em; }

  .rule-line    { width: 40px; }

  .typewriter-wrap { border-radius: 12px; }
  .tw-text      { font-size: clamp(0.80rem, 3.5vw, 0.92rem); }

  .social-btn   { width: 46px; height: 46px; }
  .social-btn svg { width: 19px; height: 19px; }
  .social-row   { gap: 0.75rem; margin-top: 0.3rem; }

  .anthem-row   { width: min(100%, 380px); margin-top: 0.85rem; }
  .anthem-card  {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.75rem;
    padding: 0.9rem;
  }
  .anthem-card__copy { align-items: center; text-align: center; }
  .anthem-card__media { width: 80px; height: 80px; }
  .anthem-card__logo { width: 52px; height: 52px; }
  .anthem-card__actions { width: 100%; justify-content: center; }
  .anthem-action { min-width: 0; flex: 1 1 0; }
  .anthem-card__hint { font-size: 0.62rem; }
  .anthem-share-feedback {
    bottom: 1.2rem;
    max-width: calc(100vw - 3rem);
    text-align: center;
  }
  .anthem-progress-wrap {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.4rem;
  }
  .anthem-progress-label {
    text-align: center;
    min-width: 0;
  }

  .slide-dots   { margin-top: 0.8rem; gap: 6px; }

  .site-footer  { font-size: 0.58rem; padding: 0.7rem 1rem; }
}

/* ── Small Mobile (≤400px) ───────────────────────────────────── */
@media (max-width: 400px) {
  .site-logo    { height: 44px; }
  .club-name    { font-size: 0.88rem; }
  .hl-red       { font-size: 2.6rem; }
  .hl-white     { font-size: 3.6rem; }
}

/* ── Short Screens (height ≤ 680px, landscape phones) ─────────── */
@media (max-height: 680px) and (orientation: landscape) {
  .site-header  { padding: 0.8rem 1.4rem 0.6rem; }
  .site-logo    { height: 40px; }
  .hero-body    { gap: 0.45rem; }
  h1.headline   { gap: 0.04em; }
  .hl-red       { font-size: clamp(2rem, 8vh, 3.5rem); }
  .hl-white     { font-size: clamp(2.8rem, 11vh, 5rem); }
  .eyebrow      { margin-bottom: 0.2rem; }
  .subtitle     { display: none; }
  .rule-row     { margin: 0.1rem 0; }
  .social-btn   { width: 40px; height: 40px; }
  .social-btn svg { width: 17px; height: 17px; }
  .slide-dots   { margin-top: 0.5rem; }
}

/* ── Very Short Screens (height ≤ 500px) ─────────────────────── */
@media (max-height: 500px) {
  .bg-watermark { display: none; }
  .eyebrow      { display: none; }
  .rule-row     { display: none; }
}

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