:root {
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Roboto", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 45%),
    linear-gradient(180deg, #111319 0%, #0a0a0f 100%);
  color: #f5f5f5;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page__image-wrap {
  width: min(92vw, 520px);
  margin-top: 0.5rem;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.7));
  opacity: 0.85;
}

.page__image {
  display: block;
  width: 100%;
  height: auto;
}

.page__title {
  margin: 0;
  font-size: clamp(2rem, 14vw, 5rem);
  line-height: 0.95;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-wrap: balance;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.2);
}

.page__countdown {
  margin: 0;
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
  opacity: 0.92;
}

.page__note {
  margin: 0;
  max-width: 800px;
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  line-height: 1.45;
  color: #d7d7d7;
}

.page__link {
  color: #ffffff;
  font-weight: 700;
}

.page__link:hover,
.page__link:focus-visible {
  color: #c9d7ff;
}

@media (min-width: 768px) {
  .page {
    padding: 2rem 2rem 1.5rem;
  }

  .page__image-wrap {
    margin-top: 1rem;
  }
}
