/* Minimal Portal – Rivals of Aether Spain */

* {
  box-sizing: border-box;
  }

html, body {
height: 100%;
margin: 0;
}

body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
text-align: center;

/* Imagen de fondo */
background: url("/static/images/portal-bg.jpg") center center / cover no-repeat;
position: relative;
}

/* Ocultar header y footer heredados */
.site-header,
.site-footer {
display: none;
}

/* Overlay ligeramente oscuro */
body::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(
to bottom,
rgba(0, 0, 0, 0.35),
rgba(0, 0, 0, 0.45)
);
z-index: 0;
}

.portal {
position: relative;
z-index: 1;
max-width: 900px; /* más ancho en pantallas grandes */
padding: 2rem 2.5rem;
display: flex;
flex-direction: column;
align-items: center;
}

.portal img {
margin-bottom: 0.1rem;
}

.portal h1 {
font-size: 2.8rem;
font-weight: 700;
margin-top: 0;
margin-bottom: 1.2rem;
line-height: 1.25;
max-width: 800px;
text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

/* Evita salto de línea en nombres clave */
.no-break {
white-space: nowrap;
}

.portal a.button {
display: inline-flex;
align-items: center;
gap: 0.6rem;
padding: 1rem 2.4rem;
background: #5865F2;
color: #ffffff;
text-decoration: none;
font-weight: 600;
border-radius: 10px;
font-size: 1rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.portal a.button svg {
width: 20px;
height: 20px;
fill: #ffffff;
}

.portal a.button:hover {
background: #4752C4;
transform: translateY(-3px);
box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5);
}

.portal small {
display: block;
margin-top: 2rem;
opacity: 0.85;
font-size: 0.95rem;
letter-spacing: 0.5px;
text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
