:root {
  --navy: #0a1628;
  --navy-deep: #02060d;
  --navy-mid: #061224;
  --cyan: #6ec5ff;
  --cyan-bright: #b8defc;
  --cyan-dim: #4090d0;
  --gold: #c9a536;
  --gold-soft: #e6c879;
  --gold-bright: #ffe9a6;
  --white: #f5f8fc;
  --green: #2ecc71;
  --red: #ff5c5c;

  --font-display: 'Cinzel', 'Marcellus', serif;
  --font-fr: 'Cormorant Garamond', 'Playfair Display', serif;
  --font-en: 'Playfair Display', 'Marcellus', serif;
  --font-ar: 'Reem Kufi', 'Cairo', 'Segoe UI', Tahoma, sans-serif;
  --font-ar-body: 'Cairo', 'Reem Kufi', 'Segoe UI', Tahoma, sans-serif;
  --font-mono: 'Orbitron', 'Share Tech Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: var(--font-en);
  color: var(--white);
  background:
    radial-gradient(ellipse at 50% 0%, #0a1f3d 0%, #050d1c 35%, #02060d 75%) fixed,
    var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ───────────────────────────── Background canvas ───────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.scene-overlays {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.aurora {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 55%;
  background:
    radial-gradient(ellipse 55% 45% at 30% 20%, rgba(40, 110, 180, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 35% at 75% 25%, rgba(212, 175, 55, 0.06), transparent 60%),
    radial-gradient(ellipse 65% 55% at 50% 70%, rgba(10, 50, 120, 0.16), transparent 65%);
  filter: blur(50px);
  animation: auroraDrift 22s ease-in-out infinite alternate;
}

.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 0%, rgba(2, 6, 13, 0.45) 60%, rgba(2, 6, 13, 0.95) 100%);
}

.floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16vh;
  background:
    linear-gradient(to top, rgba(212, 175, 55, 0.08), transparent 70%);
  -webkit-mask-image: linear-gradient(to top, black 30%, transparent 100%);
          mask-image: linear-gradient(to top, black 30%, transparent 100%);
}

/* ───────────────────────────── Stock Ticker ───────────────────────────── */
.ticker {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 38px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2, 8, 16, 0.95), rgba(8, 22, 40, 0.85) 50%, rgba(2, 8, 16, 0.95));
  border-bottom: 1px solid rgba(201, 165, 54, 0.4);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.55), inset 0 -1px 0 rgba(110, 197, 255, 0.15);
  animation: fadeDown 1s 0s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ticker::before {
  content: 'LIVE';
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  background: linear-gradient(180deg, #ff3344, #c61126);
  padding: 3px 8px;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(255, 51, 68, 0.7), 0 0 22px rgba(255, 51, 68, 0.4);
  z-index: 3;
  animation: liveBlink 1.6s ease-in-out infinite;
}

.ticker-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-edge-left  { left: 0;  background: linear-gradient(90deg, rgba(2, 8, 16, 1), transparent); }
.ticker-edge-right { right: 0; background: linear-gradient(-90deg, rgba(2, 8, 16, 1), transparent); }

.ticker-track {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: tickerScroll 50s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-right: 1px solid rgba(110, 197, 255, 0.15);
}

.ticker-sym {
  color: var(--gold-bright);
  font-weight: 700;
  text-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.ticker-px {
  color: rgba(245, 248, 252, 0.92);
  font-variant-numeric: tabular-nums;
  padding: 2px 5px;
  border-radius: 3px;
  transition: color 0.25s ease, background-color 0.4s ease, text-shadow 0.25s ease;
}

.ticker-px.flash-up {
  color: #ffffff;
  background: rgba(46, 204, 113, 0.35);
  text-shadow: 0 0 8px rgba(46, 204, 113, 0.9);
  animation: priceFlashUp 0.85s ease-out;
}

.ticker-px.flash-down {
  color: #ffffff;
  background: rgba(255, 92, 92, 0.35);
  text-shadow: 0 0 8px rgba(255, 92, 92, 0.9);
  animation: priceFlashDown 0.85s ease-out;
}

.ticker-chg {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
  transition: color 0.25s ease;
  min-width: 4.5em;
}

.ticker-chg.up   { color: var(--green); text-shadow: 0 0 8px rgba(46, 204, 113, 0.6); }
.ticker-chg.down { color: var(--red);   text-shadow: 0 0 8px rgba(255, 92, 92, 0.6); }

.ticker-chg::before {
  content: '▲';
  font-size: 0.7em;
  display: inline-block;
  transition: transform 0.25s ease;
}
.ticker-chg.down::before { content: '▼'; }
.ticker-chg.up.tick-arrow::before   { animation: arrowBounceUp 0.6s ease-out; }
.ticker-chg.down.tick-arrow::before { animation: arrowBounceDown 0.6s ease-out; }

@keyframes priceFlashUp {
  0%   { background: rgba(46, 204, 113, 0.6); transform: translateY(0); }
  25%  { transform: translateY(-2px); }
  100% { background: rgba(46, 204, 113, 0); transform: translateY(0); }
}
@keyframes priceFlashDown {
  0%   { background: rgba(255, 92, 92, 0.6); transform: translateY(0); }
  25%  { transform: translateY(2px); }
  100% { background: rgba(255, 92, 92, 0); transform: translateY(0); }
}
@keyframes arrowBounceUp {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(-3px); }
}
@keyframes arrowBounceDown {
  0%, 100% { transform: translateY(0); }
  40%      { transform: translateY(3px); }
}

/* ───────────────────────────── Page layout ───────────────────────────── */
.page {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(1rem, 3vw, 1.75rem) clamp(1rem, 4vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  max-width: 1160px;
  margin: 0 auto;
}

/* ───────────────────────────── Hero & Logo ───────────────────────────── */
.hero {
  text-align: center;
  animation: fadeDown 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
  transform-style: preserve-3d;
  perspective: 1400px;
  animation: logoFloat 7s ease-in-out infinite, logoReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
}

#site-logo {
  position: relative;
  display: block;
  width: clamp(220px, 38vw, 360px);
  height: auto;
  filter:
    drop-shadow(0 24px 40px rgba(0, 0, 0, 0.8))
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 30px rgba(110, 197, 255, 0.35))
    drop-shadow(0 0 55px rgba(212, 175, 55, 0.28))
    contrast(1.08)
    saturate(1.1);
  transform: rotateX(calc(6deg + var(--tilt-x))) rotateY(var(--tilt-y));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}

