﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Exo 2',sans-serif;
    background: #020611;
    color: white;
}

/* ======================================== */
/* FONDO */
/* ======================================== */

#fondo {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(2,5,18,.58), rgba(2,5,18,.72) ), url("../img/fondo.png");
    background-size: cover;
    background-position: center;
    filter: brightness(1.05) saturate(1.25);
    z-index: -10;
}


/* ======================================== */
/* EFECTOS */
/* ======================================== */

#lineaVertical {
    position: fixed;
    left: 230px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(0,170,255,.10);
}

#circuloHUD {
    position: fixed;
    right: 250px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(0,170,255,.06);
    pointer-events: none;
}

/* ======================================== */
/* CONTENEDOR */
/* ======================================== */

#contenedor {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* ======================================== */
/* SIDEBAR */
/* ======================================== */

#sidebar {
    width: 230px;
    height: 100vh;
    padding: 34px 25px 24px 25px;
    background: linear-gradient( 180deg, rgba(5,10,25,.72), rgba(5,10,25,.12) );
    backdrop-filter: blur(12px);
    border-right: 1px solid rgba(0,170,255,.06);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow: hidden;
}

/* ======================================== */
/* LOGO */
/* ======================================== */

#logoBox {
    margin-bottom: 28px;
}

/* ======================================== */
/* LOGO IMAGEN */
/* ======================================== */

#logoN {
    width: 138px;
    height: 138px;
    border-radius: 24px;
    background: url("../img/logo.png");
    background-size: 118%;
    background-repeat: no-repeat;
    background-position: center;
    filter: drop-shadow(0 0 15px rgba(0,170,255,.32)) drop-shadow(0 0 42px rgba(0,140,255,.16));
    margin: 0 auto 18px auto;
    animation: pulsarLogo 4s ease-in-out infinite;
}

/* ======================================== */
/* ANIMACION LOGO */
/* ======================================== */

@keyframes pulsarLogo {

    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(0,170,255,.20)) drop-shadow(0 0 35px rgba(0,140,255,.08));
    }

    50% {
        transform: scale(1.03);
        filter: drop-shadow(0 0 20px rgba(0,190,255,.35)) drop-shadow(0 0 45px rgba(0,140,255,.18));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(0,170,255,.20)) drop-shadow(0 0 35px rgba(0,140,255,.08));
    }
}

#logoBox h1 {
    font-size: 40px;
    font-family: 'Rajdhani',sans-serif;
    letter-spacing: 5px;
    margin-bottom: 8px;
}

#logoBox span {
    font-size: 11px;
    color: #58bfff;
    letter-spacing: 4px;
}

/* ======================================== */
/* MENU */
/* ======================================== */

.menuBoton {
    padding: 13px 18px;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 2px;
    color: #d7ebff;
    cursor: pointer;
    border-left: 1px solid rgba(0,170,255,.18);
    transition: .25s;
}

    .menuBoton:hover {
        transform: translateX(8px);
        color: #59c7ff;
    }

.activo {
    color: #59c7ff;
}

/* ======================================== */
/* CONTENIDO */
/* ======================================== */

#contenidoPrincipal {
    flex: 1;
    height: 100vh;
    padding: 90px 90px 140px 90px;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(89,199,255,.75) rgba(0,170,255,.04);
}

    #contenidoPrincipal::-webkit-scrollbar {
        width: 5px;
    }

    #contenidoPrincipal::-webkit-scrollbar-track {
        background: rgba(0,170,255,.04);
    }

    #contenidoPrincipal::-webkit-scrollbar-thumb {
        background: linear-gradient( to bottom, rgba(0,170,255,.12), rgba(89,199,255,.85), rgba(0,170,255,.12) );
        border-radius: 20px;
        box-shadow: 0 0 12px rgba(0,170,255,.65);
    }


/* ======================================== */
/* TRANSICION DE PAGINAS */
/* ======================================== */

.paginaSeccion {
    display: none;
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
    transition:
        opacity .32s ease,
        transform .32s ease,
        filter .32s ease;
    will-change: opacity, transform, filter;
}

.paginaSeccion.paginaActiva {
    display: block;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.paginaSeccion.paginaSalida {
    display: block;
    opacity: 0;
    transform: translateY(-12px);
    filter: blur(8px);
    pointer-events: none;
}
/* ======================================== */
/* TITULOS */
/* ======================================== */

#tituloSuperior {
    font-size: 15px;
    letter-spacing: 7px;
    color: #58bfff;
    margin-bottom: 20px;
}

#contenidoPrincipal h2 {
    font-size: 88px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .95;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 0 35px rgba(0,140,255,.12);
    max-width: 850px;
}

#contenidoPrincipal h3 {
    font-size: 24px;
    font-weight: 400;
    color: #70ccff;
    letter-spacing: 4px;
    margin-bottom: 70px;
}

/* ======================================== */
/* PERFIL / STAFF */
/* ======================================== */

#perfilLibre {
    position: relative;
    width: 650px;
    z-index: 5;
    overflow: visible;
}

#lineaPerfil {
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( transparent, rgba(0,170,255,.34), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.22);
}

#contenidoPerfil {
    position: relative;
    width: 100%;
}

#staffScroll {
    position: relative;
    width: 100%;
    height: auto;
    padding-right: 0;
    overflow: visible;
    scroll-behavior: smooth;
}

.staffMember {
    position: relative;
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: center;
    gap: 40px;
    min-height: 330px;
    padding: 0 0 100px 0;
}

    .staffMember:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 28px;
        right: 34px;
        bottom: 48px;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(89,199,255,.58), rgba(89,199,255,.13), transparent );
        box-shadow: 0 0 16px rgba(0,170,255,.26);
    }

.staffImageBox {
    position: relative;
    width: 180px;
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

    .staffImageBox::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 8px;
        width: 130px;
        height: 18px;
        transform: translateX(-50%);
        background: radial-gradient( ellipse, rgba(0,170,255,.24), rgba(0,170,255,.08) 48%, transparent 72% );
        filter: blur(4px);
    }

    .staffImageBox::after {
        content: "";
        position: absolute;
        inset: 26px 18px 0 18px;
        background: radial-gradient( circle at 50% 48%, rgba(0,170,255,.14), rgba(0,140,255,.05) 42%, transparent 72% );
        filter: blur(12px);
        opacity: .85;
    }

.staffImage {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(0,170,255,.18)) drop-shadow(0 0 40px rgba(0,140,255,.10));
    animation: flotarPersonaje 6s ease-in-out infinite;
}

.staffText {
    position: relative;
    max-width: 430px;
}

    .staffText::before {
        content: "";
        position: absolute;
        left: -20px;
        top: 8px;
        width: 1px;
        height: calc(100% - 16px);
        background: linear-gradient( to bottom, transparent, rgba(89,199,255,.48), transparent );
        box-shadow: 0 0 14px rgba(0,170,255,.22);
    }

.staffLabel {
    margin-bottom: 8px;
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: rgba(89,199,255,.75);
}

