:root {
  --bg-color: #FDF8EE;
  --bg-accent: #F7ECD4;
  --text-primary: #4A1C14;
  --text-secondary: #6B5546;
  --accent-teal: #005953;
  --accent-saffron: #E58A3C;
  --accent-gold: #D2A54E;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(210, 165, 78, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
}

body {
  background-color: var(--bg-color);
  background-image: radial-gradient(circle at 50% 120%, var(--bg-accent) 0%, var(--bg-color) 70%);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
  position: relative;
}

/* Background Motifs (Mandala/Temple Vibe) */
.background-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-saffron);
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 600px;
  height: 600px;
  background: var(--accent-teal);
  bottom: -150px;
  right: -100px;
  animation-delay: -5s;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: var(--accent-gold);
  top: 40%;
  left: 60%;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
  100% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Upper Arch Framing simulation */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, var(--accent-saffron) 0%, transparent 100%);
  opacity: 0.05;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 10;
}

header {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.logo-badge {
  background: #fff;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(229, 138, 60, 0.15);
  border: 4px solid var(--accent-gold);
  font-size: 2.2rem;
  position: relative;
}

.logo-badge::after {
  content: '🪶'; /* Peacock feather-ish element fallback */
  font-size: 1.2rem;
  position: absolute;
  bottom: -5px;
  right: -5px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-primary);
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 2px solid var(--glass-border);
  border-radius: 28px;
  padding: 3.5rem;
  text-align: center;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(74, 28, 20, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  overflow: hidden;
}

/* Card Decorative corner simulation */
.glass-card::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 4px solid var(--accent-gold);
  border-left: 4px solid var(--accent-gold);
  top: 15px;
  left: 15px;
}
.glass-card::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-bottom: 4px solid var(--accent-gold);
  border-right: 4px solid var(--accent-gold);
  bottom: 15px;
  right: 15px;
}

.badge {
  display: inline-block;
  align-self: center;
  background: rgba(229, 138, 60, 0.1);
  color: var(--accent-saffron);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(229, 138, 60, 0.2);
  letter-spacing: 0.5px;
}

.title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
}

.gradient-text {
  color: var(--accent-saffron);
}

.subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 0.5rem 0;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  border: 2px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.2rem;
  min-width: 85px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.02);
}

.countdown-item .number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-teal);
}

.countdown-item .label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 0.35rem;
  font-weight: 600;
}

/* Form */
.notify-form {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 16px;
  border: 2px solid var(--glass-border);
}

.notify-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  outline: none;
  font-size: 1rem;
}

.notify-form input::placeholder {
  color: #a09385;
}

.notify-form button {
  background: var(--accent-teal);
  color: #ffffff;
  border: none;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 89, 83, 0.15);
}

.notify-form button:hover {
  transform: translateY(-2px);
  background-color: #00423D;
  box-shadow: 0 6px 14px rgba(0, 89, 83, 0.25);
}

footer {
  padding: 2rem 0;
}

footer p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 640px) {
  .glass-card {
    padding: 2.5rem 1.5rem;
  }
  .title {
    font-size: 2rem;
  }
  .notify-form {
    flex-direction: column;
  }
  .notify-form button {
    width: 100%;
  }
  .countdown {
    gap: 0.75rem;
  }
  .countdown-item {
    min-width: 70px;
    padding: 0.85rem;
  }
}

