body.standings-page {
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .18), transparent 34rem),
        radial-gradient(circle at top right, rgba(20, 184, 166, .11), transparent 30rem),
        linear-gradient(180deg, #07111f 0%, #0b1526 42%, #08111f 100%);
}

.standings-page .wrap {
    max-width: 1500px;
    padding: 30px 28px 46px;
}

.standings-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: center;
    min-height: 150px;
    padding: 24px 30px;
    border: 1px solid rgba(59, 130, 246, .55);
    border-radius: 18px;
    background:
        linear-gradient(100deg, rgba(7, 19, 38, .94), rgba(9, 26, 52, .88)),
        radial-gradient(circle at 92% 26%, rgba(59, 130, 246, .24), transparent 14rem);
    box-shadow:
        0 0 0 1px rgba(125, 211, 252, .08) inset,
        0 18px 55px rgba(0, 0, 0, .36),
        0 0 34px rgba(37, 99, 235, .18);
}

.standings-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(147, 197, 253, .08), transparent),
        repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px);
    opacity: .65;
}

.standings-hero > * {
    position: relative;
    z-index: 1;
}

.standings-hero__badge {
    width: 142px;
    height: 142px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(30, 64, 175, .58), rgba(15, 23, 42, .95) 68%),
        conic-gradient(from 0deg, rgba(96, 165, 250, .1), rgba(59, 130, 246, .65), rgba(34, 197, 94, .25), rgba(96, 165, 250, .1));
    border: 1px solid rgba(125, 211, 252, .45);
    box-shadow: 0 0 36px rgba(59, 130, 246, .38), inset 0 0 24px rgba(14, 165, 233, .26);
}

.standings-hero__badge span {
    font-size: 68px;
    filter: drop-shadow(0 0 16px rgba(250, 204, 21, .45));
}

.standings-kicker {
    display: inline-flex;
    margin-bottom: 8px;
    color: #93c5fd;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.standings-hero h1 {
    margin: 0 0 8px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    text-shadow: 0 3px 18px rgba(0,0,0,.45);
}

.standings-hero p {
    max-width: 760px;
    margin: 0;
    color: #dbeafe;
    font-size: 17px;
    line-height: 1.45;
}

.standings-hero__stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.standings-hero__stats span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .7);
    border: 1px solid rgba(125, 211, 252, .18);
    color: #cbd5e1;
    font-size: 13px;
}

.standings-hero__stats strong {
    margin-right: 5px;
    color: #86efac;
}

.standings-hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: end;
}

.standings-filter {
    display: grid;
    gap: 8px;
}

.standings-filter label {
    color: #fff;
    font-weight: 800;
    font-size: 13px;
}

.standings-filter select {
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, .38);
    background: rgba(3, 10, 24, .84);
    color: #fff;
    font-weight: 800;
    outline: none;
}

.standings-games-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, .78);
    background: linear-gradient(180deg, #2563eb, #1d4ed8 46%, #123b84);
    box-shadow: 0 0 24px rgba(59, 130, 246, .56), inset 0 1px 0 rgba(255,255,255,.28);
    color: #fff;
    font-weight: 900;
    white-space: nowrap;
}

.standings-context {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 18px;
}

.standings-context span {
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, .18);
    background: rgba(15, 23, 42, .62);
    color: #cbd5e1;
    font-size: 13px;
}

.standings-board {
    padding-bottom: 26px;
}

.standings-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.standings-card {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, .52);
    background:
        linear-gradient(180deg, rgba(10, 25, 48, .95), rgba(7, 17, 33, .98)),
        radial-gradient(circle at 50% 0%, rgba(56, 189, 248, .14), transparent 14rem);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .08),
        0 12px 28px rgba(0, 0, 0, .28),
        0 0 18px rgba(37, 99, 235, .14);
}

.standings-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 16px 8px;
    border-bottom: 1px solid rgba(125, 211, 252, .12);
    background: linear-gradient(180deg, rgba(15, 39, 73, .78), rgba(15, 23, 42, .18));
}