.staffText h4 {
    font-size: 46px;
    font-family: 'Rajdhani',sans-serif;
    margin-bottom: 16px;
    line-height: 1;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 0 0 22px rgba(0,140,255,.16);
}

    .staffText h4 span {
        color: #59c7ff;
    }

.staffInfo {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
    color: #70ccff;
    font-size: 14px;
    letter-spacing: 2px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 500;
}

    .staffInfo div {
        position: relative;
    }

        .staffInfo div:not(:last-child)::after {
            content: "";
            position: absolute;
            right: -17px;
            top: 50%;
            width: 3px;
            height: 3px;
            transform: translateY(-50%);
            border-radius: 50%;
            background: rgba(89,199,255,.9);
            box-shadow: 0 0 10px rgba(89,199,255,.8);
        }

.staffText p {
    font-size: 16px;
    line-height: 1.75;
    color: #dcecff;
    font-weight: 300;
}

/* ======================================== */
/* ANIMACION PERSONAJES */
/* ======================================== */

@keyframes flotarPersonaje {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ======================================== */
/* HOLOGRAMA IMAGEN */
/* ======================================== */

#hologramaN {
    position: fixed;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    width: 650px;
    height: 650px;
    background: url("../img/copa.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: .88;
    filter: drop-shadow(0 0 12px rgba(0,170,255,.45)) drop-shadow(0 0 35px rgba(0,140,255,.25)) drop-shadow(0 0 90px rgba(0,140,255,.12));
    animation: flotar 6s ease-in-out infinite, pulsar 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

/* ======================================== */
/* PULSO */
/* ======================================== */

@keyframes pulsar {

    0% {
        filter: drop-shadow(0 0 12px rgba(0,170,255,.35)) drop-shadow(0 0 35px rgba(0,140,255,.18)) drop-shadow(0 0 90px rgba(0,140,255,.08));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(0,190,255,.65)) drop-shadow(0 0 60px rgba(0,140,255,.35)) drop-shadow(0 0 130px rgba(0,140,255,.18));
    }

    100% {
        filter: drop-shadow(0 0 12px rgba(0,170,255,.35)) drop-shadow(0 0 35px rgba(0,140,255,.18)) drop-shadow(0 0 90px rgba(0,140,255,.08));
    }
}

/* ======================================== */
/* PLATAFORMA */
/* ======================================== */

#plataforma {
    position: fixed;
    right: 210px;
    bottom: 120px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient( rgba(0,170,255,.25), transparent 70% );
    filter: blur(25px);
    z-index: 0;
    pointer-events: none;
}

/* ======================================== */
/* ANIMACION */
/* ======================================== */

@keyframes flotar {

    0% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-20px);
    }

    100% {
        transform: translateY(-50%) translateY(0px);
    }
}

/* ======================================== */
/* DRAFT PANEL */
/* ======================================== */

#paginaDraft {
    position: relative;
    min-height: calc(100vh - 180px);
    z-index: 5;
}

#draftPanel {
    position: relative;
    width: 620px;
    max-width: 100%;
    padding-top: 32px;
}

#draftPanel::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( transparent, rgba(0,170,255,.38), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.28);
}

#draftMiniText {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #58bfff;
    font-family: 'Rajdhani',sans-serif;
}

#draftPanel h1 {
    margin-bottom: 24px;
    font-size: 82px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0,140,255,.18);
}

#draftPanel p {
    max-width: 520px;
    margin-bottom: 42px;
    font-size: 20px;
    line-height: 2;
    color: #dcecff;
    font-weight: 300;
}

#btnIrDraft {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 58px;
    padding: 0 34px;
    color: #e8f7ff;
    text-decoration: none;
    font-family: 'Rajdhani',sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    border: 1px solid rgba(89,199,255,.55);
    background: linear-gradient( 90deg, rgba(0,170,255,.08), rgba(0,170,255,.2), rgba(0,170,255,.08) );
    box-shadow: 0 0 18px rgba(0,170,255,.16), inset 0 0 20px rgba(0,170,255,.08);
    transition: .25s;
}

#btnIrDraft::before {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    top: -1px;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(89,199,255,.9), transparent );
}

#btnIrDraft:hover {
    transform: translateX(8px);
    color: #ffffff;
    border-color: rgba(89,199,255,.9);
    box-shadow: 0 0 26px rgba(0,170,255,.32), inset 0 0 24px rgba(0,170,255,.12);
}
/* ======================================== */
/* DRAFT ESTANDARTES */
/* ======================================== */

#paginaDraft {
    overflow: hidden;
}

#draftPanel {
    z-index: 4;
}

#draftEstandartes {
    position: absolute;
    left: 510px;
    top: 260px;
    width: 620px;
    height: 560px;
    z-index: 2;
    pointer-events: none;
}

.draftBanner {
    position: absolute;
    top: 0;
    width: 285px;
    height: auto;
    opacity: 0;
    object-fit: contain;
    filter:
        drop-shadow(0 0 14px rgba(0,170,255,.28))
        drop-shadow(0 0 42px rgba(0,140,255,.16));
    will-change: transform, opacity;
}

.draftBannerRojo {
    left: 0;
    transform: translateY(-260px) rotate(-6deg) scale(.92);
}

.draftBannerAzul {
    left: 245px;
    transform: translateY(-260px) rotate(6deg) scale(.92);
}

.paginaActiva #draftEstandartes .draftBannerRojo {
    animation: caerEstandarteRojo 1.05s cubic-bezier(.18,.86,.22,1.12) .16s forwards;
}

.paginaActiva #draftEstandartes .draftBannerAzul {
    animation: caerEstandarteAzul 1.05s cubic-bezier(.18,.86,.22,1.12) .54s forwards;
}

@keyframes caerEstandarteRojo {

    0% {
        opacity: 0;
        transform: translateY(-310px) rotate(-8deg) scale(.9);
    }

    68% {
        opacity: 1;
        transform: translateY(160px) rotate(-3deg) scale(1.03);
    }

    84% {
        opacity: 1;
        transform: translateY(132px) rotate(-5deg) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(145px) rotate(-4deg) scale(1);
    }
}

@keyframes caerEstandarteAzul {

    0% {
        opacity: 0;
        transform: translateY(-310px) rotate(8deg) scale(.9);
    }

    68% {
        opacity: 1;
        transform: translateY(188px) rotate(3deg) scale(1.03);
    }

    84% {
        opacity: 1;
        transform: translateY(160px) rotate(5deg) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateY(174px) rotate(4deg) scale(1);
    }
}
/* ======================================== */
/* PAGINAS PENDIENTES */
/* ======================================== */

.paginaPendiente {
    position: relative;
    width: 650px;
    max-width: 100%;
    z-index: 5;
}

.paginaPendiente::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( transparent, rgba(0,170,255,.34), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.22);
}

.pendienteMiniText {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #58bfff;
    font-family: 'Rajdhani',sans-serif;
}

.paginaPendiente h1 {
    margin-bottom: 24px;
    font-size: 82px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0,140,255,.18);
}

