:root {
  --navy: #0a1a3a;
  --navy-deep: #061127;
  --blue: #1e4fb8;
  --blue-light: #4d7ff0;
  --gold: #d9a441;
  --text-light: #eaf0ff;
  --text-muted: #a9b7d9;
  --white: #ffffff;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at 20% 20%, var(--navy) 0%, var(--navy-deep) 60%, #030814 100%);
  color: var(--text-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

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

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

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

.shape-2 {
  width: 500px;
  height: 500px;
  background: var(--gold);
  bottom: -150px;
  right: -150px;
  opacity: 0.12;
  animation: float2 16s ease-in-out infinite;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: var(--blue);
  top: 40%;
  right: 10%;
  opacity: 0.15;
  animation: float1 14s ease-in-out infinite reverse;
}

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

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

.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 90%;
  text-align: center;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
}

.subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 36px;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.time-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 72px;
}

.time-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue-light);
}

.time-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Progress bar */
.progress-wrap {
  margin-bottom: 36px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 8px;
  animation: pulseWidth 3s ease-in-out infinite;
}

@keyframes pulseWidth {
  0%, 100% { width: 60%; }
  50% { width: 70%; }
}

.progress-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Notify form */
.notify-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input::placeholder {
  color: var(--text-muted);
}

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

.notify-form button {
  padding: 13px 24px;
  border: none;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}

.notify-form button:hover {
  background: #e6b757;
  transform: translateY(-1px);
}

.form-message {
  min-height: 20px;
  font-size: 13px;
  color: #6fe3a0;
  margin-bottom: 28px;
}

/* Socials */
.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}

.contact {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact a {
  color: var(--blue-light);
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

.footer {
  font-size: 12px;
  color: rgba(169, 183, 217, 0.5);
  margin-top: 14px;
}

@media (max-width: 480px) {
  .container {
    padding: 36px 20px;
  }
  .time-block {
    min-width: 60px;
    padding: 10px 12px;
  }
  .time-value {
    font-size: 20px;
  }
}
