:root {
  --bg-color: #050505;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --accent-gold: #d4af37;
  --accent-gold-dim: #aa8c2c;
  --font-heading: 'Marcellus', serif;
  --font-body: 'Sora', sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Stick to the screen */
  position: fixed;
  /* Prevent rubber-banding on iOS */
}

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Effect */
body::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150vmax;
  height: 150vmax;
  background: radial-gradient(circle at center, rgba(20, 20, 20, 1) 0%, rgba(5, 5, 5, 1) 100%);
  z-index: -2;
  pointer-events: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 20%, #050505 100%);
  z-index: -1;
  pointer-events: none;
}

.container {
  text-align: center;
  padding: 2rem;
  z-index: 10;
  max-width: 600px;
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  /* Circular si es cuadrada */
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.8s ease;
}

.logo:hover {
  transform: scale(1.05);
  border-color: var(--accent-gold);
}

/* Typography */
.brand-name {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  background: linear-gradient(45deg, #fff, #a0a0a0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  font-size: 1.1rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--accent-gold-dim);
  margin: 0 auto 2rem;
}

.description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 3rem;
}

footer {
  font-size: 0.8rem;
  color: #555;
  margin-top: 2rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

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

/* Responsiveness */
@media (max-width: 768px) {
  .brand-name {
    font-size: 2.5rem;
  }

  .logo {
    width: 100px;
    height: 100px;
  }

  .tagline {
    font-size: 0.9rem;
  }
}