.paginaPendiente p {
    max-width: 520px;
    font-size: 20px;
    line-height: 2;
    color: #dcecff;
    font-weight: 300;
}
/* ======================================== */
/* ENCUENTROS FIXTURE */
/* ======================================== */

#paginaEncuentros {
    position: relative;
    z-index: 5;
}

#encuentrosHeader {
    position: relative;
    width: 760px;
    max-width: 100%;
    margin-bottom: 54px;
}

#encuentrosHeader::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( transparent, rgba(0,170,255,.34), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.22);
}

.encuentrosMiniText {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #58bfff;
    font-family: 'Rajdhani',sans-serif;
}

#encuentrosHeader h1 {
    margin-bottom: 22px;
    font-size: 82px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0,140,255,.18);
}

#encuentrosHeader p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.8;
    color: #dcecff;
    font-weight: 300;
}

#listaEncuentros {
    position: relative;
    width: 860px;
    max-width: 100%;
}

#paginaPlayoff {
    position: relative;
    z-index: 5;
}

#playoffHeader {
    position: relative;
    width: 760px;
    max-width: 100%;
    margin-bottom: 54px;
}

#playoffHeader::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #58bfff, transparent);
}

.playoffMiniText {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #58bfff;
    font-family: 'Rajdhani',sans-serif;
}

#playoffHeader h1 {
    margin-bottom: 22px;
    font-size: 82px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    color: #ffffff;
    text-shadow: 0 0 24px rgba(88,191,255,.42);
}

#playoffHeader p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.8;
    color: #dcecff;
    font-weight: 300;
}

#playoffSection {
    position: relative;
    width: min(1320px, 100%);
    margin-left: clamp(40px, 5vw, 130px);
    padding: 8px 0 38px;
    background: transparent;
}

.playoffTopTitle {
    display: grid;
    justify-items: center;
    gap: 12px;
    margin: -6px auto 52px;
    color: #f4c84d;
    font-family: 'Rajdhani',sans-serif;
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-shadow:
        0 0 14px rgba(255,255,255,.36),
        0 0 22px rgba(255,196,54,.72),
        0 0 34px rgba(0,151,255,.32);
}

.playoffTopTitle img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 14px rgba(0,151,255,.95))
        drop-shadow(0 0 20px rgba(255,203,68,.38));
}

.playoffBracket {
    position: relative;
    z-index: 2;
    min-height: 650px;
    font-family: 'Rajdhani',sans-serif;
}

.playoffStage {
    position: absolute;
    color: #76c7ff;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 14px rgba(0,145,255,.72);
}

.playoffStage::after {
    content: "";
    display: block;
    width: 240px;
    height: 2px;
    margin-top: 10px;
    background: linear-gradient(90deg, transparent, rgba(255,205,66,.92), transparent);
    box-shadow: 0 0 12px rgba(255,195,41,.7);
}

.playoffStageQuarters {
    left: 52px;
    top: 0;
}

.playoffStageSemis {
    left: 485px;
    top: 0;
}

.playoffStageFinal {
    left: 960px;
    top: 0;
}

.playoffCard {
    position: absolute;
    display: grid;
    grid-template-columns: 68px 1fr;
    align-items: center;
    width: 300px;
    min-height: 78px;
    padding: 8px 24px 8px 18px;
    color: #f2f7ff;
    background:
        linear-gradient(135deg, rgba(4,13,37,.96), rgba(2,21,55,.9)),
        linear-gradient(90deg, rgba(0,151,255,.24), transparent);
    border: 2px solid rgba(0,151,255,.92);
    clip-path: polygon(0 18px, 18px 0, calc(100% - 28px) 0, 100% 28px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px));
    box-shadow:
        inset 0 0 22px rgba(0,151,255,.16),
        0 0 18px rgba(0,151,255,.56),
        0 0 2px rgba(255,213,86,.92);
    animation: playoffCardPulse 4.2s ease-in-out infinite;
}

.playoffCard::before,
.playoffCard::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.playoffCard::before {
    inset: 5px;
    border: 1px solid rgba(100,210,255,.38);
    clip-path: inherit;
    box-shadow:
        inset 0 0 12px rgba(255,255,255,.08),
        0 0 9px rgba(0,151,255,.26);
    animation: playoffInnerBorder 3.4s ease-in-out infinite;
}

.playoffCard::after {
    left: 16px;
    right: 16px;
    bottom: -2px;
    height: 3px;
    background: linear-gradient(90deg, #f6c94c, #ffffff 18%, transparent 34%, #0aa8ff 70%, #ffffff);
    background-size: 220% 100%;
    box-shadow: 0 0 12px rgba(0,168,255,.82), 0 0 18px rgba(255,203,68,.38);
    animation: playoffEdgeScan 2.8s linear infinite;
}

.playoffCard img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0,151,255,.8));
}

.playoffCard strong {
    justify-self: center;
    color: #f3f6ff;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 12px rgba(255,255,255,.55);
}

.playoffGold {
    border-color: rgba(255,203,68,.96);
    box-shadow:
        inset 0 0 22px rgba(255,203,68,.13),
        0 0 18px rgba(0,151,255,.46),
        0 0 14px rgba(255,203,68,.42);
    animation-name: playoffGoldPulse;
}

.playoffCrown {
    justify-self: center;
    color: #f5ca4e;
    font-size: 46px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(255,203,68,.85);
}

.playoffWinner {
    grid-template-columns: 68px 1fr;
}

.playoffWinner span {
    justify-self: center;
    color: #19aaff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.playoffWinner strong {
    grid-column: 2;
    margin-top: -10px;
    font-size: 34px;
}

.playoffDuel,
.playoffFinalVs {
    position: absolute;
    color: #13a8ff;
    font-size: 36px;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    text-shadow: 0 0 16px rgba(19,168,255,.92);
}

.playoffDirect {
    position: absolute;
    color: #f4c84d;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(255,203,68,.58);
    white-space: nowrap;
}

.playoffCardQ1 {
    left: 0;
    top: 78px;
}

.playoffDuelTop {
    left: 138px;
    top: 174px;
}

.playoffCardQ2 {
    left: 0;
    top: 220px;
}

.playoffCardQ3 {
    left: 0;
    top: 386px;
}

.playoffDuelBottom {
    left: 138px;
    top: 482px;
}

.playoffCardQ4 {
    left: 0;
    top: 528px;
}

.playoffDirectTop {
    left: 472px;
    top: 34px;
}

.playoffCardS1 {
    left: 430px;
    top: 84px;
}

.playoffCardS2 {
    left: 430px;
    top: 186px;
}

.playoffDirectBottom {
    left: 480px;
    top: 315px;
}

.playoffCardS3 {
    left: 430px;
    top: 350px;
}

.playoffCardS4 {
    left: 430px;
    top: 457px;
}

.playoffCardF1 {
    left: 830px;
    top: 136px;
}

.playoffFinalVs {
    left: 965px;
    top: 272px;
}

.playoffCardF2 {
    left: 830px;
    top: 403px;
}

