
/* @font-face {
    font-family: 'MinecraftRegular';
    src: url('fonts/MinecraftRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MinecraftBold';
    src: url('fonts/MinecraftBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
} */

/* Minecraft Color Palette & UI Variables (REFINADOS) */
:root {
    /* Tonos de piedra/gris de Minecraft para UI */
    --mc-darkest-stone: #1A1A1A;
    /* Casi negro, para bordes y sombras muy profundas */
    --mc-dark-stone: #333333;
    /* Base oscura para paneles y elementos */
    --mc-medium-stone: #555555;
    /* Gris medio para botones y superficies */
    --mc-light-stone: #808080;
    /* Gris claro para hover y elementos activos */

    --mc-text-white: #FFFFFF;
    /* Texto principal */
    --mc-text-light-gray: #E0E0E0;
    /* Texto secundario */
    --mc-text-shadow-dark: rgba(0, 0, 0, 0.8);
    /* Sombra de texto fuerte */

    /* Colores primarios del logo y acentos vibrantes */
    --holyland-holy-blue: #00BFFF;
    /* Azul vibrante de HOLY */
    --holyland-land-white: #FFFFFF;
    /* Blanco de LAND */
    --mc-gold-yellow: #FFD700;
    /* Amarillo oro para detalles importantes */
    --mc-emerald-green: #00CC00;
    /* Verde esmeralda brillante */
    --mc-redstone-red: #FF5555;
    /* Rojo para alertas o elementos activos */

    /* Variables para texturas de fondo (corregidas) */
    /* Las siguientes texturas estaban causando errores 404 y han sido removidas.
        Si tienes estas imágenes, asegúrate de que estén en la carpeta 'images/' y descomenta estas líneas. */
    --texture-world-bg: none;
    /* Antes: url('images/minecraft_dirt_bg.png'); */
    --texture-dark-panel-bg: none;
    /* Antes: url('images/minecraft_obsidian_texture.png'); */
    --texture-panel-bg: none;
    /* Antes: url('images/minecraft_stone_texture.png'); */
}

/* General Styles & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 100%;
    /* Equivalente a 16px por defecto del navegador */
    box-sizing: border-box;
    /* Asegura que el padding y border se incluyan en el ancho/alto total */
}

body {
    /* Si las fuentes de Minecraft no están cargadas, el navegador usará la fuente sans-serif por defecto */
    font-family: sans-serif;
    background-color: var(--mc-darkest-stone);
    /* El background-image de --texture-world-bg ha sido removido */
    /* background-image: var(--texture-world-bg); */
    background-repeat: repeat;
    color: var(--mc-text-white);
    line-height: 1.6;
    overflow-x: hidden;
    /* ¡IMPORTANTE! Evita el scroll horizontal y el "zoom" indeseado */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    image-rendering: pixelated;
    -webkit-font-smoothing: none;
    font-smooth: never;
    /* Ajuste el padding-bottom del body para dar espacio a la nav-bar. Este valor será sobrescrito por media queries. */
    padding-bottom: 90px;
    /* Valor por defecto para desktop, se ajusta en mobile */
}

a {
    color: var(--holyland-holy-blue);
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    text-shadow: 1px 1px 0 var(--mc-text-shadow-dark);
}

a:hover {
    color: var(--holyland-land-white);
    text-shadow: 2px 2px 0 var(--mc-text-shadow-dark);
}

main.content-wrapper {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
    /* Padding lateral para que el contenido no se pegue a los bordes */
    flex-grow: 1;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    padding-bottom: 100px;
    /* Espacio para la barra de navegación fija */
}

/* Solo los módulos individuales se ocultan inicialmente para la animación de entrada */
.hidden-initially {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Hero Section: La pantalla principal */
.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    /* ¡CAMBIO CLAVE: Usa min-height para permitir que el contenido empuje la sección hacia abajo si es necesario! */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--mc-darkest-stone);
}

.hero-video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ¡CLAVE! Esto hace que el video cubra todo el contenedor, ajustándose y "estirándose" correctamente */
    object-position: center;
    /* Se mantuvo como estaba, ya es una buena práctica */
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    /* Asegura que el video esté detrás del contenido */
    filter: brightness(0.8) contrast(1.1);
    transform: scale(1.02);
    /* Pequeño zoom para asegurar que no haya bordes negros */
}

.hero-overlay-darken {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.3) 70%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

/* Contenedor principal de logo y texto */
.hero-main-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 95%;
    /* Asegura que no sea demasiado ancho en pantallas pequeñas */
    padding-bottom: 120px;
    /* ¡NUEVO! Empuja el contenido hacia arriba para evitar superposición con la nav fija */
}

