
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d69a20;
    --gold-light: #f0b52d;
}

html,
body {
    width: 100%;
    min-height: 100%;
    background: #080808;
    color: #fff;
    font-family: "Montserrat", Arial, sans-serif;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

/* =========================================================
   HEADER
========================================================= */

.top-header {
    width: 100%;
    height: 60px;
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,.025);
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 100%;
    max-width: 1431px;
    height: 60px;
    margin: 0 auto;
    padding: 0 65px;

    display: flex;
    align-items: center;
}

.brand {
    width: 205px;
    height: 100%;
    flex: 0 0 205px;

    display: flex;
    align-items: center;

    text-decoration: none;
}

.brand img {
    display: block;
    width: 190px;
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    height: 100%;
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.nav-link {
    height: 100%;
    position: relative;

    display: flex;
    align-items: center;

    color: #d0d0d0;
    text-decoration: none;
    white-space: nowrap;

    font-size: 11px;
    font-weight: 600;

    transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 2px;
    background: var(--gold);

    transform: scaleX(0);
    transition: transform .2s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   MENÚ EQUIPOS — DESPLEGABLE DE DIVISIONES
========================================================= */
.nav-dropdown{
    position:relative;
    height:100%;
    display:flex;
    align-items:center;
}

.nav-dropdown-toggle{
    gap:7px;
}

.nav-dropdown-arrow{
    font-size:8px;
    transition:transform .2s ease;
}

.nav-dropdown-menu{
    position:absolute;
    top:calc(100% + 1px);
    left:50%;
    transform:translate(-50%, -8px);
    min-width:235px;
    padding:7px;
    display:flex;
    flex-direction:column;
    gap:2px;
    background:rgba(7,7,7,.98);
    border:1px solid rgba(214,154,32,.55);
    box-shadow:0 12px 30px rgba(0,0,0,.55);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index:100;
}

.nav-dropdown-menu::before{
    content:"";
    position:absolute;
    top:-5px;
    left:50%;
    width:8px;
    height:8px;
    background:#070707;
    border-left:1px solid rgba(214,154,32,.55);
    border-top:1px solid rgba(214,154,32,.55);
    transform:translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu a{
    display:flex;
    align-items:center;
    gap:10px;
    min-height:42px;
    padding:8px 12px;
    color:#e6e6e6;
    background:rgba(255,255,255,.025);
    border:1px solid transparent;
    text-decoration:none;
    font-size:11px;
    font-weight:700;
    white-space:nowrap;
    transition:background .18s ease, color .18s ease, border-color .18s ease;
}

.nav-dropdown-menu a i{
    width:16px;
    color:var(--gold);
    text-align:center;
}

.nav-dropdown-menu a:hover{
    color:var(--gold);
    background:rgba(214,154,32,.09);
    border-color:rgba(214,154,32,.35);
}

@media (hover:hover) and (pointer:fine){
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu{
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        transform:translate(-50%, 0);
    }

    .nav-dropdown:hover .nav-dropdown-arrow,
    .nav-dropdown:focus-within .nav-dropdown-arrow{
        transform:rotate(180deg);
    }
}

@media (max-width:900px){
    .nav-dropdown-menu{
        min-width:210px;
    }
}

@media (max-width:600px){
    .nav-dropdown{
        height:auto;
        width:100%;
        flex-direction:column;
        align-items:stretch;
    }

    .nav-dropdown-toggle{
        width:100%;
        min-height:44px;
        justify-content:space-between;
    }

    .nav-dropdown-menu{
        position:static;
        transform:none;
        width:100%;
        min-width:0;
        margin:0 0 4px;
        padding:4px;
        opacity:1;
        visibility:visible;
        pointer-events:auto;
        box-shadow:none;
        border-left:0;
        border-right:0;
    }

    .nav-dropdown-menu::before{
        display:none;
    }

    .nav-dropdown-menu a{
        min-height:42px;
    }
}

.social-links {
    min-width: 175px;

    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 17px;
}

.social-links a {
    color: var(--gold);
    font-size: 14px;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: color .2s ease, transform .2s ease;
}

.social-links a:hover {
    color: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--gold);
    font-size: 22px;
    cursor: pointer;
}

/* =========================================================
   HERO
========================================================= */

.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;

    background: #000;
    line-height: 0;

    border-top: 2px solid #8f6114;
    box-shadow:
        0 -1px 0 rgba(224,164,39,.35),
        0 1px 5px rgba(214,154,32,.18);
}

.hero-background {
    display: block;
    width: 100%;
    height: auto;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 3;

    background: linear-gradient(
        90deg,
        rgba(214,154,32,.25),
        rgba(240,181,45,.95) 50%,
        rgba(214,154,32,.25)
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-logo {
    position: absolute;
    z-index: 5;

    top: 2%;
    left: 50%;
    transform: translateX(-50%);

    width: min(350px, 30vw);
    max-height: 78%;
    height: auto;

    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.75));
}

.hero-actions {
    position: absolute;
    z-index: 6;

    left: 50%;
    bottom: 9px;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;

    line-height: normal;
    pointer-events: auto;
}

.hero-button {
    width: 172px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 3px;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 700;

    transition: .2s ease;
}

.hero-button-primary {
    color: #090909;
    background: linear-gradient(180deg,#f3b934 0%,#d9971d 100%);
    border: 1px solid #f5bd45;
}

.hero-button-primary:hover {
    background: linear-gradient(180deg,#ffc84c 0%,#e4a529 100%);
    transform: translateY(-1px);
}

.hero-button-secondary {
    color: #ededed;
    background: rgba(4,4,4,.55);
    border: 1px solid #9a6b19;
}

.hero-button-secondary:hover {
    color: #fff;
    border-color: var(--gold);
    background: rgba(214,154,32,.08);
    transform: translateY(-1px);
}

/* =========================================================
   FOUR HOME PANELS
========================================================= */

.home-sections {
    width: 100%;
    max-width: none;
    margin: 0;

    padding: 36px 28px 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;

    background:
        radial-gradient(circle at 50% 0%, rgba(214,154,32,.07), transparent 38%),
        #080808;
}

.next-match-card,
.results-card,
.news-card,
.divisions-card {
    min-width: 0;
    min-height: 240px;

    position: relative;
    overflow: hidden;

    background:
        linear-gradient(145deg,rgba(255,255,255,.025),rgba(255,255,255,.005)),
        #0c0c0c;

    border: 1px solid rgba(214,154,32,.28);

    box-shadow:
        0 10px 35px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.025);

    padding: 18px 10px 12px;
}

.next-match-card::before,
.results-card::before,
.news-card::before,
.divisions-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.section-heading h2 {
    color: #f1f1f1;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    white-space: nowrap;
}

.heading-line {
    width: 36px;
    height: 1px;
    flex: 0 0 36px;
    background: var(--gold);
    opacity: .65;
}

/* =========================================================
   NEXT MATCH
========================================================= */

.match-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.match-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.game-label {
    color: #777;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.match-game strong {
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .8px;
}

.match-versus {
    width: 100%;

    display: grid;
    grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
    align-items: center;
    gap: 14px;
}

.team {
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;

    color: #eee;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .7px;
    text-align: center;
}

.team-logo {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.team-logo-hestia img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.opponent-logo {
    border: 1px solid rgba(214,154,32,.25);
    background: #111;
    color: #777;
    font-size: 23px;
}

.match-vs {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(214,154,32,.5);
    border-radius: 50%;

    color: var(--gold-light);
    font-size: 9px;
    font-weight: 700;
}

.match-info {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 11px;
}

.match-detail {
    display: flex;
    align-items: center;
    gap: 7px;
}

.match-detail > i {
    color: var(--gold);
    font-size: 13px;
}

.match-detail div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.match-detail small {
    color: #666;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1px;
}

.match-detail strong {
    color: #ddd;
    font-size: 9px;
    font-weight: 600;
}

.match-button {
    margin-top: 11px;
    min-width: 125px;
    height: 31px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: #090909;
    background: linear-gradient(180deg,#f3b934 0%,#d9971d 100%);
    border: 1px solid #f5bd45;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 8px;
    font-weight: 700;
}

/* =========================================================
   RESULTS
========================================================= */

.results-list,
.news-list,
.divisions-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255,255,255,.08);
}

.result-row {
    min-height: 58px;

    display: grid;
    grid-template-columns: minmax(0,1fr) 58px minmax(0,1fr);
    align-items: center;
    gap: 5px;

    padding: 5px;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.result-team {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 5px;

    color: #d7d7d7;
    font-size: 8px;
    font-weight: 700;
}

.result-team-left {
    justify-content: flex-start;
}

.result-team-right {
    justify-content: flex-end;
    text-align: right;
}

.result-team img {
    width: 42px;
    height: 44px;
    flex: 0 0 42px;
    object-fit: contain;
}

.result-team strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.result-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.result-score strong {
    color: #eee;
    font-size: 15px;
    line-height: 1;
}

.result-score span {
    font-size: 7px;
    font-weight: 700;
}

.win {
    color: #63bd72;
}

.loss {
    color: #d65c5c;
}

.opponent-mark {
    width: 27px;
    height: 27px;
    flex: 0 0 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);

    color: #bbb;
    background: #151515;

    font-size: 11px;
    font-weight: 800;
}

.opponent-mark.fire {
    color: #f05a31;
    border-color: rgba(240,90,49,.4);
}

.opponent-mark.dark {
    color: #aaa;
}

.results-button,
.news-button,
.divisions-button {
    margin: 10px auto 0;
    min-height: 26px;
    padding: 0 10px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: fit-content;
    box-sizing: border-box;

    color: var(--gold-light);
    background: transparent;
    border: 1px solid rgba(214,154,32,.45);
    border-radius: 0;
    box-shadow: none;

    text-decoration: none;
    text-transform: uppercase;

    font-family: inherit;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .3px;

    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.results-button:hover,
.news-button:hover,
.divisions-button:hover {
    color: #111;
    background: var(--gold);
}

/* =========================================================
   NEWS
========================================================= */

.news-item {
    min-height: 55px;

    display: grid;
    grid-template-columns: 58px minmax(0,1fr);
    align-items: center;
    gap: 7px;

    padding: 5px 4px;

    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.news-thumb {
    width: 55px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at 50% 40%,rgba(214,154,32,.22),transparent 65%),
        #111;

    border: 1px solid rgba(214,154,32,.18);
    color: var(--gold);
    font-size: 16px;
}

.news-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.news-content strong {
    color: #e7e7e7;
    font-size: 8px;
    line-height: 1.2;
}

.news-content span {
    color: #8a8a8a;
    font-size: 7px;
    line-height: 1.2;
}

.news-content small {
    color: var(--gold);
    font-size: 6.5px;
    font-weight: 700;
    letter-spacing: .5px;
}

/* =========================================================
   DIVISIONS
========================================================= */

.division-item {
    height: 43px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 0 9px;

    color: #fff;
    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,.10);
}

.division-bg {
    position: absolute;
    inset: 0;
    opacity: .42;

    background:
        radial-gradient(circle at 72% 50%,rgba(214,154,32,.28),transparent 35%),
        linear-gradient(100deg,#0b0b0b 0%,#171717 55%,#080808 100%);
}

.division-item.cs2 .division-bg {
    background:
        radial-gradient(circle at 20% 50%,rgba(151,87,38,.28),transparent 38%),
        linear-gradient(100deg,#17120e 0%,#121212 55%,#080808 100%);
}

.division-item.lol .division-bg {
    background:
        radial-gradient(circle at 75% 50%,rgba(0,87,110,.28),transparent 38%),
        linear-gradient(100deg,#081416 0%,#101a1b 55%,#080808 100%);
}

.division-name {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 1px;

    max-width: calc(100% - 40px);

    text-shadow: 0 1px 4px #000;
}

.division-name strong {
    color: #e5e5e5;
    font-size: 8px;
}

.division-name span {
    color: #ddd;
    font-size: 7px;
}

.division-icon {
    position: absolute;
    z-index: 2;
    right: 9px;

    width: 29px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--gold-light);
    font-size: 19px;
}

.cs2-icon {
    width: auto;
    height: auto;
    color: #d4d4d4;
    font-size: 13px;
    font-weight: 800;
    font-style: italic;
}

.lol-icon {
    color: #d6a72c;
    border: 1px solid rgba(214,167,44,.25);
    border-radius: 3px;

    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 700;
}

/* =========================================================
   RESPONSIVE
========================================================= */

/* Keep the four desktop panels in one row on PCs.
   Only switch to two columns on genuinely narrow screens. */
@media (max-width: 900px) {
    .header-container {
        padding: 0 20px;
    }

    .brand {
        width: auto;
        flex: 0 0 auto;
    }

    .brand img {
        width: 175px;
    }

    .main-nav {
        display: none;

        position: absolute;
        top: 65px;
        left: 0;

        width: 100%;
        height: auto;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: #000;
        border-top: 1px solid rgba(214,154,32,.15);
    }

    .main-nav.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        height: 48px;
        padding: 0 25px;
        justify-content: flex-start;
        font-size: 11px;
    }

    .social-links {
        margin-left: auto;
        min-width: auto;
        margin-right: 20px;
        gap: 14px;
    }

    .mobile-toggle {
        display: block;
    }

    .top-header,
    .header-container {
        height: 65px;
    }

    .hero-logo {
        width: min(270px,58vw);
        max-height: 72%;
    }

    .hero-actions {
        bottom: 8px;
        gap: 10px;
    }

    .hero-button {
        width: 145px;
        height: 38px;
        font-size: 9px;
    }

    .home-sections {
        grid-template-columns: repeat(2,minmax(0,1fr));
        padding: 28px 16px 0;
    }
}

@media (max-width: 600px) {
    .social-links {
        display: none;
    }

    .header-container {
        padding: 0 16px;
    }

    .home-sections {
        grid-template-columns: 1fr;
        padding: 24px 12px 0;
    }

    .next-match-card,
    .results-card,
    .news-card,
    .divisions-card {
        min-height: 240px;
    }

    .match-versus {
        gap: 8px;
    }

    .result-team img {
        width: 38px;
        height: 40px;
        flex-basis: 38px;
    }
}

/* Typography scale */
.section-heading h2 {
    font-size: 15px;
}

.nav-link {
    font-size: 11px;
}

.match-game strong {
    font-size: 12px;
}

.team {
    font-size: 10px;
}

.match-detail strong {
    font-size: 9px;
}

.match-button {
    font-size: 8px;
}

.result-team {
    font-size: 8px;
}

.result-score strong {
    font-size: 15px;
}

.result-score span {
    font-size: 7px;
}

.results-button,
.news-button,
.divisions-button {
    font-size: 7px;
}

.news-content strong {
    font-size: 8px;
}

.news-content span {
    font-size: 7px;
}

.news-content small {
    font-size: 6px;
}

.division-name strong {
    font-size: 8px;
}

.division-name span {
    font-size: 7px;
}

/* Typography scale - large */
.nav-link {
    font-size: 12px;
}

.section-heading h2 {
    font-size: 17px;
    letter-spacing: 2.2px;
}

.game-label {
    font-size: 10px;
}

.match-game strong {
    font-size: 14px;
}

.team {
    font-size: 11px;
}

.match-detail small {
    font-size: 8px;
}

.match-detail strong {
    font-size: 10px;
}

.match-button {
    font-size: 9px;
}

.result-team {
    font-size: 9px;
}

.result-score strong {
    font-size: 17px;
}

.result-score span {
    font-size: 8px;
}

.opponent-mark {
    font-size: 12px;
}

.results-button,
.news-button,
.divisions-button {
    font-size: 8px;
}

.news-content strong {
    font-size: 9px;
}

.news-content span {
    font-size: 8px;
}

.news-content small {
    font-size: 7px;
}

.division-name strong {
    font-size: 9px;
}

.division-name span {
    font-size: 8px;
}

/* Typography scale - extra large */
.nav-link {
    font-size: 13px;
}

.section-heading h2 {
    font-size: 19px;
    letter-spacing: 2.4px;
}

.game-label {
    font-size: 11px;
}

.match-game strong {
    font-size: 15px;
}

.team {
    font-size: 12px;
}

.match-detail small {
    font-size: 9px;
}

.match-detail strong {
    font-size: 11px;
}

.match-button {
    font-size: 10px;
}

.result-team {
    font-size: 10px;
}

.result-score strong {
    font-size: 19px;
}

.result-score span {
    font-size: 9px;
}

.opponent-mark {
    font-size: 13px;
}

.results-button,
.news-button,
.divisions-button {
    font-size: 9px;
}

.news-content strong {
    font-size: 10px;
}

.news-content span {
    font-size: 9px;
}

.news-content small {
    font-size: 8px;
}

.division-name strong {
    font-size: 10px;
}

.division-name span {
    font-size: 9px;
}

/* =========================================================
   PATROCINADORES / ALIADOS
========================================================= */

.sponsors-section {
    width: calc(100% - 56px);
    margin: 14px 28px 14px;
    min-height: 88px;

    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 14px 30px;

    background:
        linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,.08)),
        #0a0a0a;

    border: 1px solid rgba(214,154,32,.42);
    border-radius: 4px;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 8px 25px rgba(0,0,0,.25);
}

.sponsors-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 8px;
}