.playoffChampion {
    position: absolute;
    left: 1165px;
    top: 198px;
    display: grid;
    justify-items: center;
    align-content: center;
    width: 145px;
    min-height: 190px;
    padding: 16px;
    color: #f4c84d;
    background: linear-gradient(160deg, rgba(7,14,36,.98), rgba(0,20,52,.94));
    border: 2px solid rgba(255,203,68,.95);
    clip-path: polygon(0 24px, 24px 0, calc(100% - 24px) 0, 100% 24px, 100% calc(100% - 24px), calc(100% - 24px) 100%, 24px 100%, 0 calc(100% - 24px));
    box-shadow:
        inset 0 0 24px rgba(255,203,68,.15),
        0 0 26px rgba(255,203,68,.44);
    animation: playoffGoldPulse 4.2s ease-in-out infinite;
}

.playoffChampion img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255,203,68,.82));
}

.playoffChampion strong {
    margin-top: 14px;
    font-size: 25px;
    line-height: 1;
    text-transform: uppercase;
}

.playoffChampion span {
    margin-top: 8px;
    color: #f7d76d;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
}

.playoffLine {
    position: absolute;
    z-index: 1;
    background: #8fd8ff;
    border-radius: 2px;
    box-shadow:
        0 0 10px rgba(255,255,255,.9),
        0 0 20px rgba(0,151,255,.92),
        0 0 32px rgba(255,203,68,.25);
    animation: playoffEnergy 2.8s ease-in-out infinite;
}

.playoffLine::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
    filter: blur(5px);
    opacity: .58;
}

.playoffLineQTopA { left: 300px; top: 117px; width: 42px; height: 4px; }
.playoffLineQTopB { left: 300px; top: 259px; width: 42px; height: 4px; }
.playoffLineQTopC { left: 338px; top: 117px; width: 4px; height: 146px; }
.playoffLineQTopD { left: 338px; top: 225px; width: 92px; height: 4px; }
.playoffLineQBottomA { left: 300px; top: 425px; width: 42px; height: 4px; }
.playoffLineQBottomB { left: 300px; top: 567px; width: 42px; height: 4px; }
.playoffLineQBottomC { left: 338px; top: 425px; width: 4px; height: 146px; }
.playoffLineQBottomD { left: 338px; top: 496px; width: 92px; height: 4px; }
.playoffLineSemiA { left: 730px; top: 123px; width: 4px; height: 105px; }
.playoffLineSemiB { left: 730px; top: 175px; width: 100px; height: 4px; }
.playoffLineSemiC { left: 730px; top: 389px; width: 4px; height: 107px; }
.playoffLineSemiD { left: 730px; top: 442px; width: 100px; height: 4px; }
.playoffLineFinalA { left: 1130px; top: 175px; width: 4px; height: 268px; }
.playoffLineFinalB { left: 1130px; top: 292px; width: 35px; height: 4px; }

@keyframes playoffEnergy {
    0%, 100% {
        opacity: .72;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.55);
    }
}

@keyframes playoffEdgeScan {
    0% {
        background-position: 120% 0;
        opacity: .72;
    }

    50% {
        opacity: 1;
    }

    100% {
        background-position: -120% 0;
        opacity: .82;
    }
}

@keyframes playoffInnerBorder {
    0%, 100% {
        border-color: rgba(100,210,255,.26);
        box-shadow: inset 0 0 12px rgba(255,255,255,.06), 0 0 9px rgba(0,151,255,.22);
    }

    50% {
        border-color: rgba(255,255,255,.62);
        box-shadow: inset 0 0 16px rgba(255,255,255,.14), 0 0 15px rgba(0,151,255,.48);
    }
}

@keyframes playoffCardPulse {
    0%, 100% {
        border-color: rgba(0,151,255,.78);
        box-shadow: inset 0 0 22px rgba(0,151,255,.13), 0 0 16px rgba(0,151,255,.44), 0 0 2px rgba(255,213,86,.7);
    }

    50% {
        border-color: rgba(255,255,255,.86);
        box-shadow: inset 0 0 26px rgba(255,255,255,.1), 0 0 24px rgba(0,151,255,.74), 0 0 16px rgba(255,203,68,.28);
    }
}

@keyframes playoffGoldPulse {
    0%, 100% {
        border-color: rgba(255,203,68,.88);
        box-shadow: inset 0 0 22px rgba(255,203,68,.12), 0 0 18px rgba(0,151,255,.42), 0 0 13px rgba(255,203,68,.36);
    }

    50% {
        border-color: rgba(255,255,255,.92);
        box-shadow: inset 0 0 28px rgba(255,203,68,.2), 0 0 24px rgba(255,255,255,.24), 0 0 22px rgba(255,203,68,.62);
    }
}

.encuentroItem {
    position: relative;
    display: grid;
    grid-template-columns: 200px 1fr 200px 170px;
    align-items: center;
    gap: 42px;
    min-height: 275px;
    padding: 34px 0 46px;
}

.encuentroItem::before {
    content: "";
    position: absolute;
    left: 70px;
    right: 70px;
    top: 50%;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(89,199,255,.48), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.28);
    z-index: -1;
}

.equipoSlot {
    position: relative;
    height: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipoSlot::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 165px;
    height: 18px;
    transform: translateX(-50%);
    background: radial-gradient( ellipse, rgba(0,170,255,.26), rgba(0,170,255,.08) 48%, transparent 72% );
    filter: blur(4px);
}

.equipoLogo {
    position: relative;
    z-index: 2;
    width: 178px;
    height: 170px;
    max-width: 178px;
    max-height: 170px;
    object-fit: contain;
    --logo-scale: 1;
    filter: drop-shadow(0 0 14px rgba(0,170,255,.24)) drop-shadow(0 0 34px rgba(0,140,255,.12));
    animation: flotarEquipo 6s ease-in-out infinite;
}

.equipoSlotDer .equipoLogo {
    animation-delay: .4s;
}

.encuentroCentro {
    position: relative;
    text-align: center;
    padding: 18px 10px;
}

.encuentroCentro::before,
.encuentroCentro::after {
    content: "";
    position: absolute;
    top: 18px;
    width: 1px;
    height: calc(100% - 36px);
    background: linear-gradient( transparent, rgba(89,199,255,.48), transparent );
    box-shadow: 0 0 14px rgba(0,170,255,.22);
}

.encuentroCentro::before {
    left: -18px;
}

.encuentroCentro::after {
    right: -18px;
}

.encuentroEstado {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(89,199,255,.72);
    font-family: 'Rajdhani',sans-serif;
}

.encuentroVS {
    margin-bottom: 12px;
    font-size: 54px;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    text-shadow: 0 0 28px rgba(0,170,255,.28);
}

.encuentroFecha {
    margin-bottom: 6px;
    font-size: 18px;
    letter-spacing: 4px;
    color: #70ccff;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
}

.encuentroHora {
    font-size: 15px;
    letter-spacing: 3px;
    color: #dcecff;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 500;
}

@keyframes flotarEquipo {

    0% {
        transform: translateY(0px) scale(var(--logo-scale));
    }

    50% {
        transform: translateY(-9px) scale(var(--logo-scale));
    }

    100% {
        transform: translateY(0px) scale(var(--logo-scale));
    }
}
.resultadoSlot {
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 28px;
}

