body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background-color: #0B0D17;
  color: #ccc;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Header Styling --- */
.header {
  display: flex;
  justify-content: space-between; /* Distribuye espacio entre los elementos: izquierda, centro, derecha */
  align-items: center; /* Alinea verticalmente los elementos en el centro */
  background: #0B0D17;
  padding: 1rem 2rem; /* Espaciado interno */
  position: fixed; /* Hace que la barra sea "flotante" y se quede fija arriba */
  width: 100%; /* Ocupa todo el ancho */
  top: 0; /* Fija en la parte superior */
  left: 0; /* Fija a la izquierda */
  z-index: 1000; /* Asegura que esté por encima de otros contenidos */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Sutil sombra para dar efecto flotante */
  height: 110px; /* Altura fija para todos los elementos */
  box-sizing: border-box; /* Incluye padding en la altura */
}

.header-left,
.header-center,
.header-right {
  display: flex; /* Para centrar los elementos dentro de cada sección */
  align-items: center; /* Alineación vertical */
  height: 100%; /* Asegura que ocupen la altura completa del header */
}

.header-left {
  justify-content: flex-start;
  flex: 1; /* Ocupa espacio flexible en la izquierda */
}

.header-center {
  justify-content: center;
  flex: 1; /* Ocupa espacio flexible en el centro */
}

.header-right {
  justify-content: flex-end;
  flex: 1; /* Ocupa espacio flexible en la derecha */
}

.header-logo,
.header-typo {
  max-height: 100px; /* Ajusta este valor para controlar el tamaño y la altura uniforme */
  width: auto; /* Mantiene la proporción */
  display: block; /* Para eliminar cualquier espacio extra alrededor de la imagen */
}

/* --- Authentication Buttons Styling (Reintroduced) --- */
.header-right .button {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  margin-left: 1rem; /* Espacio entre botones */
  font-weight: bold;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
  white-space: nowrap; /* Evita que el texto del botón se rompa en varias líneas */
  display: flex; /* Para alinear el texto del botón si fuera necesario */
  align-items: center;
  justify-content: center;
  height: 40px; /* Ajusta la altura de los botones para que encajen bien */
  box-sizing: border-box;
}

.header-right .login {
  background: linear-gradient(135deg, #FFD700, #CDAF2D);
  color: #2e2e2e;
}

.header-right .register {
  background: linear-gradient(135deg, #3a006d, #b266ff);
  color: #fff;
}

.header-right .button:hover {
  transform: scale(1.05);
}

/* --- Main Content Styling --- */
.hero-content { /* Changed from .hero-center to avoid confusion with header-center */
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  padding-top: 100px; /* Agrega un padding superior para que el contenido no quede debajo del header fijo */
}

.hero-content h1 {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.hero-content .soon-to-discover {
  font-size: 1.5rem;
  color: #888;
  margin-top: 0;
}

/* --- Footer Styling --- */
.footer {
  width: 100%;
  padding: 1rem 0;
  background-color: #0B0D17;
  color: #555;
  font-size: 0.8rem;
  text-align: center;
  margin-top: auto;
}

.footer a {
  color: #CDAF2D;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}