.sponsors-title span {
    width: 25%;
    max-width: 330px;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(214,154,32,.65)
    );
}

.sponsors-title span:last-child {
    background: linear-gradient(
        90deg,
        rgba(214,154,32,.65),
        transparent
    );
}

.sponsors-title h2 {
    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;

    white-space: nowrap;
}

.sponsors-list {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 6px;
}

.sponsor {
    min-width: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b9b9b9;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.5px;

    opacity: .9;

    transition:
        color .2s ease,
        opacity .2s ease,
        transform .2s ease;
}

.sponsor:hover {
    color: #eee;
    opacity: 1;
    transform: translateY(-1px);
}

.sponsor-aorus {
    font-style: italic;
    font-weight: 800;
    letter-spacing: -1px;
}

.sponsor-logitech {
    font-weight: 500;
}

.sponsor-logitech strong {
    margin-left: 5px;
    font-size: 23px;
    font-weight: 800;
}

.sponsor-kingston {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 8px;
    letter-spacing: 1px;
}

.sponsor-kingston strong {
    font-size: 19px;
    letter-spacing: -1px;
    line-height: .9;
}

.sponsor-redragon {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 700;
}

.sponsor-gamdias {
    font-size: 13px;
    letter-spacing: 1px;
}

.sponsor-hyperx {
    font-style: italic;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .sponsors-section {
        width: calc(100% - 32px);
        margin: 14px 16px 14px;
        padding: 13px 18px;
    }

    .sponsors-list {
        gap: 12px;
    }

    .sponsor {
        min-width: 0;
        font-size: 11px;
    }

    .sponsor-logitech strong {
        font-size: 17px;
    }

    .sponsor-kingston strong {
        font-size: 14px;
    }

    .sponsors-title h2 {
        font-size: 9px;
    }
}