.resultadoSlot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    width: 1px;
    height: calc(100% - 36px);
    background: linear-gradient( transparent, rgba(89,199,255,.5), transparent );
    box-shadow: 0 0 14px rgba(0,170,255,.22);
}

.resultadoLabel {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: 4px;
    color: rgba(89,199,255,.72);
    font-family: 'Rajdhani',sans-serif;
}

.resultadoEstado {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    letter-spacing: 3px;
    color: #ffffff;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    text-shadow: 0 0 18px rgba(0,170,255,.24);
}

.resultadoLogo {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(0,170,255,.35));
    transform: scale(var(--logo-scale));
}
/* ======================================== */
/* AJUSTE VISUAL LOGOS EQUIPOS */
/* ======================================== */

.equipoLogo1 {
    --logo-scale: 1.18;
}

.equipoLogo2 {
    --logo-scale: 1.28;
}

.equipoLogo3 {
    --logo-scale: 1.08;
}

.equipoLogo4 {
    --logo-scale: 1.02;
}

.equipoLogo5 {
    --logo-scale: 1.08;
}

.equipoLogo6 {
    --logo-scale: 1.02;
}

.equipoLogo7 {
    --logo-scale: 1.04;
}

.equipoLogo8 {
    --logo-scale: .92;
}

.equipoLogo9 {
    --logo-scale: 1.12;
}

.equipoLogo10 {
    --logo-scale: 1.1;
}
/* ======================================== */
/* SIDE TAGS ENCUENTROS */
/* ======================================== */

.sideTag {
    position: absolute;
    top: 4px;
    left: 50%;
    z-index: 4;
    min-width: 118px;
    transform: translateX(-50%);
    padding: 6px 12px 5px;
    text-align: center;
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    background: rgba(3,12,28,.34);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.08);
    text-shadow: 0 0 12px currentColor;
}

.sideTag::before {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: .85;
}

.sideTagBlue {
    color: #59c7ff;
    border-color: rgba(89,199,255,.34);
    box-shadow: 0 0 18px rgba(0,170,255,.16), inset 0 0 16px rgba(0,170,255,.06);
}

.sideTagRed {
    color: #ff4d6d;
    border-color: rgba(255,77,109,.34);
    box-shadow: 0 0 18px rgba(255,77,109,.16), inset 0 0 16px rgba(255,77,109,.06);
}
.encuentrosFrase {
    margin-top: 18px;
    font-size: 18px;
    font-weight: 400;
    color: #70ccff;
    letter-spacing: 4px;
    font-family: 'Rajdhani',sans-serif;
    text-shadow: 0 0 18px rgba(0,140,255,.16);
}
/* ======================================== */
/* EQUIPOS ROSTER */
/* ======================================== */

#paginaEquipos {
    position: relative;
    z-index: 5;
}

#equiposHeader {
    position: relative;
    width: 760px;
    max-width: 100%;
    margin-bottom: 54px;
}

#equiposHeader::before {
    content: "";
    position: absolute;
    left: -30px;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient( transparent, rgba(0,170,255,.34), transparent );
    box-shadow: 0 0 18px rgba(0,170,255,.22);
}

.equiposMiniText {
    margin-bottom: 18px;
    font-size: 14px;
    letter-spacing: 6px;
    color: #58bfff;
    font-family: 'Rajdhani',sans-serif;
}

#equiposHeader h1,
#equipoDetalleHeader h2 {
    margin-bottom: 22px;
    font-size: 82px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0,140,255,.18);
}

#equiposHeader p,
#equipoDetalleHeader p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.8;
    color: #dcecff;
    font-weight: 300;
}

#equiposVistaLista {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 44px;
    z-index: 5;
}

.equipoCard {
    position: relative;
    width: 230px;
    min-height: 285px;
    padding: 18px 0 22px;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Rajdhani',sans-serif;
}

.equipoCardGlow {
    position: absolute;
    left: 50%;
    bottom: 72px;
    width: 170px;
    height: 20px;
    transform: translateX(-50%);
    background: radial-gradient( ellipse, rgba(0,170,255,.28), rgba(0,170,255,.08) 48%, transparent 72% );
    filter: blur(5px);
}

.equipoCardLogo {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 190px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0,170,255,.26)) drop-shadow(0 0 42px rgba(0,140,255,.14));
    animation: flotarEquipo 6s ease-in-out infinite;
    transition: .25s;
}

.equipoCardNombre {
    display: block;
    margin-top: 18px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 0 0 18px rgba(0,170,255,.2);
}

.equipoCard:hover .equipoCardLogo {
    transform: translateY(-8px) scale(1.04);
}

.equipoCard:hover .equipoCardNombre {
    color: #59c7ff;
}

#equipoDetalle {
    position: relative;
    z-index: 5;
    width: 980px;
    max-width: 100%;
}

.equipoDetalleOculto {
    display: none;
}

#btnVolverEquipos {
    margin-bottom: 34px;
    padding: 12px 18px;
    border: 1px solid rgba(89,199,255,.35);
    background: rgba(0,170,255,.06);
    color: #70ccff;
    font-family: 'Rajdhani',sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: .25s;
}

#btnVolverEquipos:hover {
    transform: translateX(-6px);
    color: #ffffff;
    border-color: rgba(89,199,255,.75);
}

#equipoDetalleHeader {
    display: grid;
    grid-template-columns: 210px 1fr;
    align-items: center;
    gap: 48px;
    margin-bottom: 48px;
}

.equipoDetalleLogo {
    width: 210px;
    height: 210px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0,170,255,.26)) drop-shadow(0 0 42px rgba(0,140,255,.14));
    animation: flotarEquipo 6s ease-in-out infinite;
}

#rosterVertical {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.playerRow {
    position: relative;
    display: grid;
    grid-template-columns: 120px 1fr 330px;
    align-items: center;
    gap: 34px;
    min-height: 118px;
    padding: 18px 0;
}

.playerRow::before {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(89,199,255,.52), transparent);
    box-shadow: 0 0 16px rgba(0,170,255,.24);
}

.playerRole {
    color: #59c7ff;
    font-family: 'Rajdhani',sans-serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 4px;
    text-shadow: 0 0 18px rgba(0,170,255,.26);
}

.playerInfo h3 {
    margin-bottom: 6px;
    font-family: 'Rajdhani',sans-serif;
    font-size: 34px;
    line-height: 1;
    letter-spacing: 2px;
    color: #ffffff;
}

.playerInfo span {
    font-size: 15px;
    letter-spacing: 3px;
    color: #70ccff;
    font-family: 'Rajdhani',sans-serif;
}

.playerStats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    font-family: 'Rajdhani',sans-serif;
    color: rgba(220,236,255,.75);
    font-size: 12px;
    letter-spacing: 2px;
}

.playerStats strong {
    display: block;
    margin-top: 6px;
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 1.5px;
}
/* ======================================== */
/* TEAM DETAIL PAGE */
/* ======================================== */

