/* =========================================================
   OCTIGAMES - MAPA DEL SITIO
   /styles/sitemap.css
========================================================= */

.sitemap-main{
    width:100%;
    flex:1;
    padding:34px 20px 70px;
}

#sitemap-section{
    width:min(1040px,100%);
    margin:0 auto;
    color:#edf3fb;
}

#sitemap-section,
#sitemap-section *{
    box-sizing:border-box;
    min-width:0;
}

.sitemap-page-header{
    position:relative;
    overflow:hidden;
    margin-bottom:24px;
    padding:30px 28px;
    text-align:center;

    border:1px solid rgba(31,227,253,.18);
    border-radius:26px;

    background:
        radial-gradient(circle at top,rgba(31,227,253,.13),transparent 58%),
        linear-gradient(145deg,rgba(28,38,48,.97),rgba(10,14,19,.98));

    box-shadow:
        0 20px 55px rgba(0,0,0,.38),
        0 0 32px rgba(31,227,253,.07);
}

.sitemap-page-header::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    right:-90px;
    bottom:-130px;
    border-radius:50%;
    background:rgba(98,255,173,.06);
    pointer-events:none;
}

.sitemap-page-kicker{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-bottom:12px;
    padding:7px 12px;

    border:1px solid rgba(98,255,173,.20);
    border-radius:999px;

    background:rgba(98,255,173,.07);
    color:#baffd8;

    font-size:12px;
    font-weight:950;
    letter-spacing:.06em;
    text-transform:uppercase;
}

#sitemap-title{
    margin:0;

    color:#1fe3fd;
    font-size:clamp(30px,5vw,44px);
    line-height:1.08;
    font-weight:1000;
    text-align:center;

    text-shadow:0 0 14px rgba(31,227,253,.35);
}

.sitemap-page-intro{
    max-width:800px;
    margin:16px auto 0;

    color:rgba(237,243,251,.76);
    font-size:15px;
    line-height:1.75;

    overflow-wrap:anywhere;
}

.sitemap-groups{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.sitemap-group{
    padding:22px;

    border:1px solid rgba(255,255,255,.09);
    border-radius:22px;

    background:
        linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));

    box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.sitemap-group-title{
    margin:0 0 16px;

    color:#fff;
    font-size:18px;
    line-height:1.35;
    font-weight:950;

    text-align:left;
}

.sitemap-group-title::before{
    content:"";
    display:inline-block;

    width:8px;
    height:8px;

    margin-right:8px;
    border-radius:50%;

    background:#62ffad;

    box-shadow:0 0 12px rgba(98,255,173,.45);
    vertical-align:middle;
}

.sitemap-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
}

.sitemap-grid-main{
    grid-template-columns:repeat(5,minmax(0,1fr));
}

.sitemap-link{
    display:flex;
    align-items:center;
    gap:10px;

    min-height:54px;
    padding:12px 14px;

    border:1px solid rgba(255,255,255,.09);
    border-radius:15px;

    background:rgba(255,255,255,.045);
    color:#edf3fb;

    text-decoration:none;

    font-size:13px;
    line-height:1.35;
    font-weight:900;

    overflow-wrap:anywhere;

    transition:
        transform .18s ease,
        border-color .18s ease,
        background .18s ease,
        color .18s ease;
}

.sitemap-link:hover{
    transform:translateY(-2px);

    border-color:rgba(31,227,253,.27);
    background:rgba(31,227,253,.08);
    color:#a9f4ff;
}

.sitemap-link-icon{
    flex:0 0 auto;

    width:30px;
    height:30px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:9px;

    background:rgba(255,255,255,.055);

    font-size:16px;
    line-height:1;
}

/* =========================================================
   RTL SOLO EN EL MAPA, NUNCA EN HEADER/FOOTER
========================================================= */

#sitemap-section.sitemap-is-rtl{
    direction:rtl;
}

#sitemap-section.sitemap-is-rtl .sitemap-group-title{
    text-align:right;
}

#sitemap-section.sitemap-is-rtl .sitemap-group-title::before{
    margin-right:0;
    margin-left:8px;
}

#sitemap-section.sitemap-is-rtl .sitemap-link{
    text-align:right;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px){

    .sitemap-grid,
    .sitemap-grid-main{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){

    .sitemap-main{
        padding:22px 12px 55px;
    }

    .sitemap-page-header{
        padding:24px 17px;
        border-radius:22px;
    }

    #sitemap-title{
        font-size:30px;
    }

    .sitemap-page-intro{
        font-size:14px;
        line-height:1.7;
    }

    .sitemap-group{
        padding:16px;
        border-radius:18px;
    }

    .sitemap-group-title{
        font-size:16px;
    }

    .sitemap-link{
        min-height:50px;
        padding:11px 12px;
        font-size:12px;
    }
}

@media(max-width:480px){

    .sitemap-grid,
    .sitemap-grid-main{
        grid-template-columns:1fr;
    }

    .sitemap-link{
        width:100%;
    }
}

@media(hover:none){

    .sitemap-link:hover{
        transform:none;
    }
}