.standings-card__header h2 {
    margin: 0;
    color: #fff;
    font-size: 21px;
    line-height: 1.1;
    text-align: center;
    flex: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

.standings-card__header span {
    display: none;
    color: #93c5fd;
    font-size: 12px;
    font-weight: 800;
}

.standings-table-wrap {
    overflow: hidden;
}

.standings-table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.standings-table th,
.standings-table td {
    padding: 7px 4px;
    border: 0;
    color: #e5f2ff;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 1px 7px rgba(0,0,0,.6);
}

.standings-table thead th {
    color: #b7e3ff;
    font-size: 12px;
    font-weight: 900;
    border-bottom: 1px solid rgba(125, 211, 252, .16);
}

.standings-col-rank {
    width: 32px;
}

.standings-col-team {
    width: 168px;
    text-align: left !important;
}

.standings-table tbody tr {
    position: relative;
    background: rgba(15, 23, 42, .46);
}

.standings-table tbody tr + tr td {
    border-top: 1px solid rgba(255,255,255,.04);
}

.standings-table tbody tr.standings-row--qualified {
    background: linear-gradient(90deg, rgba(34, 197, 94, .25), rgba(16, 185, 129, .14) 54%, rgba(14, 165, 233, .06));
    box-shadow: inset 4px 0 0 rgba(34, 197, 94, .85), inset 0 0 18px rgba(34, 197, 94, .08);
}

.standings-table tbody tr.standings-row--chance {
    background: linear-gradient(90deg, rgba(245, 158, 11, .26), rgba(245, 158, 11, .11) 58%, rgba(15, 23, 42, .38));
    box-shadow: inset 4px 0 0 rgba(245, 158, 11, .88), inset 0 0 18px rgba(245, 158, 11, .08);
}

.standings-table tbody tr.standings-row--neutral {
    background: linear-gradient(90deg, rgba(100, 116, 139, .13), rgba(15, 23, 42, .48));
    box-shadow: inset 4px 0 0 rgba(100, 116, 139, .52);
}

.standings-rank {
    color: #d9f99d !important;
    font-weight: 900;
}

.standings-team-cell {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left !important;
    white-space: nowrap;
}

.standings-team-cell img,
.standings-flag-fallback {
    width: 24px;
    height: 17px;
    flex: 0 0 24px;
    border-radius: 3px;
    object-fit: cover;
    box-shadow: 0 0 0 1px rgba(255,255,255,.28), 0 4px 12px rgba(0,0,0,.3);
}

.standings-flag-fallback {
    background: linear-gradient(135deg, #1d4ed8, #22c55e);
}

.standings-team-cell strong {
    display: block;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
    text-overflow: ellipsis;
}

.standings-legend {
    display: flex;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    margin-top: 22px;
    padding: 16px;
    color: #dbeafe;
    font-size: 14px;
}

.standings-legend span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.legend-dot {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 50%;
    box-shadow: 0 0 18px currentColor;
}

.legend-dot--qualified {
    background: #22c55e;
    color: rgba(34, 197, 94, .55);
}

.legend-dot--chance {
    background: #f59e0b;
    color: rgba(245, 158, 11, .55);
}

.legend-dot--neutral {
    background: #64748b;
    color: rgba(100, 116, 139, .45);
}

.standings-empty {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, .35);
    background: rgba(15, 23, 42, .78);
    color: #dbeafe;
    text-align: center;
}

.standings-empty strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 22px;
}