.teamPage {
    position: relative;
    z-index: 5;
    width: 980px;
    max-width: 100%;
}

.btnVolverEquipos {
    margin-bottom: 34px;
    padding: 12px 18px;
    border: 1px solid rgba(89,199,255,.35);
    background: rgba(0,170,255,.06);
    color: #70ccff;
    font-family: 'Rajdhani',sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    transition: .25s;
}

.btnVolverEquipos:hover {
    transform: translateX(-6px);
    color: #ffffff;
    border-color: rgba(89,199,255,.75);
}

.teamHero {
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 54px;
    margin-bottom: 54px;
}

.teamLogoBox {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teamLogoBox::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: 180px;
    height: 20px;
    transform: translateX(-50%);
    background: radial-gradient( ellipse, rgba(0,170,255,.28), rgba(0,170,255,.08) 48%, transparent 72% );
    filter: blur(5px);
}

.teamLogoGrande {
    position: relative;
    z-index: 2;
    width: 220px;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(0,170,255,.26)) drop-shadow(0 0 42px rgba(0,140,255,.14));
    animation: flotarEquipo 6s ease-in-out infinite;
}

.teamIntro h1 {
    margin-bottom: 22px;
    font-size: 72px;
    font-family: 'Rajdhani',sans-serif;
    font-weight: 700;
    line-height: .9;
    letter-spacing: 4px;
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0,140,255,.18);
}

.teamIntro p {
    max-width: 560px;
    font-size: 20px;
    line-height: 1.8;
    color: #dcecff;
    font-weight: 300;
}

.teamRoster {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
/* ======================================== */
/* PLAYER ADVANCED STATS */
/* ======================================== */

.playerRowExpanded {
    grid-template-columns: 100px 260px 1fr;
    align-items: start;
    row-gap: 26px;
}

.playerProfileLink {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(89,199,255,.35);
    color: #70ccff;
    text-decoration: none;
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    background: rgba(0,170,255,.06);
    transition: .25s;
}

.playerProfileLink:hover {
    transform: translateX(6px);
    color: #ffffff;
    border-color: rgba(89,199,255,.75);
}

.playerStatsExpanded {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    row-gap: 18px;
}

.championPool {
    grid-column: 2 / 4;
    position: relative;
    padding-top: 8px;
}

.championPoolTitle {
    margin-bottom: 16px;
    font-family: 'Rajdhani',sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(89,199,255,.78);
}

.championList {
    display: grid;
    grid-template-columns: repeat(4, 180px);
    gap: 18px 22px;
    align-items: stretch;
}

.championItem {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 12px;
    width: 180px;
    min-height: 64px;
    padding: 10px 12px;
    border-left: 1px solid rgba(89,199,255,.28);
    background: linear-gradient(90deg, rgba(0,170,255,.07), transparent);
}

.championItem img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    filter: drop-shadow(0 0 10px rgba(0,170,255,.24));
}

.championItem span {
    display: block;
    min-width: 0;
    color: #ffffff;
    font-family: 'Rajdhani',sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.championItem small {
    display: block;
    grid-column: 2;
    margin-top: -12px;
    color: rgba(220,236,255,.62);
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
}
.playerBlockSeparated {
    margin-top: 54px;
    padding-top: 54px;
}

.playerBlockSeparated::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(89,199,255,.72), transparent);
    box-shadow: 0 0 18px rgba(0,170,255,.34);
}

.playerBlockSeparated::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: #59c7ff;
    box-shadow: 0 0 8px rgba(89,199,255,.95), 0 0 22px rgba(0,170,255,.55), 0 0 44px rgba(0,140,255,.25);
    animation: pulsoSeparador 2.4s ease-in-out infinite;
}

@keyframes pulsoSeparador {

    0% {
        opacity: .55;
        transform: translateX(-50%) scale(.78);
        box-shadow: 0 0 6px rgba(89,199,255,.55), 0 0 16px rgba(0,170,255,.28);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.18);
        box-shadow: 0 0 10px rgba(89,199,255,1), 0 0 28px rgba(0,170,255,.72), 0 0 58px rgba(0,140,255,.34);
    }

    100% {
        opacity: .55;
        transform: translateX(-50%) scale(.78);
        box-shadow: 0 0 6px rgba(89,199,255,.55), 0 0 16px rgba(0,170,255,.28);
    }
}

/* ======================================== */
/* RANKING TABLE */
/* ======================================== */

#paginaRanking {
    position: relative;
    z-index: 5;
}

.rankingPanel {
    position: relative;
    width: 760px;
    max-width: 100%;
    margin-top: 42px;
    padding-left: 28px;
}

.rankingPanel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(transparent, rgba(89,199,255,.42), transparent);
    box-shadow: 0 0 18px rgba(0,170,255,.22);
}

.rankingHeader,
.rankingRow {
    display: grid;
    grid-template-columns: 70px 1fr 130px;
    align-items: center;
    min-height: 54px;
    column-gap: 18px;
    font-family: 'Rajdhani',sans-serif;
}