.logo-wrap:hover #site-logo {
  transform: rotateX(calc(3deg + var(--tilt-x))) rotateY(var(--tilt-y)) scale(1.03);
  filter:
    drop-shadow(0 26px 44px rgba(0, 0, 0, 0.85))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 38px rgba(110, 197, 255, 0.45))
    drop-shadow(0 0 68px rgba(212, 175, 55, 0.4))
    contrast(1.1)
    saturate(1.15);
}

/* Outer aura — slow rotating conic light */
.logo-aura {
  position: absolute;
  inset: -22%;
  z-index: -3;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(110, 197, 255, 0.55) 30deg,
    rgba(110, 197, 255, 0.10) 70deg,
    transparent 110deg,
    transparent 200deg,
    rgba(212, 175, 55, 0.55) 230deg,
    rgba(212, 175, 55, 0.10) 270deg,
    transparent 310deg
  );
  filter: blur(26px);
  animation: spinSlow 18s linear infinite;
  opacity: 0.85;
}

/* Bright pulsing halo ring */
.logo-halo {
  position: absolute;
  inset: -4%;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 38%,
      rgba(110, 197, 255, 0.55) 50%,
      rgba(212, 175, 55, 0.35) 56%,
      rgba(110, 197, 255, 0.12) 62%,
      transparent 74%);
  filter: blur(10px);
  animation: haloPulse 3.2s ease-in-out infinite;
}