@media (max-width: 600px) {
    .sponsors-section {
        min-height: auto;
        padding: 14px 10px;
    }

    .sponsors-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        row-gap: 12px;
    }

    .sponsor {
        font-size: 9px;
    }

    .sponsor-logitech strong {
        font-size: 13px;
    }

    .sponsor-kingston strong {
        font-size: 11px;
    }

    .sponsors-title span {
        width: 12%;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width: calc(100% - 56px);
    margin: 0 28px 0;

    background:
        linear-gradient(180deg, #0c0c0c 0%, #080808 100%);

    border: 1px solid rgba(214,154,32,.42);
    border-radius: 4px;

    color: #bdbdbd;

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.025),
        0 8px 25px rgba(0,0,0,.25);

    overflow: hidden;
}

.footer-inner {
    width: 100%;
    min-height: 155px;
    margin: 0;
    padding: 22px 28px;

    display: grid;
    grid-template-columns: 1.35fr 1.2fr 1.15fr 1.35fr;
    gap: 0;
}

.footer-brand,
.footer-column {
    min-width: 0;
    padding: 0 28px;

    border-right: 1px solid rgba(255,255,255,.08);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 0;
}

.footer-column:last-child {
    border-right: 0;
    padding-right: 0;
}


.footer-brand p {
    max-width: 225px;
    color: #8d8d8d;

    font-size: 11px;
    line-height: 1.45;
}

.footer-brand p strong {
    color: #cfcfcf;
}

