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

body {
  background-color: #000000;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}

.ambient-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(191, 149, 63, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 0 24px;
}

.logo-assembly {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: pulse 3s ease-in-out infinite;
}

.orbit-inner { width: 195px; height: 195px; border-color: rgba(191, 149, 63, 0.25); animation-delay: 0s; }
.orbit-middle { width: 220px; height: 220px; border-color: rgba(191, 149, 63, 0.45); box-shadow: 0 0 15px rgba(191, 149, 63, 0.1), inset 0 0 15px rgba(191, 149, 63, 0.05); animation-delay: 0.5s; }
.orbit-outer { width: 250px; height: 250px; border-color: rgba(191, 149, 63, 0.15); animation-delay: 1s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.02); opacity: 1; }
}

.halo-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(191, 149, 63, 0.25) 0%, rgba(191, 149, 63, 0.08) 50%, transparent 75%);
  border-radius: 50%;
  z-index: 0;
}

.logo-image {
  width: 150px;
  height: 150px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: contrast(110%) brightness(110%);
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: scale(0.85);
  animation: logoFadeIn 1.2s ease-out forwards;
}

@keyframes logoFadeIn { to { opacity: 1; transform: scale(1); } }

.lens-flare {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 235, 150, 0.8) 50%, transparent 100%);
  opacity: 0;
  animation: flareFadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes flareFadeIn { to { width: 300px; opacity: 1; } }

.notification-card {
  width: calc(100% - 48px);
  max-width: 380px;
  background: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border-top: 1px solid rgba(191, 149, 63, 0.4);
  border-bottom: 1px solid rgba(191, 149, 63, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 22px 24px 18px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.6s ease-out 0.3s forwards;
}

@keyframes slideUpFadeIn { to { opacity: 1; transform: translateY(0); } }

.card-header {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: #d4a843;
  margin-bottom: 8px;
}

.card-subtext {
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.card-disclosure {
  font-size: 9px;
  font-style: italic;
  color: rgba(191, 149, 63, 0.7);
  line-height: 1.4;
}

.action-row {
  width: calc(100% - 48px);
  max-width: 380px;
  display: flex;
  gap: 14px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpFadeIn 0.6s ease-out 0.5s forwards;
}

.timer-container { position: relative; width: 52px; height: 52px; flex-shrink: 0; }
.countdown-svg { width: 52px; height: 52px; }
.timer-progress { stroke-dasharray: 144.51; stroke-dashoffset: 0; transition: stroke-dashoffset 0.1s linear; }

.timer-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 16px;
  color: #d4a843;
  pointer-events: none;
}

.whatsapp-button {
  flex: 1;
  background-color: #25D366;
  border: none;
  border-radius: 28px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.whatsapp-button:hover { filter: brightness(1.1); }
.whatsapp-button:active { transform: scale(0.98); }

.whatsapp-button span {
  font-weight: 700;
  font-size: 15px;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.whatsapp-icon { width: 20px; height: 20px; flex-shrink: 0; }

.diamond-accent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  color: #d4a843;
  opacity: 0.6;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 480px) {
  .logo-assembly { width: 200px; height: 200px; }
  .orbit-inner { width: 165px; height: 165px; }
  .orbit-middle { width: 190px; height: 190px; }
  .orbit-outer { width: 210px; height: 210px; }
  .logo-image { width: 130px; height: 130px; }
  .card-header { font-size: 20px; }
  .whatsapp-button span { font-size: 14px; }
}