@media (max-width: 1260px) {
    .standings-hero {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .standings-hero__actions {
        grid-column: 1 / -1;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .standings-hero__badge {
        width: 112px;
        height: 112px;
    }

    .standings-hero__badge span {
        font-size: 52px;
    }

    .standings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .standings-page .wrap {
        padding: 16px 12px 82px;
    }

    .standings-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px 14px;
        border-radius: 18px;
    }

    .standings-hero__badge {
        width: 88px;
        height: 88px;
        margin: 0 auto;
    }

    .standings-hero__badge span {
        font-size: 42px;
    }

    .standings-kicker,
    .standings-hero h1,
    .standings-hero p {
        text-align: center;
    }

    .standings-hero p {
        font-size: 15px;
    }

    .standings-hero__stats {
        justify-content: center;
    }

    .standings-hero__actions {
        grid-template-columns: 1fr;
    }

    .standings-games-btn {
        width: 100%;
    }

    .standings-context {
        justify-content: center;
    }

    .standings-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .standings-card {
        border-radius: 18px;
    }

    .standings-card__header {
        padding: 13px 14px;
    }

    .standings-card__header h2 {
        font-size: 24px;
        text-align: left;
    }

    .standings-card__header span {
        display: inline-flex;
    }

    .standings-table {
        min-width: 640px;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
        font-size: 14px;
    }

    .standings-col-team {
        width: 220px;
    }

    .standings-team-cell strong {
        font-size: 14px;
    }

    .standings-legend {
        display: grid;
        justify-content: stretch;
        gap: 12px;
        padding: 14px 4px;
        font-size: 13px;
    }
}


/* FCBF - logo da copa no hero da tabela */
.standings-hero__badge img {
    width: 96px;
    max-width: 96px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 215, 90, .36));
}

/* ==================================================
   FCBF - Ajuste do círculo do logo da Copa no hero
   ================================================== */

.standings-hero__badge {
    width: 150px !important;
    height: 150px !important;
    min-width: 150px !important;
    min-height: 150px !important;
    padding: 16px !important;
    overflow: hidden !important;
}