.footer-column h3 {
    margin-bottom: 10px;

    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.footer-column a {
    color: #a8a8a8;
    text-decoration: none;

    font-size: 10px;
    line-height: 1.65;

    transition: color .2s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}

.footer-links-grid div {
    display: flex;
    flex-direction: column;
}

.footer-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.footer-social-grid a {
    display: flex;
    align-items: center;
    gap: 9px;
}

.footer-social-grid i {
    width: 14px;
    color: var(--gold);
    text-align: center;
}

.footer-community p {
    color: #8d8d8d;
    font-size: 10px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.footer-community p strong {
    color: #cfcfcf;
}

.discord-button {
    width: 164px;
    height: 34px;

    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 9px;

    color: #111 !important;
    background: linear-gradient(180deg,#f3b934,#d9971d);

    border: 1px solid #f5bd45;

    font-size: 9px !important;
    font-weight: 800;
}

.discord-button:hover {
    color: #111 !important;
    background: linear-gradient(180deg,#ffc84c,#e4a529);
}

.discord-button i {
    font-size: 14px;
}

@media (max-width: 900px) {
    .site-footer {
        width: calc(100% - 32px);
        margin: 0 16px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        row-gap: 20px;
        padding: 24px 18px;
    }

    .footer-brand,
    .footer-column {
        padding: 0 18px;
    }

    .footer-brand {
        padding-left: 0;
    }

    .footer-column:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 600px) {
    .site-footer {
        width: calc(100% - 24px);
        margin: 0 12px 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-column {
        padding: 0 0 18px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-column:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .footer-brand p {
        max-width: none;
    }
}

/* =========================================================
   SPONSORS + FOOTER — NO GAP
========================================================= */

.sponsors-section {
    margin-top: 14px !important;
    margin-bottom: 14px !important;
}

.sponsors-section + .site-footer {
    margin-top: 0 !important;
}

/* Próximo partido: escudos de los equipos seleccionados */
.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.team-logo i {
    color: #666;
    font-size: 22px;
}

/* Próximo partido: sin marco alrededor de los escudos */
.next-match-card .team-logo {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.next-match-card .team-logo img {
    background: transparent;
}

.result-score .draw {
    color: #d8a832;
}
.result-team img {
    object-fit: contain;
}

/* Resultados: evitar que los marcadores de dos cifras se partan */
.results-card .result-score,
.results-card .result-score strong {
    min-width: 78px;
    width: 78px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
}

.results-card .result-score strong {
    display: block;
    line-height: 1.1;
    font-size: 17px;
    letter-spacing: -0.2px;
}

@media (max-width: 700px) {
    .results-card .result-score,
    .results-card .result-score strong {
        min-width: 70px;
        width: 70px;
        font-size: 16px;
    }
}

/* Últimas noticias: imagen administrada desde el panel */
.news-thumb {
    overflow: hidden;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Divisiones: BANG BANG debe usar exactamente la misma tipografía que MOBILE LEGENDS */
.divisions-card .division-name strong,
.divisions-card .division-name span {
    font-family: "Montserrat", Arial, sans-serif !important;
    font-size: 8px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
}

/* =========================================================
   ESCALA TIPOGRÁFICA PÚBLICA
   Ajustada para igualar la legibilidad del diseño de referencia.
========================================================= */

/* Menú superior */
.top-header .nav-link {
    font-size: 13px;
    font-weight: 600;
}

/* Botones principales del hero */
.hero-button {
    font-size: 12px;
}

/* Títulos de los cuatro módulos */
.home-sections .section-heading h2 {
    font-size: 17px;
}

/* Próximo partido */
.next-match-card .game-label {
    font-size: 10px;
}
.next-match-card .match-game strong {
    font-size: 14px;
}
.next-match-card .team {
    font-size: 12px;
}
.next-match-card .match-vs {
    font-size: 10px;
}
.next-match-card .match-detail small {
    font-size: 8px;
}
.next-match-card .match-detail strong {
    font-size: 10px;
}
.next-match-card .match-button {
    font-size: 9px;
}

/* Últimos resultados */
.results-card .result-team {
    font-size: 10px;
}
.results-card .result-score strong {
    font-size: 17px;
}
.results-card .result-score span {
    font-size: 8px;
}
.results-card .results-button {
    font-size: 8px;
}

/* Últimas noticias */
.news-card .news-content strong {
    font-size: 10px;
}
.news-card .news-content span {
    font-size: 8px;
}
.news-card .news-content small {
    font-size: 7.5px;
}
.news-card .news-button {
    font-size: 8px;
}

/* Divisiones */
.divisions-card .division-name strong {
    font-size: 10px !important;
}
.divisions-card .division-name span {
    font-size: 9px !important;
}
.divisions-card .divisions-button {
    font-size: 8px;
}

/* Patrocinadores */
.sponsors-title h2 {
    font-size: 12px;
}

/* Footer */
.footer-brand p {
    font-size: 12px;
}
.footer-column h3 {
    font-size: 12px;
}
.footer-column a {
    font-size: 11px;
}
.footer-community p {
    font-size: 11px;
}
.discord-button {
    font-size: 10px !important;
}

/* Evita que el aumento de tipografía genere cortes innecesarios */
.results-card .result-team strong,
.news-card .news-content strong,
.news-card .news-content span,
.divisions-card .division-name strong,
.divisions-card .division-name span {
    line-height: 1.25;
}

/* En pantallas estrechas, mantener legibilidad sin desbordamientos */
@media (max-width: 900px) {
    .top-header .nav-link {
        font-size: 13px;
    }

    .home-sections .section-heading h2 {
        font-size: 16px;
    }

    .next-match-card .team {
        font-size: 11px;
    }

    .results-card .result-team {
        font-size: 10px;
    }

    .news-card .news-content strong {
        font-size: 10px;
    }

    .news-card .news-content span {
        font-size: 8px;
    }

    .division-name strong {
        font-size: 10px !important;
    }

    .division-name span {
        font-size: 9px !important;
    }
}

/* BANNERS INDIVIDUALES DE DIVISIONES */
.division-item.has-banner{height:72px;padding:0;align-items:stretch;isolation:isolate}
.division-banner-image{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center;display:block}
.division-banner-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.12) 48%,rgba(0,0,0,.18))}
.division-item.has-banner .division-name{z-index:2;justify-content:center;padding:0 12px;max-width:75%}
.division-item.has-banner .division-name strong{font-size:10px!important;font-weight:800;letter-spacing:.5px}
.division-item.has-banner .division-name span{font-size:8px!important;font-weight:700}
@media(max-width:900px){.division-item.has-banner{height:64px}}
@media(max-width:600px){.division-item.has-banner{height:60px}.division-item.has-banner .division-name{max-width:90%}}




/* =========================================================
   DIVISIONES — CONTENIDO INTERNO DEL CUARTO PANEL
   ========================================================= */
.divisions-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    min-height:240px;
}

.divisions-card .section-heading{
    flex:0 0 auto;
}

.divisions-card .divisions-list{
    flex:1 1 auto;
    min-height:0;
    display:flex;
    flex-direction:column;
    border-top:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}

.divisions-card .division-item.has-banner{
    position:relative;
    flex:0 0 auto;
    width:100%;
    height:auto;
    min-height:0;
    padding:0;
    margin:0;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#050505;
}

.divisions-card .division-item.has-banner .division-banner-image{
    position:relative;
    inset:auto;
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    max-height:none;
    object-fit:contain;
    object-position:center;
}

.divisions-card .division-item.has-banner .division-name,
.divisions-card .division-item.has-banner .division-icon{
    display:none;
}

.divisions-card .division-item.has-banner::after{
    display:none;
}

.divisions-card .division-item.no-banner{
    display:none;
}

.divisions-card .divisions-button{
    flex:0 0 auto;
    align-self:center;
    margin-top:10px;
}

/* BANNER DE DIVISIÓN — MOSTRAR IMAGEN COMPLETA SIN RECORTE */
.divisions-card .division-item.has-banner .division-banner-image{
    aspect-ratio:auto;
}
.divisions-card .division-item.has-banner{
    aspect-ratio:auto;
}

/* =========================================================
   DIVISIONES COMPUESTAS — BANNER + ESCUDO + JUEGO
   ========================================================= */
.divisions-card .divisions-list{
    display:flex;
    flex-direction:column;
    gap:0;
    border-top:1px solid rgba(255,255,255,.08);
    overflow:hidden;
}
.divisions-card .division-item.has-banner{
    position:relative;
    width:100%;
    height:auto;
    min-height:0;
    padding:0;
    margin:0;
    overflow:hidden;
    display:block;
    border:0;
    line-height:0;
}
.divisions-card .division-item.has-banner .division-banner-image{
    position:relative;
    inset:auto;
    z-index:0;
    display:block;
    width:100%;
    height:auto;
    max-width:100%;
    object-fit:contain;
    object-position:center;
}
.division-composite-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
}
.division-team-shield{
    position:absolute;
    left:50%;
    top:50%;
    width:23%;
    max-width:82px;
    height:62%;
    transform:translate(-50%,-50%);
    object-fit:contain;
    filter:drop-shadow(0 2px 5px rgba(0,0,0,.8));
}
.division-game-image{
    position:absolute;
    left:calc(50% + 13%);
    top:50%;
    width:27%;
    max-width:125px;
    height:58%;
    transform:translateY(-50%);
    object-fit:contain;
    filter:drop-shadow(0 2px 5px rgba(0,0,0,.8));
}
@media(max-width:900px){
    .division-team-shield{max-width:68px}
    .division-game-image{max-width:105px}
}
@media(max-width:600px){
    .division-team-shield{max-width:56px}
    .division-game-image{max-width:88px}
}

/* =========================================================
   PÁGINA ORGANIZACIÓN
   ========================================================= */
.organization-hero{
    position:relative;
    height:250px;
    overflow:hidden;
    border-bottom:1px solid rgba(210,150,25,.55);
    background:#050505;
}
.organization-hero > img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    opacity:.72;
}
.organization-hero-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    background:linear-gradient(180deg,rgba(0,0,0,.12),rgba(0,0,0,.72));
}
.organization-kicker{
    color:#e5a719;
    font-size:14px;
    font-weight:800;
    letter-spacing:3px;
    margin-bottom:8px;
}
.organization-hero h1{
    margin:0;
    color:#fff;
    font-size:38px;
    font-weight:800;
    letter-spacing:4px;
}
.organization-page{
    width:min(1200px,calc(100% - 48px));
    margin:28px auto 55px;
    display:flex;
    flex-direction:column;
    gap:18px;
}
.org-panel{
    background:linear-gradient(145deg,#111,#090909);
    border:1px solid rgba(193,136,22,.55);
    padding:26px 30px;
    box-shadow:0 12px 35px rgba(0,0,0,.18);
}
.organization-intro-text{
    max-width:980px;
    margin:0 auto;
    text-align:center;
}
.org-panel p{
    color:#c8c8c8;
    font-size:15px;
    line-height:1.75;
    margin:0 0 10px;
}
.organization-two-columns,
.org-values-grid,
.org-structure-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}
.organization-two-columns .org-panel h2,
.org-value h3,
.org-structure h3{
    color:#e7a914;
    font-size:17px;
    letter-spacing:1.4px;
    margin:0 0 12px;
}
.org-value,
.org-structure{
    padding:20px;
    background:rgba(255,255,255,.018);
    border:1px solid rgba(255,255,255,.08);
}
.org-values-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
}
.org-structure-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
}
.org-divisions > p{
    text-align:center;
}
.org-games{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:18px;
}
.org-games span{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:10px 14px;
    color:#fff;
    border:1px solid rgba(193,136,22,.55);
    background:linear-gradient(110deg,rgba(193,136,22,.12),rgba(255,255,255,.025));
    font-weight:700;
    letter-spacing:.5px;
    text-align:center;
}
@media(max-width:900px){
    .organization-page{width:min(100% - 28px,1200px);}
    .org-values-grid,.org-structure-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    .organization-two-columns{grid-template-columns:1fr;}
}
@media(max-width:600px){
    .organization-hero{height:190px;}
    .organization-hero h1{font-size:27px;letter-spacing:2px;}
    .organization-kicker{font-size:11px;letter-spacing:2px;}
    .organization-page{width:calc(100% - 20px);margin-top:18px;}
    .org-panel{padding:20px 17px;}
    .org-values-grid,.org-structure-grid,.org-games{grid-template-columns:1fr;}
    .org-panel p{font-size:13px;}
}