/* Logo Styling (se mantiene el logo de arriba) */
.main-logo {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
    filter: drop-shadow(6px 6px 3px rgba(0, 0, 0, 0.8));
    image-rendering: crisp-edges;
    animation: fadeInScale 1.2s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ESTILOS PARA LA IMAGEN DEL TÍTULO (holyland.png) */
.server-title-image {
    width: 80%;
    max-width: 800px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(8px 8px 4px rgba(0, 0, 0, 0.9)) drop-shadow(-4px -4px 2px rgba(255, 255, 255, 0.2));
    image-rendering: crisp-edges;
    animation: fadeInSlideUp 1.5s ease-out forwards;
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tagline {
    /* Si la fuente 'MinecraftRegular' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    font-size: 1.8em;
    color: var(--mc-text-light-gray);
    margin-bottom: 40px;
    text-shadow: 3px 3px 0 var(--mc-text-shadow-dark);
    letter-spacing: 1px;
}

.call-to-action {
    margin-top: 20px;
}

.main-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    background-color: var(--mc-medium-stone);
    color: var(--mc-text-white);
    padding: 18px 35px;
    border: 5px solid var(--mc-dark-stone);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.7);
    text-shadow: 3px 3px 0 var(--mc-darkest-stone);
    transition: all 0.1s linear;
    cursor: pointer;
    font-size: 1.3em;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-cta-button i {
    font-size: 1.4em;
    color: var(--mc-gold-yellow);
}

.main-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: -1;
}

.main-cta-button:hover::after {
    transform: translateX(100%);
}

.main-cta-button:hover {
    background-color: var(--mc-light-stone);
    transform: translate(3px, 3px);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.7);
}

.main-cta-button:active {
    background-color: var(--mc-dark-stone);
    transform: translate(8px, 8px);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.6);
}

.animated-border-btn::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: conic-gradient(from 0deg, transparent 0%, var(--mc-gold-yellow) 20%, transparent 40%, transparent 60%, var(--mc-gold-yellow) 80%, transparent 100%);
    z-index: -2;
    animation: rotateBorder 3s linear infinite;
}

@keyframes rotateBorder {
    to {
        transform: rotate(360deg);
    }
}

/* Main Navigation (Fixed Footer Bar) */
.main-navigation {
    background-color: var(--mc-dark-stone);
    /* El background-image de --texture-dark-panel-bg ha sido removido */
    /* background-image: var(--texture-dark-panel-bg); */
    background-repeat: repeat;
    padding: 10px 0;
    /* **Reducido el padding vertical por defecto para desktop** */
    border-top: 6px solid var(--mc-darkest-stone);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 -8px 0px rgba(0, 0, 0, 0.7);
    min-height: 70px;
    /* **Ajustado el min-height para desktop** */
    display: flex;
    /* Asegura que el contenido se centre */
    justify-content: center;
    align-items: center;
}

.nav-links-grid {
    list-style: none;
    padding: 0 15px;
    /* **Ajustado el padding horizontal para más espacio** */
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    /* **Reducido el espacio entre los botones para desktop** */
    flex-wrap: wrap;
}

.nav-slot-button {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    color: var(--mc-text-white);
    font-size: 1.1em;
    /* **Tamaño de fuente ligeramente más pequeño para desktop** */
    padding: 10px 18px;
    /* **Padding más pequeño para reducir la altura del botón en desktop** */
    background-color: var(--mc-medium-stone);
    border: 4px solid var(--mc-dark-stone);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 0 var(--mc-darkest-stone);
    transition: all 0.1s linear;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    /* **Espacio reducido entre icono y texto en desktop** */
    white-space: nowrap;
    flex-grow: 1;
    flex-basis: auto;
    min-width: 120px;
    max-width: 200px;
    /* **Ancho máximo ligeramente reducido para desktop** */
    justify-content: center;
    /* Centra el contenido de los botones */
}

.nav-slot-button i {
    color: var(--mc-emerald-green);
    font-size: 1.1em;
    /* Icono ligeramente más pequeño */
}

.nav-slot-button:hover {
    background-color: var(--mc-light-stone);
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.6);
}

.nav-slot-button:active {
    background-color: var(--mc-dark-stone);
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.6);
}

/* Info Modules: Content Blocks */
.info-module {
    background-color: var(--mc-dark-stone);
    /* El background-image de --texture-panel-bg ha sido removido */
    /* background-image: var(--texture-panel-bg); */
    background-repeat: repeat;
    padding: 40px;
    margin-bottom: 40px;
    border: 5px solid var(--mc-darkest-stone);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
    text-align: center;
    transition: transform 0.2s linear, box-shadow 0.2s linear;
    position: relative;
}

.info-module::before,
.info-module::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--mc-darkest-stone);
}

