:root {
  --bg: #070b14;
  --card: rgba(255, 255, 255, 0.06);
  --cardBorder: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.7);
  --muted2: rgba(255, 255, 255, 0.55);
  --accent: #7c3aed;
  --accent2: #22d3ee;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: radial-gradient(
        1200px 700px at 10% 10%,
        rgba(124, 58, 237, 0.18),
        transparent 55%
      ),
    radial-gradient(
        900px 600px at 90% 30%,
        rgba(34, 211, 238, 0.12),
        transparent 55%
      ),
    radial-gradient(
        900px 650px at 50% 100%,
        rgba(255, 255, 255, 0.05),
        transparent 60%
      ),
    var(--bg);
  overflow-x: hidden;
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.card {
  width: min(1100px, 100%);
  border-radius: 22px;
  border: 1px solid var(--cardBorder);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  padding: 26px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(
    1000px 450px at 20% 10%,
    rgba(124, 58, 237, 0.12),
    transparent 55%
  );
}

.cardLeft {
  position: relative;
  z-index: 1;
  padding: 6px 4px;
}

.brandRow {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.brandLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brandLogo {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 7px 12px;
  border-radius: 999px;
}

.title {
  margin: 0;
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.subtitle {
  margin: 12px 0 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 52ch;
}

.countdownWrap {
  margin-top: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  padding: 16px;
}

.countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.timeBox {
  min-width: 92px;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.timeValue {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.timeLabel {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2);
}

.timeSep {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.progress {
  margin-top: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progressBar {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.28);
  transition: width 500ms ease;
}

.meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.metaText {
  font-size: 13px;
  color: var(--muted2);
}

.dot {
  color: rgba(255, 255, 255, 0.25);
}

.tips {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.14);
  max-width: 56ch;
}

.tipsTitle {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.tipsList {
  margin: 10px 0 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.cardRight {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 8px;
}

.hero {
  width: min(420px, 100%);
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
}

.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(124, 58, 237, 0.22),
    rgba(34, 211, 238, 0.14),
    transparent 70%
  );
  filter: blur(10px);
  z-index: -1;
}

@media (max-width: 920px) {
  .card {
    grid-template-columns: 1fr;
  }

  .cardRight {
    order: -1;
  }

  .hero {
    max-height: 320px;
  }

  .timeBox {
    min-width: 78px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .progressBar {
    transition: none;
  }
}