/* =========================================================
   FOOTER COMPACTO — ÚLTIMO BLOQUE DE ESTILOS
   ========================================================= */
.site-footer{
    width:calc(100% - 48px);
    margin:0 24px;
    border-radius:3px;
}
.footer-inner{
    min-height:96px;
    padding:16px 20px;
    grid-template-columns:1.35fr 1.1fr 1.05fr 1.25fr;
}
.footer-brand,
.footer-column{
    padding:0 20px;
}
.footer-brand{
    gap:14px;
    padding-left:0;
}
.footer-brand img{
    width:145px;
    height:auto;
    max-height:52px;
    object-fit:contain;
    object-position:left center;
    flex:0 0 auto;
}
.footer-brand p{
    max-width:220px;
    font-size:9px;
    line-height:1.35;
    margin:0;
}
.footer-column h3{
    margin:0 0 7px;
    font-size:10px;
    letter-spacing:.7px;
}
.footer-column a{
    font-size:9px;
    line-height:1.45;
}
.footer-links-grid{
    gap:14px;
}
.footer-social-grid{
    column-gap:12px;
}
.footer-social-grid a{
    gap:6px;
}
.footer-social-grid i{
    width:12px;
}
.footer-community p{
    font-size:9px;
    line-height:1.35;
    margin:0 0 7px;
}
.discord-button{
    min-height:27px;
    padding:6px 11px;
    font-size:8px;
}
@media(max-width:900px){
    .site-footer{width:calc(100% - 28px);margin:0 14px;}
    .footer-inner{
        grid-template-columns:1.2fr 1fr 1fr;
        min-height:auto;
        row-gap:18px;
    }
    .footer-community{grid-column:1 / -1;}
}
@media(max-width:600px){
    .footer-inner{
        grid-template-columns:1fr 1fr;
        padding:16px;
    }
    .footer-brand{
        grid-column:1 / -1;
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.08);
        padding:0 0 14px;
    }
    .footer-brand img{width:125px;}
    .footer-column{padding:0 10px;}
    .footer-column:nth-child(3){border-right:0;}
    .footer-community{grid-column:1 / -1;padding:14px 0 0;border-top:1px solid rgba(255,255,255,.08);}
}


/* =========================================================
   PÁGINA DE JUGADORES POR DIVISIÓN
========================================================= */
.players-page{
    min-height:520px;
    padding:55px 28px 70px;
    background:
        radial-gradient(circle at 50% 0%, rgba(214,154,32,.06), transparent 45%),
        #070707;
}

.players-page-inner{
    width:min(1180px, 100%);
    margin:0 auto;
    padding:30px;
    border:1px solid rgba(214,154,32,.42);
    background:rgba(10,10,10,.82);
}

.players-page .section-heading h1{
    margin:0;
    color:#f1f1f1;
    font-size:24px;
    letter-spacing:2px;
}

.players-page-intro{
    margin:25px 0 18px;
    color:#bdbdbd;
    font-size:14px;
    line-height:1.6;
    text-align:center;
}

.players-page-intro strong{
    color:var(--gold);
}

.players-empty{
    min-height:260px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#aaa;
}

.players-empty i{
    color:var(--gold);
    font-size:34px;
    margin-bottom:15px;
}

.players-empty h2{
    margin:0 0 8px;
    color:#eee;
    font-size:18px;
    letter-spacing:1.5px;
}

.players-empty p{
    margin:0;
    font-size:13px;
}

@media(max-width:600px){
    .players-page{
        padding:30px 12px 45px;
    }

    .players-page-inner{
        padding:20px 15px;
    }

    .players-page .section-heading h1{
        font-size:18px;
    }
}

/* EQUIPOS es solo el activador del desplegable; no es un enlace */
.nav-dropdown-toggle[role="button"]{
    cursor:default;
    user-select:none;
}

.nav-dropdown-toggle[role="button"]:focus-visible{
    outline:1px solid var(--gold);
    outline-offset:3px;
}


/* =========================================================
   JUGADORES POR DIVISIÓN
========================================================= */
.players-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
    gap:18px;
    margin-top:28px;
}

.public-player-card{
    overflow:hidden;
    background:#0d0d0d;
    border:1px solid rgba(214,154,32,.38);
    text-align:center;
    transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}

.public-player-card:hover{
    transform:translateY(-3px);
    border-color:rgba(214,154,32,.8);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.public-player-photo{
    width:100%;
    aspect-ratio:1/1;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#111;
}

.public-player-photo img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.public-player-photo i{
    font-size:48px;
    color:var(--gold);
}

.public-player-card h2{
    margin:0;
    padding:15px 10px 17px;
    color:#f1f1f1;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
}

@media(max-width:600px){
    .players-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px;
    }

    .public-player-card h2{
        font-size:13px;
        padding:12px 6px 14px;
    }
}


.players-coming-soon{
    min-height:260px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    margin-top:28px;
    padding:35px 20px;
    border:1px solid rgba(214,154,32,.38);
    background:linear-gradient(145deg,#101010,#090909);
}

.players-coming-soon i{
    margin-bottom:16px;
    color:var(--gold);
    font-size:34px;
}

.players-coming-soon h2{
    margin:0;
    color:#f3f3f3;
    font-size:24px;
    font-weight:800;
    letter-spacing:1.5px;
}

.players-coming-soon p{
    margin:9px 0 0;
    color:#777;
    font-size:12px;
}


/* =========================================================
   MODAL — TODAS LAS DIVISIONES / MARCO DE FUEGO
========================================================= */
.divisions-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transition:opacity .25s ease,visibility .25s ease;
}

.divisions-modal.is-open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
}

.divisions-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.88);
    backdrop-filter:blur(6px);
}

