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

:root {
  --pink: #FF2D8B;
  --cyan: #00D4FF;
  --dark: #06080F;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
}

/* ── VIDEO BG ── */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
  opacity: 0.85;
}

.video-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--dark) 30%, transparent 100%);
  z-index: 1;
}

/* ── OVERLAY ── */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 65% at 50% 48%, rgba(6,8,15,0.72) 0%, rgba(6,8,15,0.3) 55%, transparent 80%),
    linear-gradient(to bottom,
      rgba(6,8,15,0.3)  0%,
      rgba(6,8,15,0.0)  20%,
      rgba(6,8,15,0.0)  55%,
      rgba(6,8,15,0.6)  80%,
      rgba(6,8,15,0.97) 100%
    );
}

/* ── LOGO ── */
.logo {
  position: absolute;
  top: 18px; left: 24px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 0.7s ease 0.2s forwards;
}

.logo img {
  width: 130px; height: auto;
  filter: drop-shadow(0 0 6px rgba(0,212,255,0.35));
}

/* ── CONTENT ── */
.content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 860px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,212,255,0.12);
  border: 1px solid rgba(0,212,255,0.4);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0.5s forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: dotBlink 1.5s ease-in-out infinite;
}

/* ── HEADLINE ── */
h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.6rem, 7.5vw, 4.8rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.0;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.9),
    0 4px 20px rgba(0,0,0,0.8),
    0 0 60px rgba(0,0,0,0.6);
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.7s forwards;
}

h1 .pink { color: var(--pink); }
h1 .cyan { color: var(--cyan); }

/* ── PULLS ROW ── */
.pulls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.9s forwards;
}

.pull-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid;
}

.pull-card.cyan {
  background: rgba(0,212,255,0.1);
  border-color: rgba(0,212,255,0.35);
}

.pull-card.pink {
  background: rgba(255,45,139,0.1);
  border-color: rgba(255,45,139,0.35);
}

.pull-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
}

.pull-card.cyan .pull-number { color: var(--cyan); }
.pull-card.pink .pull-number { color: var(--pink); }

.pull-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

.pull-divider {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
}

.pull-bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}

.pull-bonus-text {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.pull-bonus-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.pull-bonus-value span { color: var(--pink); }

/* ── CTA ── */
.cta-wrap {
  opacity: 0;
  animation: fadeInUp 0.7s ease 1.1s forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cyan);
  color: #06080F;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.3rem, 3.5vw, 1.65rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 60px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 20;
  min-width: 300px;
  box-shadow: 0 0 0 0 rgba(0,212,255,0.8), 0 6px 35px rgba(0,212,255,0.5);
  animation: ctaPulse 1.5s ease-in-out 2s infinite;
  transition: transform 0.12s, box-shadow 0.12s;
}

.cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,0.45) 50%, transparent 75%);
  animation: shimmer 2s ease-in-out 2.3s infinite;
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 0 transparent, 0 12px 45px rgba(0,212,255,0.7);
  animation: none;
}

.cta-btn:active { transform: translateY(-1px) scale(1.01); }

.cta-arrow {
  font-size: 1.5rem;
  font-style: normal;
  animation: arrowBounce 1.5s ease-in-out 2s infinite;
}

.cta-btn:hover .cta-arrow {
  animation: none;
  transform: translateX(5px);
  transition: transform 0.2s;
}

.cta-note {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}


/* ── ANIMATIONS ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(0,212,255,0.8), 0 6px 35px rgba(0,212,255,0.5); transform: scale(1); }
  45%  { box-shadow: 0 0 0 12px rgba(0,212,255,0), 0 6px 50px rgba(0,212,255,0.65); transform: scale(1.022); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0.8), 0 6px 35px rgba(0,212,255,0.5); transform: scale(1); }
}

@keyframes shimmer {
  0%   { left: -120%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(6px); }
}

@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* ── MOBILE ── */
@media (max-width: 600px) {
  .logo img { width: 100px; }
  h1 { font-size: 2.2rem; }
  .pulls-row { flex-wrap: wrap; gap: 8px; }
  .pull-card { padding: 8px 14px; }
  .pull-number { font-size: 2rem; }
  .cta-btn {
    min-width: unset;
    width: 90vw;
    max-width: 300px;
    font-size: 1.2rem;
    padding: 18px 24px;
  }
  .char-strip { height: 130px; }
  .char-card  { height: 126px; }
}
