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

:root {
  --cyan: #00e5ff;
  --cyan-dim: #00a8bc;
  --yellow: #ffeb3b;
  --yellow-light: #fff176;
  --yellow-glow: rgba(255, 214, 0, 0.4);
  --dark: #000000;
  --dark-bg: #06080c;
  --text-muted: #8090a0;
  --text-light: #c0c8d0;
  --red: #ff3040;
  --green: #00e676;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background: var(--dark-bg);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* Background image layer */
.bg-layer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.45;
  filter: brightness(0.75) saturate(0.8);
}

/* Dark gradient overlays on top of bg image */
.bg-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6,8,12,0.5) 0%, rgba(6,8,12,0.3) 30%, rgba(6,8,12,0.6) 70%, rgba(6,8,12,0.95) 100%),
    linear-gradient(90deg, rgba(6,8,12,0.85) 0%, rgba(6,8,12,0.2) 40%, transparent 60%, rgba(6,8,12,0.4) 100%),
    radial-gradient(ellipse 70% 50% at 50% 45%, transparent 0%, rgba(6,8,12,0.7) 100%);
  pointer-events: none;
}

/* Scan lines */
.scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.04) 2px,
    rgba(0, 0, 0, 0.04) 4px
  );
  pointer-events: none;
  z-index: 1000;
}

/* Number watermark */
.watermark-135 {
  position: fixed;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 25vw, 280px);
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: -8px;
  line-height: 1;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

/* Main container */
.container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  padding: 50px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Title block */
.free-blink {
  color: var(--yellow);
  animation: softPulse 2s ease-in-out infinite;
}

@keyframes softPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 235, 59, 0.5); }
  50% { opacity: 0.7; text-shadow: 0 0 25px rgba(255, 235, 59, 0.8); }
}

.title-main {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 7vw, 82px);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  animation: fadeSlideUp 0.6s ease-out 0.1s both;
}

.title-sub {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 3vw, 32px);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 12px;
  line-height: 1.3;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  animation: fadeSlideUp 0.6s ease-out 0.25s both;
  margin-top: 10px;
  margin-bottom: 6px;
}

/* Yellow subtitle */
.sub-yellow {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--yellow);
  letter-spacing: 1.2px;
  margin-bottom: 16px;
  animation: fadeSlideUp 0.6s ease-out 0.38s both;
}

/* Checkmarks row */
.checks-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: clamp(13px, 1.8vw, 16px);
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 12px;
  animation: fadeSlideUp 0.6s ease-out 0.48s both;
}

.check-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.check-item .tick {
  color: var(--green);
  font-size: 1.1em;
}

/* Urgency line */
.urgency-line {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 36px;
  font-style: italic;
  animation: fadeSlideUp 0.6s ease-out 0.52s both;
}

/* CTA */
.cta-wrapper {
  position: relative;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.6s ease-out 0.58s both;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 56px;
  background: linear-gradient(180deg, var(--yellow-light) 0%, var(--yellow) 50%, #e0d200 100%);
  border: none;
  border-radius: 50px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 2vw, 17px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 0 30px var(--yellow-glow),
    0 4px 20px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.3), 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 235, 59, 0.6), 0 0 70px rgba(255, 235, 59, 0.2), 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
    transform: scale(1.02);
  }
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 50px var(--yellow-glow),
    0 0 80px rgba(255, 214, 0, 0.2),
    0 6px 30px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.cta-btn:active {
  transform: translateY(0) scale(0.98);
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 56px;
  background: linear-gradient(135deg, rgba(255,214,0,0.12), transparent, rgba(255,214,0,0.08));
  z-index: -1;
  animation: ringPulse 2.5s ease-in-out infinite;
}

/* Footer text */
.footer-info {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
  animation: fadeSlideUp 0.6s ease-out 0.65s both;
}

.footer-copy {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.2);
  animation: fadeSlideUp 0.6s ease-out 0.7s both;
}

.footer-copy a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
}

.footer-copy a:hover {
  color: rgba(255,255,255,0.5);
}

/* System status bottom-left */
.system-status {
  position: fixed;
  bottom: 20px;
  left: 24px;
  z-index: 10;
  font-family: 'Share Tech Mono', monospace;
  animation: fadeIn 1s ease-out 1s both;
}

.status-bar {
  width: 50px;
  height: 3px;
  background: var(--cyan);
  margin-bottom: 6px;
  box-shadow: 0 0 8px rgba(0,229,255,0.5);
  animation: statusBarLoad 1.2s ease-out 1.2s both;
}

.status-text {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}

/* Pulls watermark text */
.pulls-watermark {
  position: fixed;
  left: 30px;
  bottom: 38%;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.06);
  writing-mode: vertical-rl;
  z-index: 1;
  pointer-events: none;
}

/* Animations */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes statusBarLoad {
  from { width: 0; }
  to { width: 50px; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 40px 16px; }

  .bg-layer img {
    object-position: 70% center;
    opacity: 0.2;
  }

  .watermark-135 {
    left: -15px;
    font-size: 120px;
  }

  .checks-row { gap: 12px; }

  .cta-btn {
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .system-status { bottom: 12px; left: 14px; }
  .pulls-watermark { display: none; }
}
