/* =========================
   L2 KiH - Estilo Principal
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #080808;
    color: #e8e1d3;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

/* MENU PRINCIPAL */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 7%;

    background: rgba(5, 5, 5, 0.96);
    border-bottom: 1px solid #7d5b24;
}

.logo {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #ddd;
}

.logo span {
    color: #d3a84f;
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #ddd;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.menu a:hover {
    color: #d3a84f;
}

/* BANNER */

.hero {
    width: 100%;
    background: #000;
    overflow: hidden;
}

.hero-banner {
    display: block;
    width: 100%;
    height: auto;
}

/* ACCIONES PRINCIPALES */

.acciones {
    text-align: center;
    padding: 65px 20px;

    background:
        linear-gradient(
            to bottom,
            #050505,
            #11100d
        );
}

.acciones h1 {
    color: #d3a84f;
    font-size: 38px;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.acciones p {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 30px;
}

.botones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    min-width: 180px;
    padding: 14px 25px;

    color: #ddd;
    border: 1px solid #8a6a32;

    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;

    background: #111;
    transition: 0.3s;
}

.btn:hover {
    background: #d3a84f;
    color: #080808;
    transform: translateY(-3px);
}

.btn-dorado {
    background: linear-gradient(
        135deg,
        #6f4d18,
        #d3a84f
    );

    color: #080808;
}

/* ESTADO DEL SERVIDOR */

.estado {
    padding: 50px 20px;
    text-align: center;
    background: #0b0b0b;
    border-top: 1px solid #332711;
    border-bottom: 1px solid #332711;
}

.estado h2 {
    color: #d3a84f;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.servidores {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.servidor {
    width: 280px;
    padding: 20px;

    background: #111;
    border: 1px solid #332711;

    font-size: 17px;
}

.servidor strong {
    display: block;
    margin-top: 5px;
    color: #62c462;
}

.online {
    display: inline-block;

    width: 10px;
    height: 10px;

    margin-right: 8px;

    background: #62c462;
    border-radius: 50%;

    box-shadow: 0 0 10px #62c462;
}

/* CONTENIDO */

.contenido {
    padding: 80px 7%;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #17130d,
            #080808 70%
        );
}

.contenido h2 {
    color: #d3a84f;
    font-size: 32px;

    margin-bottom: 45px;

    text-transform: uppercase;
    letter-spacing: 3px;
}

/* CARACTERISTICAS */

.caracteristicas {
    max-width: 1200px;
    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;
}

.card {
    min-height: 180px;
    padding: 30px 20px;

    background: rgba(15, 15, 15, 0.9);

    border: 1px solid #3d2e16;

    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #d3a84f;

    box-shadow:
        0 10px 30px rgba(211, 168, 79, 0.12);
}

.card h3 {
    color: #d3a84f;
    margin-bottom: 15px;
}

.card p {
    color: #aaa;
}

/* NOTICIAS */

.noticias {
    padding: 80px 7%;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            #17130d,
            #080808 70%
        );
    border-top: 1px solid #332711;
}

.noticias h2 {
    color: #d3a84f;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.noticias-intro {
    color: #888;
    font-size: 17px;
    margin-bottom: 45px;
}

