/* FIX CLAVE: FUERZA LA RESTRICCIÓN DE ANCHO EN EL ELEMENTO RAÍZ */
html {
    overflow-x: hidden; 
}

/* Variables para colores */
:root {
    --color-bg-dark: #1a1a1a;
    --color-card-bg: rgba(30, 36, 45, 0.85); 
    --color-text-light: #f0f0f0;
    --color-text-green: #38c172;
    --color-btn-ingresar: #337a4c;
    --color-btn-ingresar-hover: #459060;
    --color-btn-discord: #5865f2;
    --color-btn-discord-hover: #7289da;
    --color-gradient-2-start: #4483db;
    --color-gradient-2-end: #274b7d;
    --color-gradient-1-start: #ea2424;
    --color-gradient-1-end: #8d1919;
    --color-yellow: #fff344;
    /* Nuevos colores para los botones cuadrados (Ajustados para la nueva estética) */
    --color-btn-web: #337a4c;       /* Verde oscuro */
    --color-btn-registro: #ffc107;  /* Amarillo brillante (Se usará como resalte, no fondo) */
    --color-btn-descarga: #4483db;  /* Azul oscuro */
}

hr {
    border: none;
    height: 1.5px; 
    background-color: #ccc; 
    width: 90%; 
    margin: 20px auto; 
	margin-top: -10px;
}

/* Estilo del separador dentro de la tarjeta */
.buttons-separator {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1); /* Línea sutil */
    width: 80%;
    margin: 20px auto 30px auto; /* Espacio antes y después para posicionar más abajo */
}


/* Estilos Generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--color-text-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden; 
	zoom: 0.8; 
}

/* --- NUEVO ESTILO DE WHATSAPP CIRCULAR --- */
.whatsapp_float_group {
    position: fixed;
    width: 60px;  /* Ancho para círculo */
    height: 60px; /* Alto para círculo */
    bottom: 40px;
    right: 40px;
    background-color: var(--color-btn-discord);
    color: #FFF;
    border-radius: 50%; /* Hace el botón perfectamente redondo */
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
    z-index: 999999;
    
    /* Centrar el icono perfectamente */
    display: flex;
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    transition: transform 0.3s ease; /* Efecto suave al pasar el mouse */
}

.whatsapp_float_group:hover {
    transform: scale(1.1); /* Crece un poco al pasar el mouse */
}

.fab fa-discord {
    width: 50px; /* Tamaño del icono ajustado */
    height: 50px; 
    margin: 0; /* Sin márgenes extra */
}
/* --- FIN ESTILO WHATSAPP --- */

/* Contenedor principal con fondo */
.background-container {
    width: 100%;
    position: relative; 
    z-index: 1; 
    background-color: var(--color-bg-dark); 
    background: url('http://imgfz.com/i/9yI1CPx.png') no-repeat center top;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px; 
    padding-bottom: 50px;
    flex-grow: 1; 
}

/* --- ESTILOS DE LA IMAGEN FLOTANTE IZQUIERDA (VOLTEADA) --- */
.imagen-flotante-izq {
    position: absolute;
    z-index: -1; 
    border: none; 
    width: 800px; 
    height: auto;
    left: -3%; 
    top: 120px; 
    opacity: 0.8; 
    transform: scaleX(-1); 
}

/* --- ESTILOS DE LA IMAGEN FLOTANTE DERECHA (ORIGINAL) --- */
.imagen-flotante-der {
    position: absolute;
    z-index: -1; 
    border: none; 
    width: 800px; 
    height: auto;
    right: -3%; 
    top: 120px; 
    opacity: 0.8; 
}

/* --- ESTILOS DE LOS NUEVOS BOTONES (Links en medio del contenido) --- */
.buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1000px;
    margin: 30px auto; 
    flex-wrap: wrap;
    position: relative; 
    z-index: 10;
}