/* Soft inner glow */
.logo-glow {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 50% 45%,
      rgba(110, 197, 255, 0.45) 0%,
      rgba(110, 197, 255, 0.18) 22%,
      rgba(212, 175, 55, 0.18) 40%,
      transparent 68%);
  z-index: -2;
  animation: pulseGlow 4s ease-in-out infinite;
  filter: blur(20px);
}

/* Scan-line sweep across the logo (subtle shine) */
.logo-scan {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  background:
    linear-gradient(120deg,
      transparent 0%,
      transparent 35%,
      rgba(255, 255, 255, 0.10) 48%,
      rgba(110, 197, 255, 0.18) 52%,
      transparent 65%,
      transparent 100%);
  background-size: 240% 240%;
  background-position: -120% -120%;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
  animation: logoScan 5s ease-in-out infinite;
  opacity: 0.85;
}

.logo-base {
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: 85%;
  height: 30px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse,
      rgba(212, 175, 55, 0.55) 0%,
      rgba(110, 197, 255, 0.25) 40%,
      transparent 75%);
  filter: blur(16px);
  z-index: -4;
  animation: shadowPulse 4s ease-in-out infinite;
}

.logo-orbit {
  position: absolute;
  inset: -4%;
  z-index: -1;
  animation: spinSlow 28s linear infinite;
  opacity: 0.85;
}

.logo-orbit span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-bright), transparent 70%);
  box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold);
}

.logo-orbit span:nth-child(1) { top: 3%;  left: 50%; transform: translateX(-50%); }
.logo-orbit span:nth-child(2) { bottom: 10%; left: 12%; }
.logo-orbit span:nth-child(3) { top: 38%; right: 3%; background: radial-gradient(circle, var(--cyan-bright), transparent 70%); box-shadow: 0 0 10px var(--cyan), 0 0 20px var(--cyan); }

/* Headline */
.headline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.2rem);
  letter-spacing: 0.28em;
  margin-top: 0.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #e6f1ff 50%, #b8d6f7 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  filter:
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 16px rgba(110, 197, 255, 0.35));
  animation: fadeDown 1.4s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
  display: inline-block;
  overflow: hidden;
}

.headline-text { display: inline-block; padding: 0 0.1em; }

.headline::before,
.headline::after {
  content: '';
  display: inline-block;
  width: clamp(32px, 6vw, 72px);
  height: 1px;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 0.8em;
  filter: drop-shadow(0 0 4px rgba(201, 165, 54, 0.6));
}

.headline-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.5) 50%, transparent 70%);
  animation: shine 5s ease-in-out infinite;
}