.divisions-modal-fire-frame{
    --frame-size:3px;
    position:relative;
    width:min(1180px,94vw);
    max-height:min(88vh,900px);
    padding:var(--frame-size);
    overflow:hidden;
    border-radius:8px;
    background:#050505;
    box-shadow:
        0 0 20px rgba(255,125,0,.22),
        0 0 55px rgba(255,80,0,.16),
        0 25px 80px rgba(0,0,0,.75);
    transform:scale(.94) translateY(12px);
    transition:transform .3s ease;
}

.divisions-modal.is-open .divisions-modal-fire-frame{
    transform:scale(1) translateY(0);
}

/* Rotating fiery border */
.divisions-modal-fire-frame::before{
    content:"";
    position:absolute;
    inset:-45%;
    background:
        conic-gradient(
            from 0deg,
            #321000 0deg,
            #ff6a00 30deg,
            #ffd45a 50deg,
            #8c1d00 80deg,
            #ff8a00 120deg,
            #2b0a00 155deg,
            #ff3d00 190deg,
            #ffc400 220deg,
            #551100 260deg,
            #ff6a00 300deg,
            #250800 340deg,
            #ff7b00 360deg
        );
    animation:divisionsFireSpin 3.2s linear infinite;
}

.divisions-modal-fire-frame::after{
    content:"";
    position:absolute;
    inset:var(--frame-size);
    z-index:0;
    border-radius:5px;
    background:
        radial-gradient(circle at 15% 50%,rgba(255,95,0,.10),transparent 25%),
        radial-gradient(circle at 85% 50%,rgba(255,170,0,.10),transparent 25%),
        #090909;
    box-shadow:inset 0 0 30px rgba(255,110,0,.08);
}

@keyframes divisionsFireSpin{
    to{transform:rotate(360deg);}
}

.divisions-modal-inner{
    position:relative;
    z-index:1;
    max-height:calc(min(88vh,900px) - 6px);
    overflow:auto;
    padding:28px 30px 30px;
    background:
        radial-gradient(circle at 50% -10%,rgba(214,154,32,.08),transparent 35%),
        #090909;
    border-radius:5px;
}

.divisions-modal-inner::-webkit-scrollbar{
    width:6px;
}

.divisions-modal-inner::-webkit-scrollbar-track{
    background:#080808;
}

.divisions-modal-inner::-webkit-scrollbar-thumb{
    background:#6f4309;
    border-radius:10px;
}

.divisions-modal-close{
    position:absolute;
    top:15px;
    right:15px;
    z-index:5;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(214,154,32,.45);
    background:rgba(5,5,5,.88);
    color:#ddd;
    cursor:pointer;
    font-size:16px;
    transition:.18s ease;
}

.divisions-modal-close:hover{
    color:#111;
    background:var(--gold);
    border-color:var(--gold);
}

.divisions-modal-heading{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin:0 45px 25px;
    text-align:center;
}

.modal-heading-line{
    width:90px;
    height:1px;
    background:linear-gradient(90deg,transparent,var(--gold));
}

.modal-heading-line:last-child{
    background:linear-gradient(90deg,var(--gold),transparent);
}

.modal-eyebrow{
    display:block;
    margin-bottom:4px;
    color:var(--gold);
    font-size:10px;
    font-weight:800;
    letter-spacing:2px;
}

.divisions-modal-heading h2{
    margin:0;
    color:#f5f5f5;
    font-size:25px;
    font-weight:800;
    letter-spacing:3px;
}

.all-divisions-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px;
}

.all-division-card{
    position:relative;
    min-width:0;
    overflow:hidden;
    aspect-ratio:3.25/1;
    border:1px solid rgba(214,154,32,.38);
    background:#080808;
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.all-division-banner{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.all-division-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.08),transparent 35%,transparent 65%,rgba(0,0,0,.10));
    pointer-events:none;
}

.all-division-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
}

.all-division-shield{
    position:absolute;
    left:50%;
    top:50%;
    width:16%;
    height:70%;
    object-fit:contain;
    transform:translate(-50%,-50%);
    filter:drop-shadow(0 3px 8px rgba(0,0,0,.8));
}

.all-division-game{
    position:absolute;
    right:4%;
    top:50%;
    width:33%;
    height:70%;
    object-fit:contain;
    transform:translateY(-50%);
    filter:drop-shadow(0 3px 8px rgba(0,0,0,.8));
}

.all-division-name{
    position:absolute;
    left:14px;
    bottom:10px;
    z-index:3;
    padding:5px 9px;
    color:#fff;
    background:rgba(0,0,0,.68);
    border-left:2px solid var(--gold);
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:0;
    transform:translateY(5px);
    transition:.2s ease;
}

.all-division-card:hover .all-division-name{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:850px){
    .divisions-modal{
        padding:15px;
    }

    .divisions-modal-inner{
        padding:24px 18px 22px;
    }

    .all-divisions-grid{
        grid-template-columns:1fr;
    }

    .divisions-modal-heading h2{
        font-size:20px;
    }

    .modal-heading-line{
        width:45px;
    }
}

@media(max-width:520px){
    .divisions-modal{
        padding:8px;
    }

    .divisions-modal-inner{
        padding:20px 10px 15px;
    }

    .divisions-modal-heading{
        gap:8px;
        margin:0 35px 18px;
    }

    .divisions-modal-heading h2{
        font-size:15px;
        letter-spacing:1.5px;
    }

    .modal-eyebrow{
        font-size:8px;
    }

    .all-divisions-grid{
        gap:9px;
    }

    .all-division-card{
        aspect-ratio:2.7/1;
    }

    .all-division-name{
        display:none;
    }
}

/* =========================================================
   PRÓXIMO PARTIDO — MODO PRÓXIMAMENTE
========================================================= */
.match-coming-soon{
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px 18px;
    box-sizing:border-box;
}

.match-coming-soon i{
    color:var(--gold);
    font-size:30px;
    margin-bottom:14px;
}

.match-coming-soon strong{
    color:#f3f3f3;
    font-size:22px;
    font-weight:800;
    letter-spacing:2px;
}

.match-coming-soon span{
    margin-top:8px;
    color:#777;
    font-size:10px;
}

/* Patrocinadores: únicamente imagen enlazada */
.sponsors-list .sponsor{
    display:flex;
    align-items:center;
    justify-content:center;
}
.sponsors-list .sponsor img{
    display:block;
    max-width:150px;
    max-height:48px;
    width:auto;
    height:auto;
    object-fit:contain;
}

/* Tamaño controlado de los patrocinadores */
.sponsors-section .sponsors-list .sponsor{
    height:60px !important;
    min-height:60px !important;
    overflow:hidden;
}

.sponsors-section .sponsors-list .sponsor img{
    display:block !important;
    width:auto !important;
    height:auto !important;
    max-width:150px !important;
    max-height:48px !important;
    min-width:0 !important;
    min-height:0 !important;
    object-fit:contain !important;
}

/* Últimos resultados — modo PRÓXIMAMENTE */
.results-coming-soon{
    min-height:190px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:24px 18px;
    box-sizing:border-box;
}
.results-coming-soon i{
    color:var(--gold);
    font-size:30px;
    margin-bottom:14px;
}
.results-coming-soon strong{
    color:#f3f3f3;
    font-size:22px;
    font-weight:800;
    letter-spacing:2px;
}
.results-coming-soon span{
    margin-top:8px;
    color:#777;
    font-size:10px;
}


/* =========================================================
   FOOTER AL PIE DE LA PÁGINA
   El footer común se mantiene abajo cuando el contenido
   no alcanza la altura completa de la ventana.
========================================================= */
html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-footer {
    margin-top: auto !important;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .site-footer {
        margin-top: auto !important;
    }
}