.custom-link-btn {
    display: block;
    width: 200px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1); 
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none; 
    transition: background-color 0.3s, box-shadow 0.3s;
    background-color: rgba(30, 36, 45, 0.6); 
    color: var(--color-text-light); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.custom-link-btn:hover {
    background-color: rgba(50, 60, 75, 0.8); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* --- NUEVOS ESTILOS PARA LOS 6 BOTONES CUADRADOS --- */
.new-buttons-container {
    display: flex;
    justify-content: center;
    gap: 15px; 
    width: 95%; 
    margin: 20px auto 40px auto; 
    flex-wrap: wrap; 
    position: relative; 
    z-index: 10;
}

.square-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-basis: 180px; 
    flex-grow: 1; 
    min-width: 150px; 
    height: 150px; 
    background: var(--color-card-bg); 
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    color: var(--color-text-light);
    transition: transform 0.3s, background-color 0.3s, border-color 0.3s;
    text-align: center;
}

.square-btn i {
    font-size: 3.0em; 
    margin-bottom: 8px;
    color: var(--color-yellow); 
}

.square-btn span {
    font-size: 1.1em;
    font-weight: 700;
}

.square-btn:hover {
    background-color: rgba(50, 60, 75, 0.95);
    border-color: var(--color-yellow);
    transform: translateY(-3px); 
}

/* --- ESTILOS DEL CARRUSEL --- */
.carousel-container {
    width: 95%; 
    max-width: 100%;
    margin-top: 0px; 
    margin-bottom: 0px;
    overflow: hidden; 
    background-color: rgba(30, 36, 45, 0.85); 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); 
    padding: 10px 0; 
    position: relative; 
    z-index: 10;
}

.carousel-slides {
    display: flex;
    overflow-x: hidden; 
    white-space: nowrap; 
}

/* Ocultar barra de desplazamiento */
.carousel-slides::-webkit-scrollbar {
    display: none;
}
.carousel-slides {
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}

