
:root{
    --azul_base: #1A1A2E;
    --grisoscuro: #3B4957;
    --grisvioleta: #434266;
    --grisvioleta2: #72709d;
    --grisvioleta3: #3a3958;
    --azulvioleta: #230844;
    --naranja: #fab535;
    --amarillo: #e4f900;
    --rojo: #ff5b36;
    --rojo2: #961b00db;
    --verde: #00e645db;
    --verde2: #00a933;
    --azul: #020090db;
    --blanco: rgba(255,255,255,0.85);
    --blanco2: #c6c6c6;
    --salmon: rgba(253, 126, 91, 0.8);
    --salmon2: rgba(253, 126, 91, 1);
    --font1: Comic Sans, Comic Sans MS;
    --font2: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--azul_base);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

/* HEADING */
.section-heading {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.3);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.div-logo {
    display: absolute;
}
.img-logo {
    width: 150px;
}
.div-nav {
    height: 100%;
    width: 100%;
    display: flex;
}
.nav-indices {
    margin: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.links {
    font-family: var(--font1);
    color: var(--blanco);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    width: 7.5rem;
    height: 1.6rem;
    border-radius: 0.2rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}
.links2 {
    font-family: var(--font1);
    color: black;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    width: 7.5rem;
    height: 1.6rem;
    border-radius: 0.2rem;
    cursor: pointer;
    background-color: var(--salmon);
}
.txt-links {
    font-size: 0.9rem;
}
.barlinks:hover .bar-links {
    display: flex;
}
.bar-links {
    width: 7.5rem;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    position: absolute;
    background-color: #1E1E2B;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    border-bottom-left-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
    z-index: 1000;
}
.links3 {
    font-family: var(--font1);
    color: var(--blanco);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
    height: 1.4rem;
    border-radius: 0.2rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
}
.txt-links2 {
    font-size: 0.7rem;
}
.sublink:hover .links4 {
    display: block;
}
.links4 {
    font-family: var(--font1);
    color: var(--blanco);
    text-decoration: none;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
    width: 90%;
    height: 1rem;
    border-radius: 0.2rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
}


.msj-alarm {
    width: 1rem;
    height: 1rem;
    background-color: var(--salmon);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font1);
    font-size: 0.7rem;
    font-weight: bold;
    border: 1px solid black;
    margin-left: 7rem;
    margin-bottom: 1.5rem;
    color: black;
}



/* switch */
.switch-section {
    width: 100%;
    padding: 0.3rem;
}
.switch-box {
    width: 8rem;
}
.linkswitch {
    color: black;
    text-decoration: none;
    width: 8rem;
}
.div-switch {
    font-family: var(--font1);
    font-size: 0.7rem;
    width: 8rem;
    height: 1.4rem;
    background-color: var(--salmon);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
}
footer {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    padding: 1rem;
}
.box-footer {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.box-social {
    width: 70%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: 1px solid grey;
    padding-bottom: 0.5rem;
}
.div-social {
    display: flex;
    gap: 0.3rem;
    font-family: var(--font1);
    font-size: 0.9rem;
    color: var(--blanco);
    align-items: center;
}
.enlance-social {
    text-decoration: none;
}
.fa-instagram, .fa-square-facebook {
    color: var(--blanco);
    font-size: 1.5rem;
}
.box-gamesland {
    font-family: var(--font1);
    font-size: 0.8rem;
    color: var(--blanco);
}

/* index */
.section-heading2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 1rem;
}
.div-nav2 {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: right;
    gap: 0.5rem;
}
.inp-auth {
    padding: 0.3rem 1.3rem;
    font-family: var(--font1);
    font-size: 0.9rem;
    font-weight: bold;
    border: 1px solid rgba(0, 0, 0, 0.9);
    border-radius: 0.2rem;
    cursor: pointer;
    background-color: var(--salmon);
}

/* Verify */
.title-verify {
    margin-top: 1rem;
    font-family: var(--font1);
    font-size: 1.8rem;
    color: var(--salmon);
    text-align: center;
}
.msg-verify {
    margin-top: 0.5rem;
    color: var(--blanco);
    font-family: var(--font1);
}

/* cartel de notificaciones */
.box-notif {
    width: 96%;
    padding: 1rem;
    background-color: var(--salmon2);
    position: fixed;
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.9);
    border: 1px solid black;
    border-radius: 0.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: -100px;
    right: 10px;
    font-family: var(--font1);
    transition: all 0.5s ease;
    z-index: 1000;
}
.label-notification {
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
}
.msj-notif {
    font-size: 0.7rem;
}
.visible {
    bottom: 10px;
    opacity: 1;
    pointer-events: auto;
}
.hidden {
    bottom: -100px;
    opacity: 0;
    pointer-events: none;
}

/* Cartel Advertencia */
.modal-advert {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    position: fixed;
    z-index: 1000;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
}
.box-advert {
    width: 96%;
    height: 18rem;
    background-color: var(--azul_base);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
}
.fa-circle-exclamation {
    font-size: 7rem;
    color: var(--salmon);
    text-shadow: 0px 0px 4px black;
}
.msj-advert {
    width: 100%;
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
}
.box-inp-advert {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.btn-confirm, .btn-cancel {
    width: 8rem;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
    font-family: var(--font1);
    border: 1px solid black;
    border-radius: 0.2rem;
    cursor: pointer;
}
.btn-confirm {
    background-color: var(--verde);
}
.btn-cancel {
    background-color: var(--rojo);
}

/* MODAL BLOCK */
.modal-block {
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    position: fixed;
    z-index: 1000;
    background-color: var(--azul_base);
    justify-content: center;
    align-items: center;
}
.box-block {
    width: 96%;
    height: 18rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 0.5rem;
}
.fa-triangle-exclamation {
    font-size: 7rem;
    color: var(--rojo);
}
.txt1 {
    width: 100%;
    font-family: var(--font1);
    color: var(--rojo);
    text-align: center;
    font-size: 2rem;
}
.txt2 {
    width: 100%;
    font-family: var(--font1);
    color: var(--blanco);
    text-align: center;
    font-size: 1.2rem;
}



/* PAGINATION */
.container-paginate {
    width: 100%;
    display: flex;
    justify-content: center;
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    align-items: center;
}
.container-pagination-numbers {
    display: flex;
    align-items: center;
}
.box-number, .number-select, .box-dots {
    font-family: var(--font2);
    font-size: 1rem;
    font-weight: bold;
    padding: 0.3rem 0.7rem;
    border-radius: 0.2rem;
}
.box-number a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: bold;
}
.box-number a:hover {
    color: var(--salmon);
}
.number-select {
    background-color: var(--salmon);
    color: black;
}



@media (min-width: 480px) {
    .box-notif {
        width: 20rem;
    }
}

@media (min-width: 768px){
    .box-advert {
        width: 30rem;
    }
    .box-block {
        width: 30rem;
    }
}

@media (min-width: 1024px) {
    .section-heading {
        flex-direction: row;
    }
    .img-logo {
        margin-left: 1rem;
        width: 150px;
    }

}

@media (min-width: 1400px) {
    .img-logo {
        width: 150px;
    }
}
@media (min-width: 1600px) {
    .img-logo {
        width: 170px;
    }
}
