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

:root {
  --red: #E10600;
  --red-glow: 0 0 30px rgba(225,6,0,0.25), 0 0 60px rgba(225,6,0,0.1);
  --text-glow: 0 0 20px rgba(225,6,0,0.35);
}

body {
  font-family: "Cairo", sans-serif;
  background: #0B0B0F;
  color: #fff;
  overflow: hidden;
  height: 100vh;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225,6,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 100%, rgba(139,0,0,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 70% 100%, rgba(139,0,0,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #0B0B0F, #0B0F12, #0B0B0F);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  pointer-events: none;
}

.hero-scanner {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  animation: scan 3s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes scan {
  0%, 100% { top: 0; }
  50% { top: 100%; }
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* ─── BADGE ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--red);
  border: 1px solid rgba(225,6,0,0.2);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  background: rgba(225,6,0,0.05);
}

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

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

/* ─── TITLE ─── */
h1 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.line1 {
  font-size: 4.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: var(--text-glow);
}

.line2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  color: var(--red);
  letter-spacing: 8px;
  text-shadow: 0 0 40px rgba(225,6,0,0.4), 0 0 80px rgba(225,6,0,0.15);
}

.sub {
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(191,195,201,0.6);
  margin-bottom: 2.5rem;
}

/* ─── COUNTDOWN ─── */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 1rem 1.8rem;
  min-width: 85px;
}

.num {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--red);
  text-shadow: var(--text-glow);
  line-height: 1;
}

.lbl {
  font-size: 0.7rem;
  color: rgba(191,195,201,0.4);
  letter-spacing: 2px;
  margin-top: 0.2rem;
}

.sep {
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(225,6,0,0.25);
  padding-bottom: 1.2rem;
}

/* ─── BUTTONS ─── */
.actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s;
}

.btn:hover {
  background: #FF2A2A;
  box-shadow: var(--red-glow);
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  border: 1px solid rgba(191,195,201,0.2);
  color: rgba(191,195,201,0.7);
}

.btn.outline:hover {
  border-color: var(--red);
  color: var(--red);
  box-shadow: none;
  transform: none;
}

/* ─── CORNERS ─── */
.corner {
  position: absolute;
  width: 50px;
  height: 50px;
  border-color: rgba(225,6,0,0.12);
  border-style: solid;
  pointer-events: none;
}

.tl { top: 2rem; left: 2rem; border-width: 2px 0 0 2px; }
.tr { top: 2rem; right: 2rem; border-width: 2px 2px 0 0; }
.bl { bottom: 2rem; left: 2rem; border-width: 0 0 2px 2px; }
.br { bottom: 2rem; right: 2rem; border-width: 0 2px 2px 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .line1 { font-size: 2.5rem; }
  .line2 { font-size: 1.8rem; letter-spacing: 4px; }
  .item { min-width: 65px; padding: 0.7rem 0.8rem; }
  .num { font-size: 1.6rem; }
  .sep { display: none; }
  .countdown { gap: 0.4rem; flex-wrap: wrap; }
  .corner { display: none; }
}