.noticias-grid {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.noticia-card {
    position: relative;
    padding: 35px 25px;
    text-align: left;

    background:
        linear-gradient(
            145deg,
            rgba(22, 20, 16, 0.95),
            rgba(9, 9, 9, 0.95)
        );

    border: 1px solid #3d2e16;

    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.noticia-card:hover {
    transform: translateY(-8px);
    border-color: #d3a84f;

    box-shadow:
        0 12px 35px rgba(211, 168, 79, 0.12);
}

.noticia-fecha {
    display: inline-block;
    margin-bottom: 15px;

    color: #8e733f;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

.noticia-card h3 {
    color: #d3a84f;
    font-size: 21px;
    margin-bottom: 15px;
}

.noticia-card p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 20px;
}

.noticia-card a {
    color: #c69a45;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: color 0.3s;
}

.noticia-card a:hover {
    color: #f0cf83;
}

/* DESCARGAS */

.descargas {
    padding: 80px 7%;
    text-align: center;

    background:
        radial-gradient(
            circle at top,
            #17130d,
            #080808 70%
        );

    border-top: 1px solid #332711;
}

.descargas h2 {
    color: #d3a84f;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.descargas-intro {
    color: #888;
    font-size: 17px;
    margin-bottom: 45px;
}

.descargas-grid {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.descarga-card {
    position: relative;

    padding: 40px 25px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 20, 16, 0.95),
            rgba(9, 9, 9, 0.95)
        );

    border: 1px solid #3d2e16;

    transition:
        transform 0.3s,
        border-color 0.3s,
        box-shadow 0.3s;
}

.descarga-card:hover {
    transform: translateY(-8px);

    border-color: #d3a84f;

    box-shadow:
        0 12px 35px rgba(211, 168, 79, 0.12);
}

.descarga-icono {
    font-size: 42px;
    margin-bottom: 18px;
}

.descarga-card h3 {
    color: #d3a84f;
    font-size: 21px;
    margin-bottom: 15px;
}

.descarga-card p {
    color: #999;
    line-height: 1.7;

    min-height: 85px;

    margin-bottom: 25px;
}

.estado-descarga,
.estado-desarrollo {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid #6e5427;

    color: #b99859;

    font-size: 11px;
    font-weight: bold;
    letter-spacing: 2px;
}

.estado-desarrollo {
    color: #d3a84f;

    border-color: #d3a84f;

    box-shadow:
        0 0 12px rgba(211, 168, 79, 0.12);
}

/* REGISTRO */

.registro {
    padding: 90px 7%;
    background:
        radial-gradient(
            circle at left,
            #17130d,
            #080808 65%
        );
    border-top: 1px solid #332711;
}

.registro-contenedor {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.registro-info {
    text-align: left;
}

.registro-subtitulo {
    display: block;
    margin-bottom: 10px;

    color: #8e733f;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
}

.registro-info h2 {
    color: #d3a84f;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.registro-info p {
    color: #aaa;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.registro-info .registro-aviso {
    color: #b99859;
    font-size: 14px;

    padding-left: 15px;
    border-left: 2px solid #d3a84f;
}

/* FORMULARIO */

.registro-formulario {
    padding: 40px;

    background:
        linear-gradient(
            145deg,
            rgba(22, 20, 16, 0.95),
            rgba(9, 9, 9, 0.95)
        );

    border: 1px solid #3d2e16;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4);
}

.campo {
    margin-bottom: 22px;
}

.campo label {
    display: block;

    color: #c6a15b;

    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;

    margin-bottom: 8px;
}

.campo input {
    width: 100%;

    padding: 13px 15px;

    background: #090909;

    border: 1px solid #3d2e16;

    color: #ddd;

    font-family: Georgia, "Times New Roman", serif;

    outline: none;
}

.campo input:focus {
    border-color: #d3a84f;
}

.campo input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-registro {
    width: 100%;

    padding: 14px;

    margin-top: 5px;

    background:
        linear-gradient(
            135deg,
            #6f4d18,
            #d3a84f
        );

    border: 1px solid #d3a84f;

    color: #080808;

    font-weight: bold;
    letter-spacing: 2px;

    cursor: not-allowed;

    opacity: 0.7;
}

/* REGISTRO RESPONSIVE */

@media (max-width: 800px) {

    .registro-contenedor {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .registro-info {
        text-align: center;
    }

    .registro-formulario {
        padding: 30px 20px;
    }

}

/* DISCORD */

.discord {
    padding: 100px 7%;
    text-align: center;

    background:
        radial-gradient(
            circle at center,
            #1a150c,
            #080808 65%
        );

    border-top: 1px solid #332711;
}

.discord-contenedor {
    max-width: 850px;
    margin: auto;
}

.discord-subtitulo {
    display: block;

    color: #8e733f;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;

    margin-bottom: 12px;
}

.discord h2 {
    color: #d3a84f;

    font-size: 36px;

    text-transform: uppercase;
    letter-spacing: 3px;

    margin-bottom: 20px;
}

.discord p {
    max-width: 700px;
    margin: 0 auto 35px;

    color: #aaa;

    font-size: 17px;
    line-height: 1.8;
}

.discord-beneficios {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 15px;

    margin-bottom: 40px;
}

.discord-beneficios span {
    padding: 10px 18px;

    background: rgba(15, 15, 15, 0.8);

    border: 1px solid #3d2e16;

    color: #c6a15b;

    font-size: 13px;
    letter-spacing: 1px;

    transition: 0.3s;
}

.discord-beneficios span:hover {
    border-color: #d3a84f;

    transform: translateY(-3px);
}

.discord-proximamente {
    display: inline-block;

    padding: 14px 30px;

    border: 1px solid #d3a84f;

    color: #d3a84f;

    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;

    box-shadow:
        0 0 15px rgba(211, 168, 79, 0.08);
}

/* SECCIONES GENERALES */

.seccion {
    padding: 75px 20px;

    text-align: center;

    border-top: 1px solid #201a10;
}

.seccion:nth-of-type(even) {
    background: #0d0d0d;
}

.seccion h2 {
    color: #d3a84f;

    font-size: 30px;

    text-transform: uppercase;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.seccion p {
    max-width: 700px;
    margin: auto;

    color: #aaa;

    font-size: 17px;
}

/* FOOTER */

footer {
    padding: 35px 20px;

    text-align: center;

    background: #030303;

    border-top: 1px solid #7d5b24;

    color: #777;
}

footer p:last-child {
    margin-top: 5px;

    color: #a88a52;

    letter-spacing: 2px;
}

/* MOVILES */

@media (max-width: 800px) {

    .header {
        flex-direction: column;
        gap: 12px;
    }

    .menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a {
        font-size: 12px;
    }

    .acciones h1 {
        font-size: 26px;
    }

}