/* ============================================================
   LA RUEDA DEL DESTINO
   Entrada al Palacio
   Archivo: css/index.css
   ============================================================ */

.index-page {
  min-height: 100vh;
  padding: 24px;

  display: grid;
  place-items: center;

  background:
    radial-gradient(circle at center, rgba(200, 164, 90, 0.12), transparent 42%),
    linear-gradient(rgba(5, 5, 9, 0.88), rgba(2, 2, 4, 0.98)),
    url("../assets/fondos/negro.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.index-portal {
  width: min(100%, 480px);
  padding: 48px 32px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;

  text-align: center;

  border: 1px solid var(--borde-plata);
  border-radius: var(--radio-grande);

  background: rgba(0, 0, 0, 0.42);

  box-shadow:
    0 28px 85px var(--sombra-profunda),
    inset 0 0 42px rgba(207, 214, 226, 0.06);

  backdrop-filter: blur(8px);
}

.index-logo {
  width: 112px;
  height: 112px;

  display: grid;
  place-items: center;

  border: 1px solid var(--borde-plata);
  border-radius: 50%;

  background: rgba(0, 0, 0, 0.34);

  box-shadow:
    0 0 26px rgba(207, 214, 226, 0.14),
    inset 0 0 24px rgba(207, 214, 226, 0.08);
}

.index-logo img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.index-title {
  font-family: "Cinzel Decorative";
  font-weight: 700;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;

  color: var(--color-plata-suave);

  text-shadow:
    0 0 18px rgba(207, 214, 226, 0.18),
    0 3px 22px rgba(0, 0, 0, 0.82);
}

.index-message {
  font-family: "Cormorant Garamond";
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-texto-suave);
}

.index-noscript {
  font-family: "Cormorant Garamond";
  font-size: 1rem;
  color: var(--color-texto-suave);
}

.index-noscript a {
  color: var(--color-dorado-claro);
}

@media (max-width: 520px) {
  .index-page {
    padding: 0;
  }

  .index-portal {
    width: 100%;
    min-height: 100vh;

    justify-content: center;

    border: none;
    border-radius: 0;
  }
}