.standings-hero__badge img {
    width: 78px !important;
    max-width: 78px !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* tablet / notebook menor */
@media (max-width: 1260px) {
    .standings-hero__badge {
        width: 122px !important;
        height: 122px !important;
        min-width: 122px !important;
        min-height: 122px !important;
        padding: 12px !important;
    }

    .standings-hero__badge img {
        width: 68px !important;
        max-width: 68px !important;
    }
}

/* mobile */
@media (max-width: 760px) {
    .standings-hero__badge {
        width: 104px !important;
        height: 104px !important;
        min-width: 104px !important;
        min-height: 104px !important;
        padding: 10px !important;
        margin: 0 auto !important;
    }

    .standings-hero__badge img {
        width: 58px !important;
        max-width: 58px !important;
    }
}


/* ==================================================
   FCBF - Logo da Copa maior e quase rente ao círculo
   ================================================== */

.standings-hero__badge {
    overflow: hidden !important;
    display: grid !important;
    place-items: center !important;
}

.standings-hero__badge img {
    width: 102px !important;
    max-width: 102px !important;
    height: auto !important;
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
}

/* tablet */
@media (max-width: 1260px) {
    .standings-hero__badge img {
        width: 88px !important;
        max-width: 88px !important;
    }
}

/* mobile */
@media (max-width: 760px) {
    .standings-hero__badge img {
        width: 74px !important;
        max-width: 74px !important;
    }
}


/* ==================================================
   FCBF - Correção mobile da tabela completa
   Mantém: J V E D GP GC SG Pts
   ================================================== */

.standings-table-wrap{
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:thin;
}

.standings-table{
    width:100% !important;
    min-width:720px !important;
    table-layout:auto !important;
}

.standings-table th,
.standings-table td{
    white-space:nowrap !important;
}

.standings-col-rank{
    width:34px !important;
    min-width:34px !important;
}

.standings-col-team{
    width:210px !important;
    min-width:210px !important;
}

.standings-table th:not(.standings-col-team):not(.standings-col-rank),
.standings-table td:not(.standings-col-team):not(.standings-col-rank){
    width:52px !important;
    min-width:52px !important;
    text-align:center !important;
}

@media (max-width:768px){
    .standings-table-wrap{
        margin-left:-2px;
        margin-right:-2px;
        padding-bottom:4px;
    }

    .standings-table{
        min-width:690px !important;
    }

    .standings-col-team{
        width:190px !important;
        min-width:190px !important;
    }

    .standings-table th:not(.standings-col-team):not(.standings-col-rank),
    .standings-table td:not(.standings-col-team):not(.standings-col-rank){
        width:48px !important;
        min-width:48px !important;
    }
}

@media (max-width:420px){
    .standings-table{
        min-width:660px !important;
    }

    .standings-col-team{
        width:175px !important;
        min-width:175px !important;
    }

    .standings-table th:not(.standings-col-team):not(.standings-col-rank),
    .standings-table td:not(.standings-col-team):not(.standings-col-rank){
        width:46px !important;
        min-width:46px !important;
    }
}


/* ==================================================
   FCBF - Pts em primeiro após Seleção
   ================================================== */

.standings-table th:nth-child(3),
.standings-table td:nth-child(3){
    color:#f7c948 !important;
    font-weight:950 !important;
}

.standings-table td:nth-child(3) strong{
    color:#f7c948 !important;
    font-weight:950 !important;
}


/* ==================================================
   FCBF - Select Premium da Tabela
================================================== */

body.standings-page .fcbf-select-premium {
    position: relative;
    width: 100%;
    z-index: 50;
}

body.standings-page .fcbf-select-premium__native {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    appearance: none !important;
}

body.standings-page .fcbf-select-premium__button {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 15px;
    border: 1px solid rgba(98, 172, 255, .28);
    background:
        linear-gradient(135deg, rgba(7, 15, 33, .96), rgba(9, 25, 48, .92));
    color: #ffffff;
    font-weight: 1000;
    letter-spacing: .01em;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        0 14px 34px rgba(0,0,0,.32);
    cursor: pointer;
    font-family: inherit;
}

body.standings-page .fcbf-select-premium__button:focus {
    outline: none;
    border-color: rgba(255, 220, 70, .72);
    box-shadow:
        0 0 0 3px rgba(255, 220, 70, .16),
        0 14px 34px rgba(0,0,0,.32);
}

body.standings-page .fcbf-select-premium__label {
    display: flex;
    align-items: center;
    min-width: 0;
}

body.standings-page .fcbf-select-premium__label::before {
    content: "🏆";
    margin-right: 8px;
    filter: drop-shadow(0 2px 8px rgba(255, 220, 70, .30));
}

body.standings-page .fcbf-select-premium__arrow {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #ffe766;
    font-size: 1.1rem;
    line-height: 1;
    transition: transform .18s ease;
}

body.standings-page .fcbf-select-premium.is-open .fcbf-select-premium__arrow {
    transform: rotate(180deg);
}

body.standings-page .fcbf-select-premium__list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: grid;
    gap: 5px;
    max-height: 330px;
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(98, 172, 255, .28);
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 220, 70, .10), transparent 32%),
        linear-gradient(180deg, rgba(5, 12, 28, .98), rgba(7, 20, 42, .98));
    box-shadow:
        0 26px 70px rgba(0,0,0,.58),
        inset 0 0 0 1px rgba(255,255,255,.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(-6px) scale(.985);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 9999;
}

body.standings-page .fcbf-select-premium.is-open .fcbf-select-premium__list {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

body.standings-page .fcbf-select-premium__option {
    width: 100%;
    min-height: 42px;
    padding: 11px 13px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.88);
    text-align: left;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    transition: transform .14s ease, background .14s ease, border-color .14s ease;
}

body.standings-page .fcbf-select-premium__option:hover,
body.standings-page .fcbf-select-premium__option:focus {
    outline: none;
    transform: translateX(2px);
    border-color: rgba(255, 220, 70, .34);
    background: rgba(255, 220, 70, .10);
    color: #ffffff;
}

body.standings-page .fcbf-select-premium__option.is-selected {
    border-color: rgba(255, 220, 70, .58);
    background:
        linear-gradient(135deg, rgba(255, 220, 70, .22), rgba(27, 208, 83, .14));
    color: #ffe766;
}

body.standings-page .fcbf-select-premium__list::-webkit-scrollbar {
    width: 7px;
}

body.standings-page .fcbf-select-premium__list::-webkit-scrollbar-track {
    background: rgba(255,255,255,.05);
    border-radius: 999px;
}

body.standings-page .fcbf-select-premium__list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255,220,70,.8), rgba(55,210,95,.7));
    border-radius: 999px;
}

