:root {
  --primary: #0f172a;
  --accent: #d4af37;
  --accent-glow: rgba(212, 175, 55, 0.4);
  --bg-dark: #020617;
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dynamic Background Orbs */
.bg-decoration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, #0f172a 0%, #020617 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #334155;
  top: 40%;
  left: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -50px) scale(1.1); }
  66% { transform: translate(-20px, 40px) scale(0.9); }
}

/* Maintenance Container */
.maintenance-container {
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  z-index: 1;
}

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.brand {
  margin-bottom: 2.5rem;
}

.logo-serif {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.status-icon {
  margin-bottom: 1.5rem;
  color: var(--accent);
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 10px var(--accent-glow)); }
}

.title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.subtitle {
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

/* Animated Progress Bar */
.loader-container {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.loader-bar {
  width: 40%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  animation: progress 3s infinite ease-in-out;
}

@keyframes progress {
  0% { transform: translateX(-100%); width: 20%; }
  50% { width: 50%; }
  100% { transform: translateX(400%); width: 20%; }
}

/* Contact Section */
.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.contact-info h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.email-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: var(--accent);
}

.footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Mobile Tweaks */
@media (max-width: 480px) {
  .glass-card {
    padding: 2.5rem 1.5rem;
  }
  .title {
    font-size: 1.75rem;
  }
}