/* ───────────────────────────── Copy ───────────────────────────── */
.copy {
  width: 100%;
  max-width: 820px;
  margin: clamp(1rem, 3.5vw, 1.75rem) 0 0.5rem;
  text-align: center;
  animation: fadeUp 1.4s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.copy-line {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.55;
  padding: 0.55rem 0;
}

.copy-line span { display: block; }

/* French */
.copy-fr { font-family: var(--font-fr); }

.copy-fr-1 {
  font-style: italic;
  font-weight: 500;
  color: rgba(220, 232, 255, 0.92);
  font-size: 1.05em;
  letter-spacing: 0.005em;
}

.copy-fr-2 {
  font-style: italic;
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(212, 175, 55, 0.45);
  margin-top: 0.2rem;
  font-size: 1.18em;
}

/* English */
.copy-en { font-family: var(--font-en); }

.copy-en-1 {
  font-weight: 500;
  color: rgba(220, 232, 255, 0.92);
  letter-spacing: 0.015em;
  font-size: 1.02em;
}

.copy-en-2 {
  font-weight: 700;
  color: var(--gold-bright);
  letter-spacing: 0.04em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(212, 175, 55, 0.5);
  margin-top: 0.2rem;
  font-size: 1.18em;
  text-transform: none;
}

/* Arabic */
.copy-ar {
  font-family: var(--font-ar-body);
  font-size: clamp(1.15rem, 3.2vw, 1.55rem);
}

.copy-ar-1 {
  font-family: var(--font-ar-body);
  color: rgba(220, 232, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0;
}

.copy-ar-2 {
  font-family: var(--font-ar);
  color: var(--gold-bright);
  font-weight: 700;
  letter-spacing: 0.005em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.6),
    0 0 18px rgba(212, 175, 55, 0.5);
  margin-top: 0.25rem;
  font-size: 1.1em;
}

.divider {
  border: none;
  height: 1px;
  margin: 0.6rem auto;
  max-width: 70%;
  background: linear-gradient(90deg, transparent, rgba(110, 197, 255, 0.5), rgba(212, 175, 55, 0.45), rgba(110, 197, 255, 0.5), transparent);
  box-shadow: 0 0 8px rgba(110, 197, 255, 0.25);
}

/* ───────────────────────────── Countdown stage ───────────────────────────── */
.countdown-stage {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: clamp(1.75rem, 4.5vw, 3rem) 0 1rem;
  animation: fadeUp 1.4s 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.platform-rings {
  position: absolute;
  left: 50%;
  bottom: -4%;
  transform: translateX(-50%);
  width: min(95vw, 640px);
  aspect-ratio: 1.6;
  pointer-events: none;
}

.ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(72deg);
  border-radius: 50%;
  border: 1px solid rgba(110, 197, 255, 0.45);
  box-shadow:
    0 0 22px rgba(110, 197, 255, 0.28),
    inset 0 0 30px rgba(110, 197, 255, 0.08);
}

.ring-1 { width: 100%; height: 100%; animation: ringPulse 4s ease-in-out infinite; }
.ring-2 { width: 78%;  height: 78%;  border-color: rgba(110, 197, 255, 0.32); animation: ringPulse 4s 0.5s ease-in-out infinite; }
.ring-3 { width: 56%;  height: 56%;  border-color: rgba(201, 165, 54, 0.45); box-shadow: 0 0 18px rgba(201, 165, 54, 0.25); animation: ringPulse 4s 1s ease-in-out infinite; }

.ring-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(110, 197, 255, 0.18) 0%, transparent 65%);
  filter: blur(20px);
  animation: glowPulse 4.5s ease-in-out infinite;
}

.countdown {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2.5vw, 1.5rem);
  width: min(100%, 820px);
  perspective: 900px;
}

.count-block {
  text-align: center;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform-style: preserve-3d;
  animation: blockRise 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.count-block[data-unit="days"]    { animation-delay: 0.6s; }
.count-block[data-unit="hours"]   { animation-delay: 0.7s; }
.count-block[data-unit="minutes"] { animation-delay: 0.8s; }
.count-block[data-unit="seconds"] { animation-delay: 0.9s; }

.count-label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.6rem, 1.8vw, 0.78rem);
  letter-spacing: 0.28em;
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.count-face {
  position: relative;
  padding: 2px;
  background:
    linear-gradient(160deg, #f7d984 0%, #b88a2a 22%, #7a5a14 50%, #d4af37 78%, #ffe79a 100%);
  -webkit-clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
          clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 24px rgba(110, 197, 255, 0.20));
  transform: rotateX(calc(6deg + var(--tilt-x))) rotateY(var(--tilt-y));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.count-block:hover .count-face {
  transform: rotateX(calc(2deg + var(--tilt-x))) rotateY(var(--tilt-y)) translateY(-3px) scale(1.02);
}

.count-face-inner {
  position: relative;
  padding: clamp(0.9rem, 2.6vw, 1.35rem) clamp(0.4rem, 2vw, 0.9rem) clamp(0.8rem, 2.4vw, 1.2rem);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(0, 80, 130, 0.4) 0%, transparent 70%),
    linear-gradient(165deg, #0a1d36 0%, #04101f 60%, #020812 100%);
  -webkit-clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
          clip-path: polygon(14% 0, 86% 0, 100% 14%, 100% 86%, 86% 100%, 14% 100%, 0 86%, 0 14%);
  box-shadow: inset 0 0 30px rgba(110, 197, 255, 0.12);
}

.count-mid-line {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.7), transparent);
  pointer-events: none;
}

