:root {
  --primary: #d4af37; /* Gold */
  --secondary: #1a1a1a; /* Dark Charcoal */
  --accent: #f4e4bc; /* Light Gold/Cream */
  --text: #ffffff;
  --text-muted: #a0a0a0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Outfit", sans-serif;
  background-color: var(--secondary);
  color: var(--text);
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Background Animation */
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #1a1a1a 100%);
  z-index: -1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  opacity: 0.05;
  z-index: -1;
}

.container {
  max-width: 800px;
  width: 90%;
  text-align: center;
  z-index: 1;
}

header {
  margin-bottom: 60px;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  perspective: 1000px;
}

.main-logo {
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
  transition:
    transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275),
    filter 0.5s ease;
  transform-style: preserve-3d;
}

.main-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}

main h1 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 25px;
}

main h1 span {
  font-weight: 600;
  color: var(--primary);
  position: relative;
}

main p {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--primary);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.pulse {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-right: 12px;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse-animation 2s infinite;
}

footer {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
}

.domain {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.2rem;
  margin-bottom: 15px;
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.contact-info a:hover {
  border-bottom: 1px solid var(--primary);
}

/* Animations */
@keyframes pulse-animation {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

.fade-in {
  animation: fadeInUp 1s ease forwards;
}

.fade-in-delayed {
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  main h1 {
    font-size: 2.2rem;
  }
  .main-logo {
    max-width: 200px;
  }
  main p {
    font-size: 1rem;
  }
}