.rankingHeader {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(89,199,255,.24);
    color: rgba(112,204,255,.82);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.rankingRow {
    position: relative;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(90deg, rgba(0,170,255,.08), transparent 72%);
    border-left: 1px solid rgba(89,199,255,.28);
}

.rankingRow span {
    padding: 0 12px;
}

.rankingRow span:first-child {
    color: #59c7ff;
    text-shadow: 0 0 14px rgba(0,170,255,.36);
}

.rankingEmpty {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(89,199,255,.18);
    color: rgba(220,236,255,.58);
    font-family: 'Rajdhani',sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}


/* ======================================== */
/* RANKING PARTICLES */
/* ======================================== */

.rankingRow {
    overflow: hidden;
    isolation: isolate;
}

.rankingRow span {
    position: relative;
    z-index: 2;
}

.rankingRow::before,
.rankingRow::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.rankingRow::before {
    width: 46%;
    opacity: .72;
    background:
        radial-gradient(circle at 22% 30%, rgba(255,214,107,.95) 0 2px, transparent 3px),
        radial-gradient(circle at 44% 62%, rgba(255,184,64,.82) 0 1px, transparent 3px),
        radial-gradient(circle at 66% 38%, rgba(255,235,164,.72) 0 1px, transparent 3px),
        radial-gradient(circle at 82% 70%, rgba(255,190,76,.68) 0 2px, transparent 4px);
    filter: drop-shadow(0 0 8px rgba(255,190,76,.55));
    animation: rankingParticulas 3.8s linear infinite;
}

.rankingRow::after {
    width: 34%;
    background: linear-gradient(90deg, transparent, rgba(255,195,76,.20), transparent);
    transform: translateX(-18%);
    animation: rankingBrillo 4.8s ease-in-out infinite;
}

.rankingTop::before {
    width: 52%;
    opacity: .96;
    background:
        radial-gradient(circle at 16% 24%, rgba(255,240,171,1) 0 2px, transparent 4px),
        radial-gradient(circle at 34% 70%, rgba(255,199,73,.96) 0 2px, transparent 4px),
        radial-gradient(circle at 52% 42%, rgba(255,230,126,.88) 0 1px, transparent 3px),
        radial-gradient(circle at 70% 28%, rgba(255,180,56,.80) 0 2px, transparent 4px),
        radial-gradient(circle at 88% 68%, rgba(255,235,166,.72) 0 1px, transparent 3px);
    filter: drop-shadow(0 0 10px rgba(255,205,84,.72)) drop-shadow(0 0 22px rgba(255,170,40,.28));
}

.rankingTop::after {
    background: linear-gradient(90deg, transparent, rgba(255,205,84,.30), rgba(255,240,170,.12), transparent);
}

.rankingMid::before {
    width: 42%;
    opacity: .58;
    background:
        radial-gradient(circle at 26% 36%, rgba(255,205,86,.76) 0 1px, transparent 3px),
        radial-gradient(circle at 54% 68%, rgba(255,168,52,.56) 0 1px, transparent 3px),
        radial-gradient(circle at 78% 30%, rgba(255,225,140,.50) 0 1px, transparent 3px);
    filter: drop-shadow(0 0 7px rgba(255,184,64,.38));
}

.rankingMid::after {
    width: 26%;
    opacity: .72;
    background: linear-gradient(90deg, transparent, rgba(255,178,64,.13), transparent);
}

.rankingLow::before {
    width: 34%;
    opacity: .32;
    background:
        radial-gradient(circle at 30% 32%, rgba(255,203,92,.52) 0 1px, transparent 3px),
        radial-gradient(circle at 62% 66%, rgba(255,170,58,.34) 0 1px, transparent 3px);
    filter: drop-shadow(0 0 5px rgba(255,166,52,.20));
}

.rankingLow::after {
    width: 22%;
    opacity: .42;
    background: linear-gradient(90deg, transparent, rgba(255,178,64,.08), transparent);
}

@keyframes rankingParticulas {

    0% {
        transform: translateX(-26%) translateY(0);
    }

    50% {
        transform: translateX(-6%) translateY(-2px);
    }

    100% {
        transform: translateX(18%) translateY(0);
    }
}

@keyframes rankingBrillo {

    0%, 100% {
        opacity: .28;
        transform: translateX(-20%);
    }

    50% {
        opacity: .82;
        transform: translateX(18%);
    }
}

/* ======================================== */
/* RANKING SPORT UPGRADE */
/* ======================================== */

.rankingStatus {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 9px 18px 9px 0;
    color: rgba(255,224,146,.92);
    font-family: 'Rajdhani',sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 0 0 16px rgba(255,190,76,.28);
}

.rankingStatus::after {
    content: "";
    position: absolute;
    left: 0;
    right: -42px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,205,84,.70), rgba(89,199,255,.18), transparent);
    box-shadow: 0 0 16px rgba(255,190,76,.20);
}

.rankingHeader,
.rankingRow {
    grid-template-columns: 76px 1fr 150px;
}

.rankingHeader {
    min-height: 46px;
    margin-bottom: 8px;
    border-top: 1px solid rgba(89,199,255,.16);
    border-bottom: 1px solid rgba(89,199,255,.34);
    background: linear-gradient(90deg, rgba(0,170,255,.05), rgba(0,170,255,.02), transparent);
}

.rankingRow {
    min-height: 64px;
    margin-bottom: 8px;
    border-left: 1px solid rgba(89,199,255,.26);
    border-top: 1px solid rgba(89,199,255,.11);
    border-bottom: 1px solid rgba(89,199,255,.18);
    background: linear-gradient(90deg, rgba(0,170,255,.09), rgba(0,16,32,.22) 48%, transparent 86%);
}

.rankingRow::marker {
    display: none;
}

.rankingRow span {
    padding: 0 12px;
}

.rankingPos {
    color: #59c7ff;
    font-size: 24px;
    text-shadow: 0 0 14px rgba(0,170,255,.42);
}

.rankingTeam {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.rankingTeam img {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 0 9px rgba(89,199,255,.32));
}

.rankingTeam strong {
    min-width: 0;
    color: #ffffff;
    font-size: 22px;
    letter-spacing: 1.8px;
    white-space: nowrap;
    text-shadow: 0 0 16px rgba(0,140,255,.18);
}

.rankingPoints {
    justify-self: end;
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 8px;
    min-width: 98px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    text-align: right;
    text-shadow: 0 0 18px rgba(89,199,255,.22);
}

.rankingPoints small {
    color: rgba(112,204,255,.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.rankingTop {
    border-left: 2px solid rgba(255,205,84,.72);
    border-bottom-color: rgba(255,205,84,.24);
    background: linear-gradient(90deg, rgba(255,195,76,.11), rgba(0,170,255,.07) 44%, transparent 88%);
    box-shadow: inset 0 0 0 1px rgba(255,205,84,.05), 0 0 18px rgba(255,190,76,.08);
}

.rankingLeader {
    min-height: 78px;
    border-left-color: rgba(255,226,132,.95);
    background: linear-gradient(90deg, rgba(255,205,84,.18), rgba(0,170,255,.09) 42%, transparent 90%);
    box-shadow: inset 0 0 0 1px rgba(255,226,132,.10), 0 0 28px rgba(255,190,76,.14);
}

.rankingLeader .rankingTeam img {
    width: 52px;
    height: 52px;
}

.rankingLeader .rankingTeam strong {
    font-size: 27px;
}

.rankingLeader .rankingPoints {
    font-size: 36px;
    color: #ffe08f;
    text-shadow: 0 0 18px rgba(255,205,84,.42), 0 0 34px rgba(255,170,46,.18);
}

.rankingMedal {
    position: absolute !important;
    left: 44px;
    top: 50%;
    z-index: 3 !important;
    width: 20px;
    height: 20px;
    padding: 0 !important;
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #120a02;
    background: radial-gradient(circle, #fff0a8, #d99a28 72%);
    box-shadow: 0 0 12px rgba(255,205,84,.62);
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.rankingMid {
    border-left-color: rgba(255,205,84,.36);
}

.rankingLow {
    border-left-color: rgba(89,199,255,.22);
}

@media (max-width: 900px) {

    .rankingPanel {
        width: 100%;
        padding-left: 18px;
    }

    .rankingHeader,
    .rankingRow {
        grid-template-columns: 52px 1fr 88px;
        column-gap: 8px;
    }

    .rankingTeam img {
        width: 34px;
        height: 34px;
    }

    .rankingTeam strong {
        font-size: 17px;
        white-space: normal;
    }

    .rankingPoints {
        min-width: auto;
        font-size: 23px;
    }

    .rankingPoints small {
        display: none;
    }
}

/* ======================================== */
/* RANKING PARTICLES SMOOTH FIX */
/* ======================================== */

.rankingRow::before {
    left: 0;
    right: auto;
    width: 100%;
    opacity: .72;
    background-size: 360px 100%;
    background-repeat: repeat-x;
    animation: rankingParticulas 7.5s linear infinite;
}

.rankingTop::before {
    width: 100%;
    opacity: .96;
    background-size: 380px 100%;
}

.rankingMid::before {
    width: 100%;
    opacity: .58;
    background-size: 420px 100%;
}

.rankingLow::before {
    width: 100%;
    opacity: .34;
    background-size: 460px 100%;
}

@keyframes rankingParticulas {

    0% {
        background-position: 0 0;
        transform: translateX(0);
    }

    100% {
        background-position: 360px 0;
        transform: translateX(0);
    }
}

/* ======================================== */
/* RANKING TROPHY SIDE */
/* ======================================== */

.rankingStage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(640px, 760px) minmax(260px, 1fr);
    align-items: center;
    column-gap: 78px;
    width: min(1280px, 100%);
}

.rankingTrophy {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
}

.rankingTrophy::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,170,255,.18), rgba(0,90,180,.07) 42%, transparent 70%);
    filter: blur(14px);
}

