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

body {
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #18122B 0%, #2D3250 100%);
  color: #f5f5f5;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Background Glow */
body::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.08),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.container {
  text-align: center;
  z-index: 2;
  padding: 20px;
  animation: fadeIn 1.5s ease;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: lowercase;
  margin-bottom: 15px;
}

.divider {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 25px;
}

.divider.gold {
  background: linear-gradient(90deg, #FFD700 0%, #BFA14A 100%);
  height: 2px;
  box-shadow: 0 0 8px 1px #FFD70044;
}

.subtitle {
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.message {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.60);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.luxury-highlight {
  color: #FFD700;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 0 0 8px #FFD70033;
}

.perfume-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  opacity: 0.95;
  color: #FFD700;
  filter: drop-shadow(0 0 8px #FFD70088);
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.3s;
  cursor: pointer;
}
.perfume-icon:hover {
  transform: scale(1.18) rotate(-8deg);
  filter: drop-shadow(0 0 18px #FFD700cc);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Call to Action */
.cta {
  margin-top: 18px;
}
.cta-btn {
  background: linear-gradient(90deg, #FFD700 0%, #BFA14A 100%);
  color: #18122B;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 10px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px 0 #FFD70033;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  border: none;
  outline: none;
  display: inline-block;
  letter-spacing: 1px;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #BFA14A 0%, #FFD700 100%);
  color: #2D3250;
  box-shadow: 0 4px 24px 0 #FFD70066;
}

@media (max-width: 600px) {
  .message {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .subtitle {
    letter-spacing: 2px;
  }
}
