html, body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, oklch(0.52 0.09 220) 0%, oklch(0.32 0.08 230) 100%);
  font-family: Helvetica, Arial, sans-serif;
}

.page {
  width: 100%;
  max-width: 1007px;
  height: 100vh;
  margin: 0 auto;
  background: linear-gradient(180deg, oklch(0.52 0.09 220) 0%, oklch(0.32 0.08 230) 100%);
  box-sizing: border-box;
  padding: clamp(10px, 2vh, 28px) clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(10px, 2vh, 20px);
  overflow: hidden;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  flex-shrink: 0;
}

.logo { height: 56px; width: auto; }

.social { display: flex; align-items: center; gap: 18px; }
.social-label { color: oklch(0.9 0.02 220); font-size: 15px; letter-spacing: 0.3px; }
.divider { width: 1px; height: 24px; background: oklch(0.9 0.02 220 / 0.35); }
.social-icons { display: flex; gap: 10px; }

.icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: oklch(0.9 0.02 220 / 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.15s ease;
}
.icon-btn:hover { background: oklch(0.9 0.02 220 / 0.22); }

.panel {
  background: oklch(0.62 0.06 215 / 0.35);
  border-radius: 6px;
  padding: clamp(16px, 3vh, 36px) clamp(20px, 3vw, 40px);
  text-align: center;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.title {
  font-size: 44px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  margin: 0 0 clamp(10px, 1.5vh, 22px);
  text-shadow: 0 1px 4px oklch(0.2 0.03 220 / 0.4);
}

.teaser {
  max-width: 680px;
  margin: 0 auto clamp(12px, 2vh, 32px);
  color: oklch(0.94 0.01 220);
  font-size: 16px;
  line-height: 1.6;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 16px);
  margin-bottom: clamp(14px, 2vh, 36px);
}

.countdown-part {
  background: oklch(0.24 0.03 225 / 0.5);
  border: 1px solid oklch(0.9 0.02 220 / 0.2);
  border-radius: 8px;
  width: clamp(60px, 8vw, 84px);
  padding: clamp(8px, 1.5vh, 14px) 0;
}
.countdown-value { font-size: 30px; font-weight: 800; color: white; line-height: 1; }
.countdown-label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: oklch(0.9 0.02 220 / 0.75);
  margin-top: 6px;
}

.subscribe-line { margin: 0 0 6px; color: oklch(0.94 0.01 220); font-size: 15px; }

.subscribe-form {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: clamp(12px, 2vh, 22px) auto 0;
  max-width: 420px;
}
.subscribe-form input {
  flex: 1;
  padding: clamp(10px, 1.5vh, 14px) 16px;
  border: none;
  border-radius: 3px 0 0 3px;
  font-size: 15px;
  outline: none;
}
.subscribe-form button {
  background: #d92b2b;
  color: white;
  border: none;
  padding: clamp(10px, 1.5vh, 14px) 26px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: background 0.15s ease;
}
.subscribe-form button:hover { background: #c02323; }

.success-msg { color: oklch(0.9 0.15 145); font-size: 14px; margin-top: 14px; }
.error-msg { color: oklch(0.75 0.18 25); font-size: 14px; margin-top: 14px; }

.footer {
  border-top: 1px solid oklch(0.9 0.02 220 / 0.2);
  padding-top: clamp(8px, 1.5vh, 14px);
  flex-shrink: 0;
}
.footer p { color: oklch(0.85 0.02 220 / 0.7); font-size: 12px; margin: 0; }

@media (max-width: 560px) {
  .page { height: auto; min-height: 100vh; overflow: visible; }
  html, body { overflow: visible; }
  .title { font-size: clamp(28px, 9vw, 44px); white-space: nowrap; }
  .countdown { gap: 8px; }
  .countdown-part { width: 62px; padding: 8px 0; }
  .countdown-value { font-size: 22px; }
  .subscribe-form { flex-direction: column; gap: 10px; }
  .subscribe-form input { border-radius: 3px; }
  .subscribe-form button { border-radius: 3px; padding: 12px 0; }
}