.info-module::before {
    top: -5px;
    left: -5px;
}

.info-module::after {
    bottom: -5px;
    right: -5px;
}


.info-module:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.9);
}

.module-header {
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.module-title {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    font-size: 3em;
    color: var(--mc-gold-yellow);
    text-shadow: 3px 3px 0px var(--mc-darkest-stone);
    margin-bottom: 15px;
}

.module-title i {
    margin-right: 15px;
    color: var(--mc-emerald-green);
    font-size: 1.2em;
}

.header-line {
    width: 100px;
    height: 6px;
    background-color: var(--mc-redstone-red);
    margin: 0 auto;
    box-shadow: 2px 2px 0px var(--mc-text-shadow-dark);
}

.module-description {
    /* Si la fuente 'MinecraftRegular' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    font-size: 1.2em;
    color: var(--mc-text-light-gray);
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 var(--mc-text-shadow-dark);
}

.action-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    background-color: var(--mc-medium-stone);
    color: var(--mc-text-white);
    padding: 15px 30px;
    border: 4px solid var(--mc-dark-stone);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.6);
    text-shadow: 2px 2px 0 var(--mc-darkest-stone);
    transition: all 0.1s linear;
    cursor: pointer;
    font-size: 1.1em;
}

.action-button i {
    font-size: 1.2em;
    color: var(--mc-gold-yellow);
}

.action-button:hover {
    background-color: var(--mc-light-stone);
    transform: translate(3px, 3px);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.6);
}

.action-button:active {
    background-color: var(--mc-dark-stone);
    transform: translate(6px, 6px);
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.6);
}

.pixel-glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 255, 0, 0.25);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.pixel-glow-btn:hover::before {
    opacity: 1;
}

/* IP Display Area */
.ip-display-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    background-color: var(--mc-dark-stone);
    /* El background-image de --texture-panel-bg ha sido removido */
    /* background-image: var(--texture-panel-bg); */
    background-repeat: repeat;
    padding: 20px 30px;
    border: 4px solid var(--mc-darkest-stone);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
}

.ip-display-area code {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente monospace por defecto */
    font-family: monospace;
    font-size: 1.8em;
    color: var(--holyland-land-white);
    letter-spacing: 2px;
    text-shadow: 3px 3px 0px var(--mc-darkest-stone);
    padding: 8px 15px;
    border: 3px dotted var(--mc-gold-yellow);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Fundadores Showcase */
.founders-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.founder-profile-card {
    background-color: var(--mc-dark-stone);
    /* El background-image de --texture-panel-bg ha sido removido */
    /* background-image: var(--texture-panel-bg); */
    background-repeat: repeat;
    padding: 25px;
    border: 4px solid var(--mc-darkest-stone);
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.7);
    text-align: center;
    transition: transform 0.2s linear, box-shadow 0.2s linear;
}

.founder-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.8);
}

.founder-avatar {
    width: 140px;
    height: 140px;
    border: 5px solid var(--mc-gold-yellow);
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.6);
    margin-bottom: 20px;
    image-rendering: pixelated;
    transform: scale(1);
    transition: transform 0.2s ease;
}

.founder-avatar:hover {
    transform: scale(1.08);
}

.founder-name {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    color: var(--mc-gold-yellow);
    font-size: 1.8em;
    margin-bottom: 8px;
    text-shadow: 2px 2px 0px var(--mc-darkest-stone);
}