.rankingTrophy img {
    position: relative;
    z-index: 2;
    width: min(420px, 92%);
    max-height: 520px;
    object-fit: contain;
    opacity: .92;
    filter: drop-shadow(0 0 16px rgba(89,199,255,.34)) drop-shadow(0 0 54px rgba(0,140,255,.18));
    animation: rankingTrophyFloat 6s ease-in-out infinite;
}

@keyframes rankingTrophyFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 1180px) {

    .rankingStage {
        grid-template-columns: 1fr;
    }

    .rankingTrophy {
        display: none;
    }
}

/* ======================================== */
/* ENCUENTROS POSITION OFFSET */
/* ======================================== */

#listaEncuentros {
    margin-left: clamp(150px, 15vw, 390px);
}

@media (max-width: 1500px) {

    #playoffSection {
        margin-left: 0;
        overflow-x: hidden;
    }

    .playoffBracket {
        width: 1320px;
        transform: scale(.84);
        transform-origin: top left;
        min-height: 550px;
    }
}

@media (max-width: 1180px) {

    #listaEncuentros {
        margin-left: 0;
    }

    #playoffSection {
        margin-left: 0;
    }
}

@media (max-width: 980px) {

    #playoffSection {
        padding: 28px 16px 30px;
        overflow: visible;
    }

    .playoffBracket {
        min-height: auto;
        display: grid;
        gap: 18px;
        width: 100%;
        transform: none;
    }

    .playoffStage,
    .playoffCard,
    .playoffDuel,
    .playoffDirect,
    .playoffFinalVs,
    .playoffChampion {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .playoffStage {
        margin-top: 18px;
        text-align: center;
    }

    .playoffStage::after {
        width: 100%;
    }

    .playoffCard {
        min-height: 72px;
    }

    .playoffCard strong {
        font-size: 42px;
    }

    .playoffWinner strong {
        font-size: 28px;
    }

    .playoffDuel,
    .playoffFinalVs {
        text-align: center;
    }

    .playoffLine {
        display: none;
    }
}



/* ======================================== */
/* SIDEBAR AUDIO */
/* ======================================== */

.audioToggle {
    width: 100%;
    margin-top: 18px;
    padding: 10px 12px;
    border: 1px solid rgba(89,199,255,.28);
    background: linear-gradient( 90deg, rgba(0,170,255,.08), rgba(255,255,255,.02), rgba(0,170,255,.06) );
    color: #70ccff;
    font-family: 'Rajdhani',sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: inset 0 0 18px rgba(0,170,255,.08), 0 0 22px rgba(0,140,255,.08);
    transition: .25s;
}

    .audioToggle:hover {
        color: #ffffff;
        border-color: rgba(89,199,255,.55);
        box-shadow: inset 0 0 20px rgba(0,170,255,.12), 0 0 26px rgba(0,140,255,.16);
    }

#audioVolumeBox {
    width: 100%;
    margin-top: 9px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    row-gap: 5px;
    column-gap: 10px;
    color: rgba(112,204,255,.88);
    font-family: 'Rajdhani',sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

#audioVolumeBox span {
    line-height: 1;
}

#audioVolumeBox strong {
    min-width: 34px;
    color: rgba(220,236,255,.9);
    font-size: 11px;
    line-height: 1;
    text-align: right;
    letter-spacing: 1px;
}

#audioVolumen {
    grid-column: 1 / -1;
    width: 100%;
    height: 16px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    --audioNivel: 75%;
}

#audioVolumen::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient( 90deg, rgba(89,199,255,.95) 0%, rgba(89,199,255,.95) var(--audioNivel), rgba(10,35,58,.72) var(--audioNivel), rgba(10,35,58,.72) 100% );
    border: 1px solid rgba(89,199,255,.22);
    box-shadow: 0 0 14px rgba(0,170,255,.28), inset 0 0 10px rgba(0,170,255,.12);
}

#audioVolumen::-webkit-slider-thumb {
    width: 12px;
    height: 12px;
    margin-top: -5px;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 50%;
    background: #59c7ff;
    border: 1px solid rgba(220,236,255,.85);
    box-shadow: 0 0 10px rgba(89,199,255,.95), 0 0 24px rgba(0,170,255,.55);
}

#audioVolumen::-moz-range-track {
    width: 100%;
    height: 4px;
    border-radius: 30px;
    background: rgba(10,35,58,.72);
    border: 1px solid rgba(89,199,255,.22);
    box-shadow: 0 0 14px rgba(0,170,255,.28), inset 0 0 10px rgba(0,170,255,.12);
}

#audioVolumen::-moz-range-progress {
    height: 4px;
    border-radius: 30px;
    background: rgba(89,199,255,.95);
    box-shadow: 0 0 12px rgba(89,199,255,.65);
}

#audioVolumen::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #59c7ff;
    border: 1px solid rgba(220,236,255,.85);
    box-shadow: 0 0 10px rgba(89,199,255,.95), 0 0 24px rgba(0,170,255,.55);
}

.audioPulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #59c7ff;
    box-shadow: 0 0 10px rgba(89,199,255,.95), 0 0 24px rgba(0,170,255,.55);
    animation: pulsoAudio 1.8s ease-in-out infinite;
}

.audioToggle.silenciado {
    color: rgba(215,235,255,.55);
    border-color: rgba(215,235,255,.12);
    background: rgba(255,255,255,.025);
}

    .audioToggle.silenciado .audioPulse {
        background: rgba(215,235,255,.35);
        box-shadow: 0 0 8px rgba(215,235,255,.22);
        animation: none;
    }

@keyframes pulsoAudio {

    0% {
        transform: scale(.82);
        opacity: .55;
    }

    50% {
        transform: scale(1.28);
        opacity: 1;
    }

    100% {
        transform: scale(.82);
        opacity: .55;
    }
}
/* ======================================== */
/* SIDEBAR BRAND */
/* ======================================== */

#sidebarBrand {
    margin-top: auto;
    padding: 12px 0 0 0;
    border-top: 1px solid rgba(89,199,255,.14);
    color: rgba(215,235,255,.76);
    font-family: 'Rajdhani',sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 2px;
    text-shadow: 0 0 14px rgba(0,170,255,.16);
}






