* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple: #7b2ff7;
  --pink: #f107a3;
  --dark: #120021;
  --light: #ffffff;
}

body {
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, var(--dark), #2a0146 55%, var(--purple));
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  position: relative;
}

.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
}

.shape-1 {
  width: 420px;
  height: 420px;
  background: var(--pink);
  top: -120px;
  left: -120px;
  animation: float 10s ease-in-out infinite;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: var(--purple);
  bottom: -100px;
  right: -80px;
  animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
  width: 220px;
  height: 220px;
  background: #00d4ff;
  bottom: 20%;
  left: 10%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(30px) translateX(20px); }
}

.container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
  padding: 48px 32px;
  text-align: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.logo .dot {
  color: var(--pink);
}

h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 16px 18px;
  min-width: 76px;
  backdrop-filter: blur(6px);
}

.time-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.time-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.notify-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.notify-form input {
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--light);
  min-width: 260px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.notify-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.notify-form input:focus {
  border-color: var(--pink);
}

.notify-form button {
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 7, 163, 0.4);
}

.form-message {
  min-height: 20px;
  font-size: 0.9rem;
  color: #7CFFC4;
  margin-bottom: 28px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 24px;
}

.social-links a {
  color: var(--light);
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 480px) {
  .time-box {
    min-width: 64px;
    padding: 12px 10px;
  }
  .notify-form input {
    min-width: 100%;
  }
}