.corner { position: absolute; width: 14px; height: 14px; z-index: 2; pointer-events: none; }
.corner::before,
.corner::after {
  content: '';
  position: absolute;
  background: var(--cyan-bright);
  box-shadow: 0 0 8px var(--cyan), 0 0 14px var(--cyan);
}
.corner::before { width: 14px; height: 2px; }
.corner::after  { width: 2px; height: 14px; }
.corner.tl { top: 6%;  left: 0; }
.corner.tl::before { top: 0; left: 0; }
.corner.tl::after  { top: 0; left: 0; }
.corner.tr { top: 6%;  right: 0; }
.corner.tr::before { top: 0; right: 0; }
.corner.tr::after  { top: 0; right: 0; }
.corner.bl { bottom: 6%; left: 0; }
.corner.bl::before { bottom: 0; left: 0; }
.corner.bl::after  { bottom: 0; left: 0; }
.corner.br { bottom: 6%; right: 0; }
.corner.br::before { bottom: 0; right: 0; }
.corner.br::after  { bottom: 0; right: 0; }

.count-value {
  position: relative;
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: clamp(1.8rem, 6.5vw, 3.2rem);
  line-height: 1;
  color: var(--cyan-bright);
  text-shadow:
    0 0 4px #ffffff,
    0 0 12px var(--cyan),
    0 0 24px var(--cyan),
    0 0 40px rgba(110, 197, 255, 0.6);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  z-index: 1;
}

.count-value.tick { animation: digitFlip 0.5s cubic-bezier(0.22, 1, 0.36, 1); }

/* ───────────────────────────── Social Media ───────────────────────────── */
.socials-wrap {
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
  animation: fadeUp 1.4s 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.socials-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.8vw, 0.85rem);
  letter-spacing: 0.4em;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.45);
}