/* =========================================================
   ÚLTIMAS NOTICIAS — OCUPAR TODO EL ESPACIO DISPONIBLE
========================================================= */
.news-card {
    display: flex;
    flex-direction: column;
}

.news-card .news-list {
    flex: 1 1 auto;
    min-height: 0;
}

.news-card .news-item {
    flex: 1 1 0;
    min-height: 70px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 6px 4px;
}

.news-card .news-thumb {
    width: 100%;
    height: 100%;
    min-height: 58px;
    overflow: hidden;
}

.news-card .news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card .news-content {
    justify-content: center;
}

.news-card .news-button {
    flex: 0 0 auto;
    margin-top: 12px;
}


/* =========================================================
   LÍNEA DIVISORIA DEL HEADER — TODOS LOS MENÚS
========================================================= */
.site-header,
header.site-header,
.main-header {
    border-bottom: 1px solid rgba(214, 154, 32, .65);
}


/* Línea divisoria dorada del menú superior — aplicada al header real */
.top-header {
    border-bottom: 1px solid rgba(214,154,32,.75) !important;
}


/* =========================================================
   PÁGINA ÚNETE A HESTIA — RECLUTAMIENTO
========================================================= */
.join-hero {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(214,154,32,.65);
    background: #070707;
}
.join-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .48;
}
.join-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(0,0,0,.88),rgba(0,0,0,.45),rgba(0,0,0,.88));
}
.join-hero-overlay {
    position: relative;
    z-index: 1;
    width: min(900px,calc(100% - 40px));
    text-align: center;
    padding: 50px 20px;
}
.join-kicker {
    display: block;
    color: #d69a20;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.join-hero h1 {
    margin: 0 0 12px;
    color: #f4f4f4;
    font-size: clamp(30px,4vw,52px);
    line-height: 1.05;
    letter-spacing: 1px;
}
.join-hero p {
    max-width: 720px;
    margin: 0 auto 24px;
    color: #ddd;
    font-size: 15px;
    line-height: 1.65;
}
.join-page {
    width: min(1240px,calc(100% - 40px));
    margin: 32px auto 45px;
}
.join-panel {
    border: 1px solid rgba(214,154,32,.42);
    background: linear-gradient(145deg,#111,#090909);
    padding: 30px;
    margin-bottom: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.join-intro {
    text-align: center;
}
.join-intro p {
    max-width: 950px;
    margin: 0 auto 13px;
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.8;
}
.join-divisions-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}
.join-division-card {
    min-height: 120px;
    padding: 22px;
    border: 1px solid rgba(214,154,32,.28);
    background: #0b0b0b;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: .2s ease;
}
.join-division-card:hover {
    border-color: #d69a20;
    transform: translateY(-2px);
    background: #111;
}
.join-division-card i {
    color: #d69a20;
    font-size: 25px;
    margin-bottom: 10px;
}
.join-division-card span {
    color: #f2f2f2;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
}
.join-division-card small {
    color: #888;
    font-size: 9px;
    font-weight: 700;
    margin-top: 7px;
}
.join-empty {
    grid-column: 1/-1;
    text-align: center;
    color: #888;
    padding: 30px;
}
.join-two-columns {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 22px;
}
.join-two-columns .join-panel {
    margin-bottom: 22px;
}
.join-panel h2 {
    margin: 0 0 20px;
    color: #f1f1f1;
    font-size: 19px;
    letter-spacing: .7px;
}
.join-panel h2 i {
    color: #d69a20;
    margin-right: 9px;
}
.join-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.join-list li {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: #bdbdbd;
    font-size: 13px;
    line-height: 1.55;
}
.join-list li:last-child {
    border-bottom: 0;
}
.join-list i {
    color: #d69a20;
    margin-top: 3px;
}
.join-process .section-heading {
    margin-bottom: 26px;
}
.join-steps {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 15px;
}
.join-step {
    position: relative;
    min-height: 210px;
    padding: 25px 18px 20px;
    border: 1px solid rgba(214,154,32,.2);
    background: #0b0b0b;
    text-align: center;
}
.join-step-number {
    position: absolute;
    top: 10px;
    right: 12px;
    color: rgba(214,154,32,.65);
    font-size: 11px;
    font-weight: 800;
}
.join-step > i {
    color: #d69a20;
    font-size: 28px;
    margin: 18px 0 13px;
}
.join-step h3 {
    color: #f0f0f0;
    font-size: 13px;
    margin: 0 0 9px;
    letter-spacing: .5px;
}
.join-step p {
    color: #8e8e8e;
    font-size: 11px;
    line-height: 1.6;
    margin: 0;
}
.join-discord-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border: 1px solid #d69a20;
    background: linear-gradient(180deg,#efb32a,#d99a17);
    color: #080808;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    transition: .2s ease;
}
.join-discord-button:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}
.join-cta {
    border: 1px solid rgba(214,154,32,.65);
    background: linear-gradient(110deg,#15110a,#0b0b0b 60%);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}
.join-cta-kicker {
    color: #d69a20;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
.join-cta h2 {
    margin: 6px 0 6px;
    color: #f2f2f2;
    font-size: 22px;
}
.join-cta p {
    margin: 0;
    color: #999;
    font-size: 12px;
}
@media (max-width: 900px) {
    .join-divisions-grid,
    .join-two-columns,
    .join-steps {
        grid-template-columns: 1fr 1fr;
    }
    .join-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 620px) {
    .join-page {
        width: calc(100% - 24px);
        margin-top: 18px;
    }
    .join-panel {
        padding: 20px 16px;
    }
    .join-divisions-grid,
    .join-two-columns,
    .join-steps {
        grid-template-columns: 1fr;
    }
    .join-hero {
        min-height: 390px;
    }
    .join-cta {
        padding: 22px 18px;
    }
    .join-cta h2 {
        font-size: 19px;
    }
}


/* =========================================================
   PÁGINA CONTACTO
========================================================= */
.contact-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(214,154,32,.65);
    background: #070707;
}
.contact-hero > img {
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:.42;
}
.contact-hero::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.9),rgba(0,0,0,.48),rgba(0,0,0,.9));
}
.contact-hero-overlay {
    position:relative;
    z-index:1;
    width:min(900px,calc(100% - 40px));
    text-align:center;
    padding:45px 20px;
}
.contact-hero-overlay > span {
    color:#d69a20;
    font-size:12px;
    font-weight:800;
    letter-spacing:2px;
}
.contact-hero-overlay h1 {
    margin:8px 0 10px;
    color:#f4f4f4;
    font-size:clamp(30px,4vw,50px);
    letter-spacing:1px;
}
.contact-hero-overlay p {
    margin:0 auto;
    max-width:650px;
    color:#c5c5c5;
    font-size:14px;
    line-height:1.65;
}
.contact-page {
    width:min(1240px,calc(100% - 40px));
    margin:30px auto 45px;
}
.contact-panel {
    border:1px solid rgba(214,154,32,.4);
    background:linear-gradient(145deg,#111,#090909);
    padding:28px;
}
.contact-intro {
    text-align:center;
    margin-bottom:22px;
}
.contact-intro p {
    max-width:900px;
    margin:0 auto 10px;
    color:#aaa;
    font-size:13px;
    line-height:1.75;
}
.contact-intro strong {
    color:#d69a20;
}
.contact-layout {
    display:grid;
    grid-template-columns:minmax(0,1.55fr) minmax(300px,.75fr);
    gap:22px;
    align-items:start;
}
.contact-form-panel {
    min-height:100%;
}
.contact-panel-title {
    display:flex;
    align-items:center;
    gap:14px;
    padding-bottom:18px;
    margin-bottom:22px;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.contact-panel-title > i {
    color:#d69a20;
    font-size:25px;
}
.contact-panel-title span,
.contact-card-kicker {
    color:#d69a20;
    font-size:10px;
    font-weight:800;
    letter-spacing:1px;
}
.contact-panel-title h2 {
    margin:3px 0 0;
    color:#f0f0f0;
    font-size:18px;
}
.contact-form {
    display:flex;
    flex-direction:column;
    gap:16px;
}
.contact-form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}
.contact-form label {
    display:flex;
    flex-direction:column;
    gap:7px;
}
.contact-form label > span {
    color:#bcbcbc;
    font-size:9px;
    font-weight:800;
    letter-spacing:.8px;
}
.contact-form input,
.contact-form textarea {
    width:100%;
    box-sizing:border-box;
    border:1px solid #292929;
    background:#080808;
    color:#eee;
    padding:12px 13px;
    font:inherit;
    font-size:12px;
    outline:none;
    transition:border-color .2s,box-shadow .2s;
}
.contact-form textarea {
    min-height:160px;
    resize:vertical;
    line-height:1.6;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color:#d69a20;
    box-shadow:0 0 0 2px rgba(214,154,32,.08);
}
.contact-submit {
    align-self:flex-start;
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid #d69a20;
    background:linear-gradient(180deg,#efb32a,#d99a17);
    color:#080808;
    padding:12px 21px;
    font-size:10px;
    font-weight:800;
    cursor:pointer;
}
.contact-side {
    display:flex;
    flex-direction:column;
    gap:22px;
}
.contact-card {
    padding:24px;
}
.contact-card-icon {
    color:#d69a20;
    font-size:29px;
    margin-bottom:13px;
}
.contact-card h2 {
    color:#f0f0f0;
    margin:5px 0 10px;
    font-size:18px;
}
.contact-card p {
    color:#999;
    font-size:12px;
    line-height:1.7;
    margin:0 0 18px;
}
.contact-card-note {
    color:#888;
    font-size:10px;
    line-height:1.5;
}
.contact-socials {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:15px;
}
.contact-socials a {
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px;
    border:1px solid rgba(255,255,255,.07);
    color:#aaa;
    text-decoration:none;
    font-size:11px;
}
.contact-socials a:hover {
    color:#d69a20;
    border-color:rgba(214,154,32,.4);
}
.contact-socials i {
    color:#d69a20;
}
.contact-success,
.contact-errors {
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin-bottom:18px;
    padding:13px 15px;
    border:1px solid rgba(214,154,32,.3);
    background:#0b0b0b;
    color:#bbb;
    font-size:11px;
    line-height:1.5;
}
.contact-success > i {
    color:#d69a20;
    font-size:18px;
}
.contact-success strong,
.contact-success span {
    display:block;
}
.contact-success strong {
    color:#eee;
    margin-bottom:3px;
}
.contact-errors {
    border-color:rgba(190,55,45,.5);
}
.contact-errors div {
    display:flex;
    gap:8px;
    margin:2px 0;
}
.contact-errors i {
    color:#d85b50;
}
@media (max-width:850px) {
    .contact-layout {
        grid-template-columns:1fr;
    }
}
@media (max-width:600px) {
    .contact-page {
        width:calc(100% - 24px);
        margin-top:18px;
    }
    .contact-panel {
        padding:20px 16px;
    }
    .contact-form-grid {
        grid-template-columns:1fr;
    }
    .contact-socials {
        grid-template-columns:1fr 1fr;
    }
}


/* =========================================================
   COMPETICIONES — PRÓXIMAMENTE
========================================================= */
.coming-soon-page {
    flex: 1 0 auto;
    min-height: 560px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 45px 20px;
    box-sizing: border-box;
    background:
        radial-gradient(circle at 50% 40%, rgba(214,154,32,.08), transparent 40%),
        #080808;
}
.coming-soon-panel {
    width: min(760px,100%);
    padding: 58px 35px;
    text-align: center;
    border: 1px solid rgba(214,154,32,.48);
    background: linear-gradient(145deg,#111,#090909);
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
}
.coming-soon-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(214,154,32,.5);
    color: #d69a20;
    font-size: 27px;
    transform: rotate(45deg);
}
.coming-soon-icon i {
    transform: rotate(-45deg);
}
.coming-soon-kicker {
    display: block;
    color: #d69a20;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.coming-soon-panel h1 {
    margin: 0 0 14px;
    color: #f3f3f3;
    font-size: clamp(34px,5vw,58px);
    line-height: 1;
    letter-spacing: 1px;
}
.coming-soon-panel p {
    max-width: 600px;
    margin: 0 auto;
    color: #999;
    font-size: 13px;
    line-height: 1.8;
}
.coming-soon-line {
    width: 70px;
    height: 1px;
    margin: 25px auto 14px;
    background: #d69a20;
}
.coming-soon-small {
    color: #666;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}
@media (max-width:600px) {
    .coming-soon-page {
        min-height: 500px;
        padding: 25px 14px;
    }
    .coming-soon-panel {
        padding: 45px 20px;
    }
}

/* Colaborador destacado: centro y doble tamaño */
.sponsors-list {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr));
    align-items:center;
}
.sponsors-list .sponsor-featured {
    grid-column:2;
    grid-row:1;
    transform:scale(1.4);
    z-index:2;
}
.sponsors-list .sponsor-featured img {
    width:100%;
    height:100%;
    object-fit:contain;
}
@media (max-width:700px) {
    .sponsors-list {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .sponsors-list .sponsor-featured {
        grid-column:1 / -1;
        grid-row:auto;
        transform:scale(1.2);
        margin:15px 0;
    }
}

/* Colaboradores más juntos */
.sponsors-list {
    column-gap: 2px !important;
    row-gap: 2px !important;
}
.sponsors-list .sponsor {
    margin: 0 !important;
}
.sponsors-list .sponsor-featured {
    margin-left: -1px !important;
    margin-right: -1px !important;
}


/* =========================================================
   MODAL VER EQUIPOS — JUGADORES
========================================================= */
.all-teams-grid {
    display:flex;
    flex-direction:column;
    gap:22px;
}
.all-team-division {
    border:1px solid rgba(214,154,32,.24);
    background:#090909;
    padding:18px;
}
.all-team-division-title {
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
    color:#d69a20;
    font-size:13px;
    font-weight:800;
    letter-spacing:.8px;
    text-transform:uppercase;
}
.all-players-grid {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
}
.all-player-card {
    min-width:0;
    border:1px solid rgba(255,255,255,.08);
    background:#101010;
    padding:9px;
    text-align:center;
}
.all-player-photo {
    width:100%;
    aspect-ratio:3/4;
    overflow:hidden;
    background:#070707;
    display:flex;
    align-items:center;
    justify-content:center;
}
.all-player-photo img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.all-player-photo i {
    color:#555;
    font-size:32px;
}
.all-player-card > span {
    display:block;
    padding-top:9px;
    color:#eee;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
}
.all-team-coming-soon {
    min-height:110px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:7px;
    color:#777;
    text-align:center;
}
.all-team-coming-soon i {
    color:#d69a20;
    font-size:22px;
}
.all-team-coming-soon strong {
    color:#d69a20;
    font-size:11px;
    letter-spacing:1px;
}
.all-team-coming-soon span {
    font-size:10px;
}
@media (max-width:800px) {
    .all-players-grid {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}
@media (max-width:500px) {
    .all-players-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

.all-division-banner img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}


/* BANNERS DEL POPUP: ocupan TODO el recuadro */
.all-division-card{
    position:relative !important;
    overflow:hidden !important;
    aspect-ratio:3.25 / 1 !important;
    min-height:0 !important;
}
.all-division-banner{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    margin:0 !important;
    padding:0 !important;
    overflow:hidden !important;
}
.all-division-banner img{
    display:block !important;
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;
    max-height:none !important;
    margin:0 !important;
    padding:0 !important;
    object-fit:cover !important;
    object-position:center !important;
}
