* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background: var(--artwork-sky-blue);
  font-family: var(--font-readable, Inter, Arial, sans-serif);
  color: #fff;
}
.countdown-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 22%, rgba(255,255,255,.24), transparent 25%),
    radial-gradient(circle at 82% 74%, rgba(183,214,86,.32), transparent 30%),
    radial-gradient(circle at 52% 20%, rgba(7,164,220,.24), transparent 34%),
    linear-gradient(135deg, rgba(0,0,0,.26), transparent 46%),
    var(--artwork-sky-blue);
}
.countdown-page::before,
.countdown-page::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(8px);
}
.countdown-page::before {
  width: 620px;
  height: 620px;
  left: -240px;
  bottom: -260px;
  background: rgba(2,199,85,.28);
}
.countdown-page::after {
  width: 560px;
  height: 560px;
  right: -180px;
  top: -240px;
  background: rgba(7,164,220,.34);
}
.countdown-card {
  width: min(100%, 920px);
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4vw, 46px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 0%, rgba(7,164,220,.38), transparent 42%),
    radial-gradient(circle at 92% 100%, rgba(183,214,86,.18), transparent 38%),
    linear-gradient(145deg, rgba(10,18,32,.90), rgba(12,58,96,.78));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 96px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.13);
  backdrop-filter: blur(24px) saturate(138%);
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 58px);
}
.brand-name {
  font-size: 16px;
  letter-spacing: -0.08em;
  opacity: .95;
}
.brand-chip {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(0,0,0,.78);
  background: var(--artwork-yellow-green);
  box-shadow: 0 14px 32px rgba(183,214,86,.20);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .04em;
}
.countdown-copy {
  text-align: center;
}
.countdown-copy .eyebrow {
  margin: 0 0 12px;
  color: var(--artwork-yellow-green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.countdown-copy h1 {
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(58px, 10vw, 132px);
  line-height: .84;
  letter-spacing: .02em;
  text-transform: uppercase;
  text-shadow: 0 12px 0 rgba(0,0,0,.10);
}
.countdown-copy p:not(.eyebrow) {
  margin: 22px auto 0;
  max-width: 68ch;
  color: rgba(255,255,255,.72);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.65;
}
.timer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(30px, 5vw, 46px);
}
.timer-box {
  min-height: 126px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  padding: 18px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 44px rgba(0,0,0,.16);
}
.timer-box strong {
  font-family: var(--font-title);
  font-size: clamp(42px, 6vw, 78px);
  line-height: .82;
  letter-spacing: .02em;
}
.timer-box span {
  margin-top: 8px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.countdown-status {
  margin-top: 24px;
  min-height: 46px;
  display: grid;
  place-items: center;
  text-align: center;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.45;
}

.early-access-box {
  margin: 12px auto 20px;
  max-width: 620px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.early-access-box p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.45;
}
.early-access-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: 12px;
  color: rgba(0,0,0,.78);
  background: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255,255,255,.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.early-access-button:hover,
.early-access-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(255,255,255,.26);
}

.countdown-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.10);
}
.countdown-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--artwork-yellow-green), #fff, #07a4dc);
  box-shadow: 0 0 26px rgba(183,214,86,.34);
  transition: width .55s ease;
}
.countdown-note {
  margin: 18px auto 0;
  max-width: 62ch;
  color: rgba(255,255,255,.54);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 720px) {
  .early-access-box { flex-direction: column; text-align: center; }
  .early-access-button { width: 100%; }
  .timer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timer-box { min-height: 112px; }
}
@media (max-width: 420px) {
  .timer-grid { grid-template-columns: 1fr; }
}

@media (min-width: 700px) and (max-width: 1180px) {
  .countdown-card {
    width: min(100%, 860px);
  }

  .timer-grid {
    gap: 12px;
  }

  .timer-box {
    min-height: 118px;
  }
}

@media (max-width: 699px), (max-height: 520px) {
  html,
  body {
    overflow: hidden;
  }

  .countdown-page {
    display: none !important;
  }

  body::before {
    content: "Dieses Panel ist für iPad, Tablet und Desktop optimiert.";
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    text-align: center;
    color: #ffffff;
    font-family: var(--font-title);
    font-size: clamp(34px, 12vw, 66px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background:
      radial-gradient(circle at 22% 18%, rgba(7,164,220,.34), transparent 30%),
      radial-gradient(circle at 80% 82%, rgba(183,214,86,.30), transparent 32%),
      linear-gradient(145deg, rgba(8,18,32,.98), rgba(11,62,103,.94));
    z-index: 9998;
  }

  body::after {
    content: "Bitte öffne die Seite auf einem iPad oder größeren Bildschirm.";
    position: fixed;
    left: 50%;
    bottom: 32px;
    width: min(320px, calc(100% - 40px));
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,.74);
    font-family: var(--font-readable);
    font-size: 14px;
    line-height: 1.45;
    z-index: 9999;
  }
}
