@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;600&family=Playfair+Display:ital@1&display=swap");

:root {
  --bg-color: #050505;
  --gold: #d4b130;
  --text-main: #f0f0f0;
  --text-muted: #666666;
  --border: rgba(255, 255, 255, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: "Outfit", sans-serif;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  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)' opacity='0.04'/%3E%3C/svg%3E");
}

/* --- Header --- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 0 2.5px rgba(255, 255, 255, 0.4));
}

img {
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.4));
}


.status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(10, 10, 10, 0.5);
}

.dot {
  width: 4px;
  height: 4px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--gold);
  animation: pulse 4s infinite;
}

/* --- Hero Section --- */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.logo-large {
  width: 140px;
  height: 140px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.3))
    drop-shadow(0 0 30px rgba(212, 177, 48, 0.15));
  animation:
    elegantEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    subtleFloat 8s ease-in-out 1.2s infinite;
  opacity: 0;
}

h1 {
  user-select: none;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
  color: white;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 6px;
  animation: elegantEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
  opacity: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  letter-spacing: 0.05em;
}

p.subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 4rem;
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 2px;
  opacity: 0;
  animation: fadeInSubtle 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* --- Buttons --- */
.actions {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: elegantEntry 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.btn {
  padding: 16px 32px;
  border-radius: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
}

.btn-disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 177, 48, 0.1);
}

/* --- Footer --- */
footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.6rem;
  color: #333;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Animation --- */
@keyframes elegantEntry {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInSubtle {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
}

@keyframes subtleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-5px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(0deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  header {
    padding: 1.5rem;
    flex-direction: column;
    gap: 1rem;
  }
}