.carousel-img {
    width: 350px; 
    height: auto;
    object-fit: cover; 
    flex-shrink: 0; 
    margin-right: 15px; 
    border-radius: 8px; 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

/* Estilo del logo/título principal */
.mu-logo {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.Imglogo {
    display: block;
    margin: 0 auto;
    position: relative; 
    z-index: 10;
}

.main-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    color: var(--color-text-light);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    position: relative; 
    z-index: 10;
}

.legend-text {
    color: var(--color-yellow);
}

/* Contenedor de las tarjetas */
.card-container {
    display: flex;
    gap: 30px;
    max-width: 1600px; 
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; 
    z-index: 10;
}

/* Estilo de la tarjeta del servidor */
.server-card {
    background: var(--color-card-bg);
    border-radius: 15px;
    padding: 0;
    width: 600px; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; 
    position: relative; /* Mantenido: Permite posicionar el banner */
}

/* Card container para info.html */
.card-container1 {
    display: flex;
    gap: 20px;
    max-width: 2000px; 
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    position: relative; 
    z-index: 10;
    margin-top: 30px;
}
.server-card1 {
    background: var(--color-card-bg);
    border-radius: 15px;
    padding: 0;
    width: 860px; 
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden; 
}

/* MODIFICADO: Banner de Construcción (Diagonal - Cinta) - POSICIÓN SUPERIOR IZQUIERDA */
.construction-banner {
    position: absolute;
    /* AJUSTE CLAVE 1: Mover el punto de rotación y evitar el recorte */
    top: 75px; 
    /* AJUSTE CLAVE 2: Desplazar menos a la izquierda para que el texto aparezca. */
    left: -60px; 
    right: auto; 
    /* AJUSTE CLAVE 3: Un ancho fijo que permite que el texto quepa. */
    width: 300px; 
    padding: 8px 0; 
    background: linear-gradient(to right, var(--color-gradient-1-start), var(--color-gradient-1-end)); 
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 1em; 
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8); 
    z-index: 20; 
    letter-spacing: 1px;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Estilo del icono dentro del banner */
.construction-banner i {
    margin-right: 8px;
    font-size: 1.1em;
}

.card-header {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1em;
    text-align: center;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.gradient-1 {
    background: linear-gradient(to right, var(--color-gradient-1-start), var(--color-gradient-1-end));
}

.gradient-2 {
    background: linear-gradient(to right, var(--color-gradient-2-start), var(--color-gradient-2-end));
}

.card-body {
    padding: 20px 30px;
    text-align: center;
}

.card-body p {
    margin: 8px 0;
    font-size: 1.1em;
}

.card-body strong {
    font-weight: 700;
    color: var(--color-text-light); 
}

.status {
    font-weight: 700;
}

.online {
    color: var(--color-text-green); 
}

.players {
    color: var(--color-text-green);
    margin-top: 15px;
    font-size: 1.2em;
}

.players i {
    margin-right: 8px;
}

.ingresar-btn, .discord-btn {
    width: 80%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    margin: 10px auto;
    display: block;
    font-weight: 700;
    transition: background-color 0.3s;
	text-decoration: none
}

.ingresar-btn {
    background-color: var(--color-btn-ingresar);
    color: var(--color-text-light);
    margin-top: 20px;
}

.ingresar-btn:hover {
    background-color: var(--color-btn-ingresar-hover);
}

.discord-btn {
    background-color: var(--color-btn-discord);
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.discord-btn:hover {
    background-color: var(--color-btn-discord-hover);
}

.discord-btn i {
    margin-right: 8px;
}

/* --- NUEVOS ESTILOS PARA LOS BOTONES CUADRADOS DENTRO DE LAS TARJETAS (BLANCO/NEGRO E INTEGRADOS) --- */

/* Contenedor Flex para los 3 botones */
.server-actions-group {
    display: flex;
    justify-content: space-around; 
    gap: 10px; 
    margin: 30px auto 30px auto; 
    padding: 0 10px;
    flex-wrap: wrap; 
}

/* Estilo base para el nuevo botón cuadrado */
.square-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-basis: 30%; 
    min-width: 100px; 
    height: 100px; 
    border-radius: 10px; 
    color: var(--color-text-light); /* Texto blanco */
    font-weight: 700;
    transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s, background-color 0.3s, border-color 0.3s; 
    
    /* MONOCHROME & INTEGRATED STYLE */
    background: var(--color-card-bg); /* Mismo fondo gris semitransparente de la tarjeta */
    border: 2px solid rgba(255, 255, 255, 0.2); /* Borde blanco sutil */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6); 
}

.square-action-btn i {
    font-size: 1.8em; 
    margin-bottom: 5px;
    color: var(--color-text-light); /* Íconos blancos */
    transition: color 0.3s;
}

.square-action-btn span {
    font-size: 0.9em;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); 
}

.square-action-btn:hover {
    transform: translateY(-3px) scale(1.05); 
    opacity: 1;
    /* MONOCHROME HOVER STYLE - Ligeramente más oscuro/claro para contraste */
    background: rgba(50, 60, 75, 0.95); /* Gris un poco más oscuro y menos transparente */
    border-color: var(--color-text-light); /* Borde blanco sólido al pasar el mouse */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.8); 
}

/* Se eliminan los estilos específicos de color para btn-web, btn-registro y btn-descarga, 
para que hereden el estilo monocromático base. */

/* --- FIN NUEVOS ESTILOS REVISADOS --- */


.footer-note {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 15px 40px; 
    font-size: 0.85em;
    color: #888;
    background-color: #111;
    box-sizing: border-box;
    position: relative; 
    z-index: -1;
}

.footer-note p {
    margin: 0; 
    text-align: center; 
    flex-grow: 1; 
}

.footer-note a {
    color: var(--color-text-green);
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    font-size: 1.2em;
    color: var(--color-text-light); 
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--color-text-green); 
}

