@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Orbitron:wght@500;600;700;800&display=swap');

:root {
  --red: #e91f2b;
  --red-bright: #ff3945;
  --white: #f2f4f7;
  --muted: #9ba2ad;
  --bg: #06070a;
  --panel: rgba(12, 15, 21, .78);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--white);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: 'Rajdhani', sans-serif;
  background:
    radial-gradient(circle at 50% 38%, rgba(233,31,43,.13), transparent 27%),
    radial-gradient(circle at 50% 100%, rgba(233,31,43,.08), transparent 35%),
    linear-gradient(180deg, #090b10 0%, #050609 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 18px 60px;
  position: relative;
}

.hero {
  width: min(1050px, 100%);
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-wrap {
  width: min(760px, 92vw);
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 22px rgba(233,31,43,.18));
}

.logo {
  width: 100%;
  height: auto;
  display: block;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  border: 1px solid rgba(233,31,43,.42);
  background: rgba(233,31,43,.055);
  color: #ff5660;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.58rem, 1.3vw, .72rem);
  letter-spacing: .18em;
  margin: 4px 0 14px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  animation: pulse 1.5s infinite;
}

.intro {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.3vw, 18px);
  margin: 0 auto 25px;
}

.time-box {
  min-width: clamp(70px, 13vw, 145px);
  padding: clamp(12px, 2vw, 20px) clamp(8px, 1.5vw, 18px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015)),
    var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    inset 0 0 25px rgba(255,255,255,.025),
    0 8px 35px rgba(0,0,0,.35);
  position: relative;
}

.time-box::before,
.time-box::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: var(--red);
  opacity: .8;
}

.time-box::before {
  top: -1px; left: -1px;
  border-top: 1px solid; border-left: 1px solid;
}

.time-box::after {
  bottom: -1px; right: -1px;
  border-bottom: 1px solid; border-right: 1px solid;
}

.time-box span {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem, 6vw, 4.7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  text-shadow: 0 0 22px rgba(233,31,43,.22);
}

.time-box small {
  display: block;
  margin-top: 9px;
  color: #888f9a;
  font-size: clamp(.55rem, 1.2vw, .7rem);
  letter-spacing: .18em;
}

.separator {
  color: var(--red);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.3rem, 4vw, 2.6rem);
  transform: translateY(-10px);
  text-shadow: 0 0 15px rgba(233,31,43,.55);
}

.event-date {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  color: #d7dbe0;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(.65rem, 1.7vw, .9rem);
  letter-spacing: .2em;
}

.line {
  width: min(130px, 16vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red));
}

.line:last-child {
  background: linear-gradient(90deg, var(--red), transparent);
}

.message {
  margin: 20px auto 0;
  max-width: 650px;
  color: #777e88;
  font-size: 1rem;
  letter-spacing: .04em;
}

.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.35) 0 1px, transparent 1.5px),
    radial-gradient(circle at 83% 18%, rgba(233,31,43,.5) 0 1px, transparent 1.5px),
    radial-gradient(circle at 72% 76%, rgba(255,255,255,.22) 0 1px, transparent 1.5px),
    radial-gradient(circle at 28% 72%, rgba(233,31,43,.35) 0 1px, transparent 1.5px);
  background-size: 230px 190px, 310px 270px, 280px 230px, 360px 310px;
  animation: drift 16s linear infinite;
}

.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: .045;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    #fff 4px
  );
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.75); }
}

@keyframes drift {
  from { transform: translate3d(0,0,0); }
  50% { transform: translate3d(-10px,8px,0); }
  to { transform: translate3d(0,0,0); }
}

@media (max-width: 620px) {
  .page { padding-top: 20px; }
  .logo-wrap { width: 100%; }
  .countdown { gap: 4px; }
  .time-box { min-width: 0; flex: 1; }
  .separator { font-size: 1rem; }
  .event-date { letter-spacing: .11em; }
}
