/* ===== Premium Design Tokens ===== */
:root {
  /* Deep Night Blue / Luxury Obsidian */
  --color-bg-deep: #020710;
  --color-bg-dim: #051020;
  
  /* Imperial Gold Accents */
  --color-gold: #ceab60;
  --color-gold-light: #eaddb3;
  --color-gold-glow: rgba(206, 171, 96, 0.4);

  /* Typography Colors */
  --color-text-main: #f8f9fa;
  --color-text-muted: #9aa8b9;
  
  /* Glassmorphism */
  --glass-bg: rgba(7, 18, 38, 0.4);
  --glass-border: rgba(255, 255, 255, 0.04);
  --glass-border-hover: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;

  /* Easing */
  --transition-smooth: 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-deep);
  color: var(--color-text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* ===== Animated Background Effects ===== */
.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.3;
  animation: floatBackground 15s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, #082d5e 0%, transparent 60%);
  top: -20%;
  left: -20%;
}

.bg-glow-2 {
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(206, 171, 96, 0.15) 0%, transparent 60%);
  bottom: -15%;
  right: -10%;
  animation-duration: 20s;
  animation-direction: alternate-reverse;
}

.bg-noise {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
  opacity: 0.02;
  mix-blend-mode: overlay;
  z-index: 0;
  pointer-events: none;
}

@keyframes floatBackground {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(5%, 5%); }
  100% { transform: scale(0.9) translate(-5%, -5%); }
}

/* ===== Main Container & Entry Animations ===== */
.container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 640px;
  padding: 2rem;
  perspective: 1000px;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}

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

/* ===== Premium Glass Card ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 4rem 3rem;
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top internal subtle glow for luxury feel */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206, 171, 96, 0.3), transparent);
  opacity: 0.5;
}

/* ===== Brand Logo Area ===== */
.logo-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.logo-ring {
  position: absolute;
  top: -8px; left: -8px; right: -8px; bottom: -8px;
  border-radius: 50%;
  border: 1px solid rgba(206, 171, 96, 0.2);
  border-bottom-color: transparent;
  animation: spinRing 12s linear infinite;
}

@keyframes spinRing {
  100% { transform: rotate(360deg); }
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.5));
  z-index: 2;
}

/* ===== Typography ===== */
.subtitle {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.8rem;
}

.title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text-main);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.description {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  font-weight: 300;
  max-width: 85%;
  margin: 0 auto;
}

.description strong {
  color: var(--color-text-main);
  font-weight: 500;
}

/* ===== Divider ===== */
.gold-divider {
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  margin: 2.5rem 0;
  box-shadow: 0 0 10px var(--color-gold-glow);
  border-radius: 2px;
}

/* ===== Status Indicator ===== */
.status-wrapper {
  margin-bottom: 3rem;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-gold);
  animation: pulseGold 2s ease-out infinite;
}

@keyframes pulseGold {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(206, 171, 96, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(206, 171, 96, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(206, 171, 96, 0); }
}

.status-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold-light);
  letter-spacing: 0.5px;
}

/* ===== Contact Links (Vertical Stack to fit luxury) ===== */
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition-smooth);
  color: var(--color-text-muted);
}

.contact-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(206, 171, 96, 0.3);
  color: var(--color-text-main);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), inset 0 0 20px rgba(206, 171, 96, 0.05);
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  transition: var(--transition-smooth);
}

.btn-text {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== Footer ===== */
.footer {
  position: absolute;
  bottom: 2rem;
  z-index: 10;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 580px) {
  .glass-card {
    padding: 3rem 1.5rem;
    border-radius: 16px;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .description {
    font-size: 0.9rem;
    max-width: 100%;
  }
  
  .logo-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .contact-btn {
    padding: 14px 16px;
  }
}