@media (max-width: 768px) {
    body.standings-page .fcbf-select-premium__list {
        max-height: 390px;
    }

    body.standings-page .fcbf-select-premium__button {
        min-height: 50px;
        border-radius: 16px;
    }
}

/* ==================================================
   FCBF - FIX DEFINITIVO SELECT PREMIUM TABELA
================================================== */

body.standings-page .fcbf-select-premium {
    position: relative;
    width: 100%;
    z-index: 20;
}

body.standings-page .fcbf-select-premium__native {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    pointer-events: none !important;
    appearance: none !important;
}

body.standings-page .fcbf-select-premium__button {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 210, 40, .50);
    background:
        linear-gradient(135deg, rgba(6, 18, 40, .98), rgba(5, 23, 55, .98));
    color: #ffffff;
    font-weight: 1000;
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        0 16px 38px rgba(0,0,0,.28);
    cursor: pointer;
    font-family: inherit;
}

body.standings-page .fcbf-select-premium__button:focus {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 210, 40, .18),
        0 16px 38px rgba(0,0,0,.28);
}

body.standings-page .fcbf-select-premium__label {
    display: flex;
    align-items: center;
    min-width: 0;
    color: #ffffff;
    font-weight: 1000;
}

body.standings-page .fcbf-select-premium__label::before {
    content: "🏆";
    margin-right: 10px;
}

body.standings-page .fcbf-select-premium__arrow {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 210, 40, .12);
    color: #ffd84a;
    font-size: 1.05rem;
    line-height: 1;
    transition: transform .18s ease;
}

body.standings-page .fcbf-select-premium.is-open .fcbf-select-premium__arrow {
    transform: rotate(180deg);
}

body.standings-page .fcbf-select-premium-panel {
    position: fixed;
    z-index: 99999;
    overflow-y: auto;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(255, 210, 40, .38);
    background:
        radial-gradient(circle at top, rgba(255, 210, 40, .12), transparent 30%),
        linear-gradient(180deg, rgba(6, 18, 40, .99), rgba(4, 15, 34, .99));
    box-shadow:
        0 28px 80px rgba(0,0,0,.55),
        inset 0 0 0 1px rgba(255,255,255,.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-6px) scale(.985);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
}

body.standings-page .fcbf-select-premium-panel.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

body.standings-page .fcbf-select-premium-panel.is-open-up.is-visible {
    transform: translateY(0) scale(1);
}

body.standings-page .fcbf-select-premium-panel__option {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    margin: 0 0 6px 0;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: rgba(255,255,255,.92);
    text-align: left;
    font-family: inherit;
    font-size: .98rem;
    font-weight: 900;
    cursor: pointer;
    transition: all .14s ease;
}

body.standings-page .fcbf-select-premium-panel__option:last-child {
    margin-bottom: 0;
}

body.standings-page .fcbf-select-premium-panel__option:hover,
body.standings-page .fcbf-select-premium-panel__option:focus {
    outline: none;
    border-color: rgba(255, 210, 40, .36);
    background: rgba(255, 210, 40, .10);
    color: #ffffff;
}

body.standings-page .fcbf-select-premium-panel__option.is-selected {
    border-color: rgba(255, 210, 40, .60);
    background:
        linear-gradient(135deg, rgba(255, 210, 40, .18), rgba(0, 156, 95, .18));
    color: #ffe66e;
}

body.standings-page .fcbf-select-premium-panel::-webkit-scrollbar {
    width: 7px;
}

body.standings-page .fcbf-select-premium-panel::-webkit-scrollbar-track {
    background: rgba(255,255,255,.05);
    border-radius: 999px;
}

body.standings-page .fcbf-select-premium-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(255, 210, 40, .85), rgba(18, 203, 94, .70));
    border-radius: 999px;
}

/* mata vestígios do dropdown antigo interno */
body.standings-page .fcbf-select-premium__list {
    display: none !important;
}

@media (max-width: 768px) {
    body.standings-page .fcbf-select-premium__button {
        min-height: 54px;
        border-radius: 18px;
    }

    body.standings-page .fcbf-select-premium-panel {
        max-width: calc(100vw - 24px);
    }
}