/* Media Queries */
@media (max-width: 1000px) {
    .server-card, .server-card1 {
        width: 45%; 
        max-width: 400px;
    }
    .card-container, .card-container1 {
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .server-card, .server-card1 {
        width: 90%;
        max-width: 450px;
    }
    .main-title {
        font-size: 2em;
    }
    .carousel-container {
        width: 95%; 
    }
    .buttons-group {
        flex-direction: column;
        align-items: center;
    }
    .custom-link-btn {
        width: 90%;
        max-width: 300px;
        margin-bottom: 10px; 
    }
    
    .new-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .square-btn {
        width: 90%; 
        max-width: 300px;
        height: 120px; 
        flex-basis: auto; 
    }
    .square-btn i {
        font-size: 2.5em; 
    }
    
    /* Adaptación de los nuevos botones en móviles */
    .server-actions-group {
        flex-direction: column; /* Apilamos los botones */
        gap: 10px;
        margin: 20px auto 30px auto; /* Ajuste para móvil */
    }
    .square-action-btn {
        flex-direction: row; /* Icono y texto en la misma línea */
        width: 90%; /* Ocupa casi todo el ancho */
        max-width: none;
        height: 50px; /* Menor altura */
        flex-basis: auto;
    }
    .square-action-btn i {
        font-size: 1.2em;
        margin-right: 10px;
        margin-bottom: 0; 
    }
    .square-action-btn span {
        font-size: 1em;
    }
    /* Fin de la adaptación de los nuevos botones en móviles */
    
    /* Ajuste para el banner en móviles */
    .construction-banner {
        top: 15px; 
        left: -55px; /* Ajuste para la izquierda */
        right: auto; /* Anula right */
        width: 180px;
        padding: 6px 0;
        font-size: 0.9em;
        transform: rotate(-45deg); /* Nueva rotación */
    }
    
    .imagen-flotante-izq {
        width: 100%; 
        top: 400px; 
        left: 0; 
        opacity: 0.5; 
        transform: scaleX(-1); 
    }
    
    .imagen-flotante-der {
        display: none; 
    }
    
    .footer-note {
        flex-direction: column;
        padding: 15px 20px; 
    }
    .social-links {
        order: 2; 
        margin-top: 10px;
    }
    .footer-note p {
        order: 1;
        margin-bottom: 10px;
    }
    
    /* Ajustes para el Modal en móviles */
    .modal-content {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 5px;
        border-radius: 0;
    }
    .modal-close-btn {
        top: 5px;
        right: 5px;
        width: 30px;
        height: 30px;
        font-size: 20px;
    }
}


/* --- INICIO: Estilos para el Iframe Modal/Overlay Agregado --- */
.modal-overlay {
    /* Oculto por defecto, se muestra con JavaScript */
    display: none; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Fondo oscuro transparente */
    z-index: 999999; /* Asegura que esté por encima de todo */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px); /* Efecto de desenfoque opcional */
}

.modal-content {
    position: relative;
    width: 95%;
    max-width: 1200px; /* Ancho máximo para el contenido */
    height: 95%;
    max-height: 800px; /* Alto máximo para el contenido */
    background: var(--color-bg-dark); /* Fondo oscuro para el contenedor */
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    padding: 10px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#content-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background-color: white; /* Color de fondo mientras carga */
    border-radius: 8px;
}

.modal-close-btn {
    position: absolute;
    top: -15px; 
    right: -15px; 
    background-color: var(--color-gradient-1-start);
    color: white;
    border: 3px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    z-index: 1000000; 
    transition: background-color 0.3s, transform 0.3s;
    font-weight: bold;
    display: flex; /* Centrar el símbolo 'x' */
    justify-content: center;
    align-items: center;
}

.modal-close-btn:hover {
    background-color: var(--color-gradient-1-end);
    transform: rotate(90deg);
}
/* --- FIN: Estilos para el Iframe Modal/Overlay Agregado --- */