.founder-role {
    /* Si la fuente 'MinecraftRegular' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    color: var(--mc-text-light-gray);
    font-size: 1.1em;
    text-shadow: 1px 1px 0px var(--mc-darkest-stone);
}

/* Footer Area */
.footer-area {
    background-color: var(--mc-darkest-stone);
    /* El background-image de --texture-dark-panel-bg ha sido removido */
    /* background-image: var(--texture-dark-panel-bg); */
    background-repeat: repeat;
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    border-top: 6px solid var(--mc-darkest-stone);
    color: var(--mc-text-light-gray);
    font-size: 1em;
    box-shadow: 0 -6px 0px rgba(0, 0, 0, 0.6);
    text-shadow: 1px 1px 0 var(--mc-darkest-stone);
}

.footer-area .holyland-holy {
    color: var(--holyland-holy-blue);
}

.footer-area .holyland-land {
    color: var(--holyland-land-white);
}

.social-icons-tray {
    margin-top: 20px;
}

.social-icons-tray a {
    color: var(--mc-text-light-gray);
    font-size: 1.8em;
    margin: 0 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-icons-tray a:hover {
    color: var(--mc-gold-yellow);
    transform: translateY(-5px);
}

/* Se mueve esta regla al final para más especificidad o donde su contexto tiene más sentido si es necesario.
   Ya está definida arriba, así que esta sería una duplicación o un override si no se tiene cuidado.
   La dejamos aquí por si hay alguna razón específica para redefinirla.
   La versión de arriba ya es correcta. */
/* .hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
} */

.hero-fallback-background {
    /* La imagen 'fallback.jpg' estaba causando un error 404 y ha sido removida. */
    /* background-image: url('images/fallback.jpg'); */
    background-image: none;
    /* Cambiado a none */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: none;
    /* se activa solo si el video falla */
}

/* Media Queries for Responsive Design */
/* Estos son los ajustes CLAVE para que el responsive funcione bien sin cambiar el diseño */
@media (max-width: 992px) {
    .main-logo {
        width: 200px;
    }

    .server-title-image {
        width: 70%;
    }

    .tagline {
        font-size: 1.6em;
    }

    .main-cta-button {
        padding: 15px 30px;
        font-size: 1.2em;
    }

    /* Ajustes de navegación para pantallas de tablet */
    .nav-links-grid {
        gap: 15px;
        /* **Reducido el gap para tablets** */
        padding: 0 15px;
    }

    .nav-slot-button {
        min-width: unset;
        max-width: unset;
        flex-grow: 1;
        flex-basis: auto;
        font-size: 1em;
        /* **Fuente más pequeña para tablets** */
        padding: 8px 15px;
        /* **Padding más pequeño para botones en tablets** */
        gap: 6px;
        /* **Espacio reducido entre icono y texto** */
    }

    .module-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 93.75%;
        /* Reduce la base para 'em' a 15px */
        padding-bottom: 75px;
        /* **Ajuste del padding inferior del body en móviles para dejar espacio a la nav-bar** */
    }

    .hero-main-content {
        max-width: 95%;
        padding: 15px;
        padding-bottom: 80px;
        /* **Ajusta este padding para que el contenido de CTA no quede cubierto por la nav-bar** */
    }

    .main-logo {
        width: 150px;
        margin-bottom: 15px;
    }

    .server-title-image {
        width: 85%;
        max-width: 500px;
        margin-bottom: 25px;
    }

    .tagline {
        font-size: 1.3em;
        margin-bottom: 30px;
    }

    .main-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    /* Ajustes de navegación para móviles */
    .main-navigation {
        padding: 8px 0;
        /* **Menos padding vertical en la barra para móviles** */
        min-height: 65px;
        /* **Altura mínima de la barra en móviles** */
    }

    .nav-links-grid {
        flex-direction: row;
        /* **Mantén los botones en fila para que ocupen menos alto** */
        flex-wrap: wrap;
        /* Permite que se envuelvan si no caben */
        gap: 8px;
        /* **Reducir el espacio entre ellos en móviles** */
        padding: 0 8px;
        /* **Asegurar padding horizontal** */
    }

    .nav-slot-button {
        flex-basis: calc(50% - 8px);
        /* **Hace que los botones ocupen la mitad del ancho (dos por fila)** */
        font-size: 0.9em;
        /* **Fuente más pequeña en móvil** */
        padding: 8px 5px;
        /* **Padding más pequeño para botones en móviles** */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: unset;
        /* Elimina el min-width para permitir flexibilidad */
        max-width: unset;
        /* Elimina el max-width */
    }

    .nav-slot-button i {
        font-size: 1em;
        /* Iconos más pequeños en móvil */
        margin-bottom: 2px;
    }

    .info-module {
        padding: 30px;
    }

    .module-title {
        font-size: 2.1em;
    }

    .module-description {
        font-size: 1em;
    }

    .ip-display-area code {
        font-size: 1.5em;
    }

    .action-button {
        font-size: 1em;
        padding: 12px 20px;
    }

    .founders-showcase {
        grid-template-columns: 1fr;
    }

    video.hero-video-background {
        object-fit: cover;
        filter: brightness(0.6);
    }
}

@media (max-width: 480px) {
    body {
        font-size: 87.5%;
        padding-bottom: 70px;
        /* **Ajuste para móviles muy pequeños** */
    }

    .hero-main-content {
        padding: 10px;
        padding-bottom: 70px;
        /* **Ajusta este padding final para el botón de CTA** */
    }

    .main-logo {
        width: 120px;
        margin-bottom: 10px;
    }

    .server-title-image {
        width: 90%;
        max-width: 350px;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .main-cta-button,
    .action-button {
        padding: 10px 18px;
        font-size: 0.9em;
    }

    .main-navigation {
        padding: 5px 0;
        /* **Aún más pequeño el padding en la barra** */
        min-height: 60px;
        /* **Altura mínima de la barra en móviles muy pequeños** */
    }

    .nav-links-grid {
        gap: 5px;
        /* **Espacio mínimo entre botones** */
        padding: 0 5px;
    }

    .nav-slot-button {
        flex-basis: calc(50% - 5px);
        /* **Dos botones por fila** */
        font-size: 0.8em;
        /* **Fuente muy pequeña, asegúrate de que sea legible** */
        padding: 6px 3px;
        /* **Padding mínimo para los botones** */
        gap: 4px;
        /* **Espacio entre icono y texto muy pequeño** */
    }

    .nav-slot-button i {
        font-size: 0.9em;
        margin-bottom: 1px;
    }

    .info-module {
        padding: 15px;
        margin-bottom: 20px;
    }

    .module-title {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .module-title i {
        margin-right: 5px;
        font-size: 0.9em;
    }

    .module-description {
        font-size: 0.8em;
        margin-bottom: 15px;
    }

    .ip-display-area code {
        font-size: 1em;
        padding: 5px 8px;
    }

    .founder-avatar {
        width: 80px;
        height: 80px;
    }

    .founder-name {
        font-size: 1.2em;
    }

    .founder-role {
        font-size: 0.8em;
    }

    .social-icons-tray a {
        font-size: 1.2em;
        margin: 0 6px;
    }
}

/* ⭐⭐⭐ ESTILOS ADICIONALES PARA EL ESTADO DEL SERVIDOR ⭐⭐⭐ */

/* Contenedor del estado del servidor */
#server-status {
    background-color: var(--mc-dark-stone);
    /* El background-image de --texture-panel-bg ha sido removido */
    /* background-image: var(--texture-panel-bg); */
    background-repeat: repeat;
    padding: 15px 25px;
    border: 4px solid var(--mc-darkest-stone);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

/* Título de estado */
#server-status h3 {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    font-size: 1.5em;
    color: var(--mc-gold-yellow);
    text-shadow: 2px 2px 0px var(--mc-darkest-stone);
    margin: 0;
}

/* Mensaje de estado (Online/Offline) */
#server-status p {
    /* Si la fuente 'MinecraftRegular' no está disponible, se usará una fuente sans-serif por defecto */
    font-family: sans-serif;
    font-size: 1.1em;
    color: var(--mc-text-light-gray);
    text-shadow: 1px 1px 0 var(--mc-text-shadow-dark);
    margin: 0;
}

/* Estilos específicos para el estado ONLINE */
#server-status.online {
    border-color: var(--mc-emerald-green);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7), 0 0 15px rgba(0, 204, 0, 0.4);
    /* Pequeño brillo verde */
}

