:root {
  --bg: #07102a;
  --bg-soft: #0e1d44;
  --primary: #002060;
  --primary-light: #2b4ea3;
  --accent: #D80810;
  --text: #f2f4fa;
  --text-dim: #aab3cf;
  --radius: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: var(--primary);
  top: -120px;
  left: -100px;
  animation: float1 12s ease-in-out infinite;
}

.shape-2 {
  width: 360px;
  height: 360px;
  background: var(--accent);
  bottom: -140px;
  right: -100px;
  animation: float2 14s ease-in-out infinite;
}

.shape-3 {
  width: 260px;
  height: 260px;
  background: var(--primary-light);
  top: 40%;
  left: 60%;
  animation: float1 10s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, -40px); }
}

.topbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 28px 6vw;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 6vw 60px;
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 50%;
  background: #fff;
  padding: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff, var(--primary-light) 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 600px;
}

.subtitle strong {
  color: var(--text);
}

.countdown {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
}

.time-box {
  background: var(--bg-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
}

.time-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.notify-form {
  display: flex;
  width: 100%;
  max-width: 420px;
  gap: 10px;
  margin-bottom: 10px;
}

.notify-form input {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--bg-soft);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input:focus {
  border-color: var(--primary);
}

.notify-form button {
  padding: 14px 22px;
  border: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #06121f;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.form-message {
  min-height: 20px;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 30px;
}

.progress-wrap {
  width: 100%;
  max-width: 420px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--bg-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 999px;
}

.progress-text {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

@media (max-width: 480px) {
  .countdown {
    gap: 8px;
  }
  .time-box {
    min-width: 60px;
    padding: 10px 12px;
  }
  .notify-form {
    flex-direction: column;
  }
}