.socials-title::before,
.socials-title::after {
  content: '';
  width: clamp(38px, 9vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.socials {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1.1rem);
  perspective: 700px;
}

.social-link {
  --brand: #6ec5ff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(46px, 8vw, 58px);
  height: clamp(46px, 8vw, 58px);
  color: var(--gold-bright);
  background:
    radial-gradient(ellipse at 50% 30%, rgba(110, 197, 255, 0.15), transparent 70%),
    linear-gradient(160deg, rgba(20, 38, 70, 0.9), rgba(4, 14, 28, 0.95));
  border: 1px solid rgba(201, 165, 54, 0.55);
  border-radius: 14px;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.45s ease;
  text-decoration: none;
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.55),
    0 0 20px rgba(201, 165, 54, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: socialFloat 5s ease-in-out infinite;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(160deg, var(--brand), var(--gold), var(--brand));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.social-link svg {
  width: 52%;
  height: 52%;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.social-link:hover {
  color: #ffffff;
  border-color: var(--brand);
  transform: translateY(-6px) rotateX(8deg) scale(1.06);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.65),
    0 0 28px var(--brand),
    0 0 60px var(--brand),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.social-link:hover::before { opacity: 1; }

.social-link:hover svg {
  transform: scale(1.15);
  filter: drop-shadow(0 0 12px var(--brand)) drop-shadow(0 0 20px var(--brand));
}

.social-link:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.social-link[data-id="facebook"]  { --brand: #1877f2; }
.social-link[data-id="x"]         { --brand: #ffffff; }
.social-link[data-id="instagram"] { --brand: #e1306c; }
.social-link[data-id="linkedin"]  { --brand: #0a66c2; }
.social-link[data-id="youtube"]   { --brand: #ff0033; }
.social-link[data-id="whatsapp"]  { --brand: #25d366; }

.social-link:nth-child(2) { animation-delay: 0.2s; }
.social-link:nth-child(3) { animation-delay: 0.4s; }
.social-link:nth-child(4) { animation-delay: 0.6s; }
.social-link:nth-child(5) { animation-delay: 0.8s; }
.social-link:nth-child(6) { animation-delay: 1.0s; }

/* ───────────────────────────── Footer ───────────────────────────── */
.footer {
  margin-top: auto;
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  text-align: center;
  animation: fadeUp 1.4s 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.stay-tuned {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  letter-spacing: 0.3em;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-shadow: 0 0 14px rgba(201, 165, 54, 0.55);
}

.rocket {
  display: inline-block;
  animation: rocketBob 2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.6));
}

.brand-line {
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1rem);
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}

.copyright {
  margin-top: 0.4rem;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: rgba(245, 248, 252, 0.5);
}

/* ───────────────────────────── Animations ───────────────────────────── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes blockRise { from { opacity: 0; transform: translateY(40px) rotateX(40deg); filter: blur(8px); } to { opacity: 1; transform: translateY(0) rotateX(0); filter: blur(0); } }
@keyframes logoReveal { from { opacity: 0; transform: scale(0.82) rotateX(20deg); filter: blur(4px); } to { opacity: 1; transform: scale(1) rotateX(0); filter: blur(0); } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.65; transform: scale(1); } 50% { opacity: 1; transform: scale(1.10); } }
@keyframes haloPulse { 0%, 100% { opacity: 0.55; transform: scale(0.96); } 50% { opacity: 1; transform: scale(1.06); } }
@keyframes logoScan { 0% { background-position: -120% -120%; opacity: 0; } 35% { opacity: 0.9; } 60% { background-position: 220% 220%; opacity: 0.9; } 100% { background-position: 220% 220%; opacity: 0; } }
@keyframes shadowPulse { 0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); } 50% { opacity: 1; transform: translateX(-50%) scaleX(1.1); } }
@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes ringPulse { 0%, 100% { opacity: 0.45; transform: translate(-50%, -50%) rotateX(72deg) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) rotateX(72deg) scale(1.03); } }
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); } 50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); } }
@keyframes shine { 0% { left: -120%; } 60%, 100% { left: 160%; } }
@keyframes digitFlip {
  0%   { transform: scaleY(1)   translateY(0);   opacity: 1; filter: blur(0); }
  40%  { transform: scaleY(0.05) translateY(-2px); opacity: 0.4; filter: blur(2px); }
  100% { transform: scaleY(1)   translateY(0);   opacity: 1; filter: blur(0); }
}
@keyframes rocketBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes auroraDrift { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(2%, 1%) scale(1.05); } 100% { transform: translate(-2%, -1%) scale(1.02); } }
@keyframes socialFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes liveBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }

/* ───────────────────────────── Responsive ───────────────────────────── */
@media (max-width: 760px) {
  .countdown { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  .platform-rings { width: min(95vw, 420px); aspect-ratio: 1.4; }
  .headline { letter-spacing: 0.18em; }
  .headline::before,
  .headline::after { width: 22px; margin: 0 0.4em; }
  .ticker { height: 34px; }
  .ticker-item { font-size: 0.72rem; padding: 0 1rem; }
  .ticker::before { left: 8px; font-size: 0.55rem; padding: 2px 6px; }
}

@media (max-width: 420px) {
  .count-value { font-size: 1.7rem; }
  .count-label { letter-spacing: 0.2em; }
  .copy-line { font-size: 0.96rem; }
  .corner { width: 11px; height: 11px; }
  .corner::before { width: 11px; }
  .corner::after  { height: 11px; }
  .social-link { border-radius: 12px; }
}

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