#server-status.online h3 {
    color: var(--mc-emerald-green);
}

/* Estilos específicos para el estado OFFLINE */
#server-status.offline {
    border-color: var(--mc-redstone-red);
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 85, 85, 0.4);
    /* Pequeño brillo rojo */
}

#server-status.offline h3 {
    color: var(--mc-redstone-red);
}

/* Contador de jugadores */
.players-count {
    /* Si la fuente 'MinecraftBold' no está disponible, se usará una fuente monospace por defecto */
    font-family: monospace;
    font-size: 1.2em;
    color: var(--holyland-land-white);
    text-shadow: 1px 1px 0px var(--mc-darkest-stone);
    display: flex;
    align-items: center;
    gap: 8px;
}

.players-count i {
    color: var(--holyland-holy-blue);
    /* Color del icono de jugadores */
    font-size: 1.1em;
}

/* Media Queries para el estado del servidor (ajustes de tamaño) */
@media (max-width: 768px) {
    #server-status {
        padding: 12px 20px;
        gap: 8px;
    }

    #server-status h3 {
        font-size: 1.2em;
    }

    #server-status p {
        font-size: 0.9em;
    }

    .players-count {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    #server-status {
        padding: 10px 15px;
        gap: 5px;
    }

    #server-status h3 {
        font-size: 1em;
    }

    #server-status p {
        font-size: 0.8em;
    }

    .players-count {
        font-size: 0.9em;
    }
}

/* ⭐⭐⭐ FIN DE ESTILOS ADICIONALES PARA EL ESTADO DEL SERVIDOR ⭐⭐⭐ */
