:root {
    --bg: #020710;
    --panel: rgba(4, 14, 34, .78);
    --panel2: rgba(5, 19, 45, .88);
    --cyan: #18d8ff;
    --blue: #009dff;
    --gold: #ffc957;
    --green: #20e77a;
    --text: #f2f8ff;
    --muted: rgba(226, 241, 255, .72);
    --line: rgba(61, 190, 255, .28);
    --goldLine: rgba(255, 201, 87, .38);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 8%, rgba(24, 216, 255, .10), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(0, 157, 255, .08), transparent 28%),
        #020710;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2, 7, 16, .54), rgba(2, 7, 16, .92)),
        var(--portal-bg);
    background-size: cover;
    background-position: center top;
    opacity: .42;
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 201, 87, .16) 1px, transparent 1px);
    background-size: 150px 150px;
    opacity: .25;
    pointer-events: none;
    z-index: -1;
}

a {
    color: inherit;
}

.public-shell {
    min-height: 100vh;
}

.public-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 88px;
    padding: 16px clamp(20px, 5vw, 78px);
    display: grid;
    grid-template-columns: 270px 1fr 220px;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid rgba(61, 190, 255, .20);
    background: rgba(2, 8, 19, .88);
    backdrop-filter: blur(18px);
}

.public-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.public-brand .brand-mark {
    color: var(--cyan);
    font-size: 28px;
    filter: drop-shadow(0 0 14px rgba(24, 216, 255, .8));
}

.public-brand strong {
    display: block;
    font-size: 28px;
    line-height: .9;
    letter-spacing: .06em;
}

.public-brand small {
    display: block;
    margin-top: 5px;
    color: #c6efff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fcbf-public-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 34px);
    flex-wrap: wrap;
}

.fcbf-public-nav a {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(235, 245, 255, .82);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: .2s ease;
}

.fcbf-public-nav a:hover,
.fcbf-public-nav a.active {
    color: #fff;
    text-shadow: 0 0 14px rgba(24, 216, 255, .5);
}

.fcbf-public-nav a.active::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -4px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 0 18px rgba(24, 216, 255, .7);
}

.fcbf-public-nav .fcbf-public-login-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(24, 216, 255, .58);
    background: linear-gradient(135deg, rgba(24, 216, 255, .22), rgba(9, 139, 255, .16));
    color: #fff;
    box-shadow: 0 0 22px rgba(24, 216, 255, .20), inset 0 0 14px rgba(24, 216, 255, .08);
}

.fcbf-public-nav .fcbf-public-login-btn::after {
    display: none;
}

.public-status {
    justify-self: end;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(61, 190, 255, .28);
    background: rgba(4, 14, 34, .74);
    color: #77ffc0;
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.public-status span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
    box-shadow: 0 0 20px var(--green);
}

.public-main {
    width: min(1340px, calc(100% - 38px));
    margin: 0 auto;
    padding: 44px 0 80px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    min-height: 470px;
    padding: 20px clamp(26px, 4vw, 52px) 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 10%, rgba(24, 216, 255, .18), transparent 36%),
        radial-gradient(circle at 85% 30%, rgba(255, 201, 87, .10), transparent 30%),
        linear-gradient(145deg, rgba(5, 19, 45, .91), rgba(2, 8, 20, .76));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .38), inset 0 0 38px rgba(24, 216, 255, .05);
}

.hero-panel::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -150px;
    top: 80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 201, 87, .24);
    background: radial-gradient(circle, rgba(255, 201, 87, .14), transparent 62%);
    filter: blur(.2px);
}

.kicker {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid var(--goldLine);
    color: var(--gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 201, 87, .05);
}

.hero-panel h1,
.page-title,
.section-head h2,
.info-card h2,
.choice-card h2,
.fcbf-title-glow {
    max-width: 1020px;
    margin: 0;
    color: #ffffff;
    font-weight: 1000;
    font-size: clamp(34px, 4.8vw, 72px);
    line-height: .92;
    letter-spacing: -.06em;
    text-transform: uppercase;
    text-shadow:
        0 0 8px rgba(24, 216, 255, .26),
        0 0 18px rgba(24, 216, 255, .30),
        0 0 34px rgba(24, 216, 255, .24),
        0 0 54px rgba(24, 216, 255, .16);
}

.hero-panel p,
.lead {
    max-width: 820px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.55;
    font-weight: 650;
}

.hero-actions,
.action-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary,
.btn-gold {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .02em;
    text-transform: uppercase;
    text-decoration: none;
    transition: .2s ease;
}

.btn-primary {
    border: 1px solid rgba(24, 216, 255, .76);
    background: linear-gradient(180deg, #31dfff, #139cff);
    color: #fff;
    box-shadow: 0 0 30px rgba(24, 216, 255, .34);
}

.btn-gold {
    border: 1px solid rgba(255, 201, 87, .74);
    background: linear-gradient(180deg, #ffe28c, #f0ae2f);
    color: #130d03;
    box-shadow: 0 0 28px rgba(255, 201, 87, .26);
}

.btn-secondary {
    border: 1px solid rgba(61, 190, 255, .34);
    background: rgba(3, 12, 30, .62);
    color: #eaf7ff;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-gold:hover {
    transform: translateY(-2px);
}

.hero-metrics {
    position: relative;
    z-index: 1;
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.metric-card,
.info-card,
.stat-card,
.choice-card,
.timeline-card {
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(7, 23, 53, .86), rgba(3, 11, 28, .70));
    border-radius: 22px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25), inset 0 0 24px rgba(24, 216, 255, .04);
}

.metric-card {
    padding: 16px;
}

.metric-card strong {
    display: block;
    color: #fff;
    font-size: 22px;
}

.metric-card small {
    color: var(--muted);
    font-weight: 850;
    font-size: 14px;
    letter-spacing: .01em;
}

.section {
    margin-top: 34px;
}

.section-head {
    margin-bottom: 10px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.section-head h2,
.info-card h2,
.choice-card h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: .96;
    letter-spacing: -.04em;
}

.section-head p {
    max-width: 680px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 650;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card,
.choice-card,
.timeline-card,
.stat-card {
    padding: clamp(22px, 2.5vw, 34px);
}

.info-icon,
.choice-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    border-radius: 18px;
    color: #061321;
    font-size: 28px;
    font-weight: 950;
    background: linear-gradient(180deg, var(--cyan), var(--blue));
    box-shadow: 0 0 24px rgba(24, 216, 255, .26);
}

.gold-icon {
    background: linear-gradient(180deg, #ffe28c, #f0ae2f);
}

.info-card h3,
.choice-card h3,
.timeline-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
}

.info-card p,
.choice-card p,
.timeline-card p {
    color: var(--muted);
    line-height: 1.65;
    font-weight: 620;
}

.card-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.card-list li {
    position: relative;
    padding-left: 20px;
    color: rgba(239, 247, 255, .88);
    line-height: 1.45;
    font-weight: 700;
}

.card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--cyan);
    box-shadow: 0 0 14px var(--cyan);
}

.gold-list li::before {
    background: var(--gold);
    box-shadow: 0 0 14px var(--gold);
}

.league-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.league-mini {
    min-height: 245px;
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(61, 190, 255, .26);
    background: linear-gradient(145deg, rgba(7, 23, 53, .86), rgba(3, 11, 28, .72));
}

.league-mini:nth-child(1) {
    border-color: rgba(255, 201, 87, .46);
}

.league-mini:nth-child(5) {
    border-color: rgba(255, 82, 98, .38);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.badge {
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid rgba(61, 190, 255, .28);
    color: #dff8ff;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    background: rgba(24, 216, 255, .06);
}

.badge.gold {
    color: var(--gold);
    border-color: rgba(255, 201, 87, .34);
    background: rgba(255, 201, 87, .06);
}

.league-mini h3 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1;
}

.league-mini p {
    color: var(--muted);
    line-height: 1.55;
}

.scoreboard {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.big-score {
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 201, 87, .42);
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 201, 87, .18), transparent 32%),
        linear-gradient(145deg, rgba(7, 23, 53, .86), rgba(3, 11, 28, .74));
}

.big-score h3 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    letter-spacing: -.05em;
}

.score-line {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.score-line div {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 12px;
}

.bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    overflow: hidden;
}

.bar i {
    display: block;
    height: 100%;
    width: var(--w, 70%);
    border-radius: inherit;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    box-shadow: 0 0 16px rgba(24, 216, 255, .42);
}

.stat-stack {
    display: grid;
    gap: 14px;
}

.stat-card strong {
    display: block;
    color: #fff;
    font-size: 24px;
}

.stat-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-weight: 700;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.choice-card {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.choice-card::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(24, 216, 255, .20), transparent 70%);
}

.choice-card.team::after {
    background: radial-gradient(circle, rgba(255, 201, 87, .20), transparent 70%);
}

.choice-card .action-row {
    margin-top: auto;
}

.page-panel {
    padding: clamp(28px, 4vw, 54px);
    border-radius: 28px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(5, 19, 45, .90), rgba(2, 8, 20, .74));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
}

.timeline {
    display: grid;
    gap: 16px;
}

.timeline-card {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 18px;
    align-items: start;
}

.step-number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(24, 216, 255, .38);
    color: var(--cyan);
    font-size: 22px;
    font-weight: 950;
    background: rgba(24, 216, 255, .08);
}

.price-note {
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 201, 87, .38);
    background: rgba(255, 201, 87, .07);
    color: #ffe8ad;
    line-height: 1.55;
    font-weight: 750;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .76fr;
    gap: 18px;
}

.footer-cta {
    margin-top: 34px;
    padding: 34px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid var(--goldLine);
    background: radial-gradient(circle at center top, rgba(255, 201, 87, .13), transparent 45%), rgba(5, 19, 45, .72);
}

.footer-cta h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 54px);
    letter-spacing: -.04em;
}

@media (max-width: 1120px) {
    .public-topbar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .public-status {
        justify-self: center;
    }

    .hero-metrics,
    .grid-3,
    .league-strip,
    .scoreboard,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .choice-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .public-main {
        width: min(100% - 22px, 1340px);
        padding-top: 22px;
    }

    .hero-panel,
    .page-panel {
        border-radius: 22px;
        padding: 24px;
    }

    .hero-panel h1,
    .page-title {
        font-size: clamp(38px, 13vw, 58px);
    }

    .score-line div {
        grid-template-columns: 1fr;
    }

    .timeline-card {
        grid-template-columns: 1fr;
    }

    .btn-primary,
    .btn-secondary,
    .btn-gold {
        width: 100%;
    }
}

/* FCBF LOL - sessão/login persistente */
.fcbf-public-user-pill,
.fcbf-public-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .03em;
    text-decoration: none;
    white-space: nowrap;
}

.fcbf-public-user-pill {
    color: #dff8ff;
    border: 1px solid rgba(35, 218, 255, .32);
    background: rgba(7, 25, 44, .74);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 0 22px rgba(35,218,255,.08);
}

.fcbf-public-logout {
    color: #ffd9d9;
    border: 1px solid rgba(255, 85, 110, .34);
    background: rgba(62, 13, 27, .38);
}

.fcbf-welcome-box {
    width: min(720px, 100%);
    margin: 24px 0 18px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(35, 218, 255, .34);
    background:
        radial-gradient(circle at 0% 0%, rgba(35,218,255,.18), transparent 38%),
        linear-gradient(135deg, rgba(6, 22, 42, .92), rgba(4, 10, 22, .82));
    box-shadow: 0 0 36px rgba(35,218,255,.10), inset 0 0 0 1px rgba(255,255,255,.04);
}

.fcbf-welcome-box span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #07131f;
    background: linear-gradient(135deg, #21d6ff, #73f7ff);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fcbf-welcome-box strong {
    display: block;
    color: #fff;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.05;
    text-transform: uppercase;
}

.fcbf-welcome-box p {
    margin: 8px 0 0;
    color: rgba(226, 243, 255, .78);
    font-weight: 700;
}

@media (max-width: 900px) {
    .fcbf-public-user-pill,
    .fcbf-public-logout {
        width: 100%;
    }
}

/* FCBF LOL - saudação do usuário sem função de botão */
.fcbf-public-user-pill {
    cursor: default;
    pointer-events: none;
    user-select: none;
}

.fcbf-public-nav span.fcbf-public-user-pill::after {
    display: none !important;
}

/* Correção final do menu logado FCBF LOL */
.fcbf-public-nav {
    position: relative;
    z-index: 60;
}

.fcbf-public-user-pill,
.fcbf-public-logout {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
}

.fcbf-public-user-pill {
    color: #eafaff;
    border: 1px solid rgba(24, 216, 255, .38);
    background: rgba(3, 12, 30, .62);
    box-shadow: 0 0 18px rgba(24, 216, 255, .12);
    cursor: default;
    pointer-events: none;
    letter-spacing: .02em;
}

.fcbf-public-logout {
    color: #ffdfe6;
    border: 1px solid rgba(255, 80, 120, .45);
    background: rgba(58, 12, 28, .42);
    box-shadow: 0 0 18px rgba(255, 80, 120, .10);
}

.fcbf-public-logout:hover {
    color: #fff;
    border-color: rgba(255, 110, 145, .78);
    box-shadow: 0 0 24px rgba(255, 80, 120, .18);
}

.fcbf-public-user-pill::after,
.fcbf-public-logout::after {
    display: none !important;
}

/* Segurança contra título vazando para fora do card */
.hero-panel {
    isolation: isolate;
}

.hero-panel h1 {
    max-width: 880px;
    overflow-wrap: normal;
    word-break: normal;
}



/* FCBF HERO PLAYER SHOWCASE CSS */
.hero-panel--with-player {
    padding-right: min(34vw, 440px);
}

.hero-panel--with-player::after {
    display: none;
}

.hero-player-showcase {
    position: absolute;
    right: 28px;
    top: 74px;
    width: min(31vw, 360px);
    height: 460px;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 201, 87, .22);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35),
        0 0 35px rgba(24, 216, 255, .08);
    z-index: 0;
    background: rgba(5, 18, 38, .55);
}

.hero-player-showcase__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    transform: scale(1.05);
    filter: saturate(1.05) brightness(.72);
}

.hero-player-showcase__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 52%, rgba(255, 201, 87, .12), transparent 42%),
        linear-gradient(180deg, rgba(2, 7, 16, .12), rgba(2, 7, 16, .55)),
        linear-gradient(90deg, rgba(2, 7, 16, .08), rgba(2, 7, 16, .28));
}

.hero-player-showcase__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 26px;
    z-index: 2;
}

.hero-player-showcase__portrait {
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background-size: cover;
    background-position: center top;
    border: 2px solid rgba(24, 216, 255, .42);
    box-shadow:
        0 0 0 10px rgba(2, 7, 16, .22),
        0 0 38px rgba(24, 216, 255, .18);
}

.hero-player-showcase__meta {
    text-align: center;
}

.hero-player-showcase__meta span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 201, 87, .12);
    border: 1px solid rgba(255, 201, 87, .22);
    color: #ffd979;
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero-player-showcase__meta strong {
    display: block;
    color: #fff;
    font-size: 34px;
    line-height: .95;
    text-transform: uppercase;
    text-shadow: 0 0 24px rgba(24, 216, 255, .28);
}

.hero-player-showcase__meta small {
    display: block;
    margin-top: 8px;
    color: rgba(232, 245, 255, .84);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.hero-panel--with-player h1,
.hero-panel--with-player p,
.hero-panel--with-player .hero-actions,
.hero-panel--with-player .fcbf-welcome-box,
.hero-panel--with-player .kicker {
    position: relative;
    z-index: 2;
    max-width: min(100%, 820px);
}

.hero-panel--with-player .hero-metrics {
    position: relative;
    z-index: 3;
}

@media (max-width: 1180px) {
    .hero-panel--with-player {
        padding-right: clamp(34px, 5vw, 70px);
    }

    .hero-player-showcase {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 420px;
        height: 320px;
        margin: 22px 0 0;
        border-radius: 34px;
    }

    .hero-player-showcase__content {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        text-align: left;
    }

    .hero-player-showcase__meta {
        text-align: left;
    }

    .hero-panel--with-player h1,
    .hero-panel--with-player p,
    .hero-panel--with-player .hero-actions,
    .hero-panel--with-player .fcbf-welcome-box,
    .hero-panel--with-player .kicker {
        max-width: 100%;
    }
}

@media (max-width: 720px) {
    .hero-player-showcase {
        height: auto;
        min-height: 290px;
    }

    .hero-player-showcase__content {
        flex-direction: column;
        text-align: center;
    }

    .hero-player-showcase__meta {
        text-align: center;
    }

    .hero-player-showcase__portrait {
        width: 130px;
        height: 130px;
    }

    .hero-player-showcase__meta strong {
        font-size: 22px;
    }
}






/* FCBF HERO THEME ORB */
.hero-player-showcase {
    display: none !important;
}

.hero-panel--with-theme {
    padding-right: min(32vw, 420px);
}

.hero-panel--with-theme::after {
    display: none;
}

.hero-theme-orb {
    position: absolute;
    right: -82px;
    top: 80px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(255, 201, 87, .24);
    background: rgba(4, 14, 34, .35);
    box-shadow:
        0 16px 46px rgba(0, 0, 0, .28),
        inset 0 0 24px rgba(24, 216, 255, .04);
    z-index: 1;
}

.hero-theme-orb::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 201, 87, .05), transparent 42%),
        linear-gradient(180deg, rgba(2, 7, 16, .02), rgba(2, 7, 16, .18));
    z-index: 2;
    pointer-events: none;
}

.hero-theme-orb__image {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.08);
    z-index: 1;
}

.hero-panel--with-theme .kicker,
.hero-panel--with-theme h1,
.hero-panel--with-theme p,
.hero-panel--with-theme .hero-actions,
.hero-panel--with-theme .fcbf-welcome-box,
.hero-panel--with-theme .hero-metrics {
    position: relative;
    z-index: 3;
}

.hero-panel--with-theme h1,
.hero-panel--with-theme p,
.hero-panel--with-theme .hero-actions,
.hero-panel--with-theme .fcbf-welcome-box {
    max-width: min(100%, 820px);
}

@media (max-width: 1200px) {
    .hero-panel--with-theme {
        padding-right: 34px;
    }

    .hero-theme-orb {
        width: 320px;
        height: 320px;
        right: -70px;
        top: 54px;
        opacity: .92;
    }

    .hero-panel--with-theme h1,
    .hero-panel--with-theme p,
    .hero-panel--with-theme .hero-actions,
    .hero-panel--with-theme .fcbf-welcome-box {
        max-width: calc(100% - 130px);
    }
}

@media (max-width: 820px) {
    .hero-theme-orb {
        width: 220px;
        height: 220px;
        right: -50px;
        top: 34px;
        opacity: .78;
    }

    .hero-panel--with-theme h1,
    .hero-panel--with-theme p,
    .hero-panel--with-theme .hero-actions,
    .hero-panel--with-theme .fcbf-welcome-box {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .hero-theme-orb {
        display: none;
    }

    .hero-panel--with-theme {
        padding-right: clamp(34px, 5vw, 70px);
    }
}


/* FCBF LOL - boas-vindas dentro da home */
.fcbf-welcome-box {
    width: min(760px, 100%);
    margin: 26px 0 18px;
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(24, 216, 255, .38);
    background:
        radial-gradient(circle at 0% 0%, rgba(24, 216, 255, .18), transparent 38%),
        linear-gradient(135deg, rgba(6, 22, 42, .92), rgba(4, 10, 22, .84));
    box-shadow:
        0 0 34px rgba(24, 216, 255, .12),
        inset 0 0 0 1px rgba(255,255,255,.04);
}

.fcbf-welcome-box span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #06101b;
    background: linear-gradient(135deg, #21d6ff, #73f7ff);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fcbf-welcome-box strong {
    display: block;
    color: #ffffff;
    font-size: clamp(24px, 3.4vw, 40px);
    line-height: .96;
    text-transform: uppercase;
    letter-spacing: -.04em;
    text-shadow:
        0 0 10px rgba(24, 216, 255, .26),
        0 0 26px rgba(24, 216, 255, .28);
}

.fcbf-welcome-box p {
    margin: 10px 0 0;
    color: rgba(226, 241, 255, .76);
    font-weight: 750;
    line-height: 1.55;
}


/* FCBF LOL - boas-vindas central da home */
.fcbf-welcome-box {
    width: min(760px, 100%);
    margin: 16px 0 16px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(24, 216, 255, .34);
    background:
        radial-gradient(circle at 0% 0%, rgba(24, 216, 255, .18), transparent 38%),
        linear-gradient(135deg, rgba(6, 22, 42, .92), rgba(4, 10, 22, .84));
    box-shadow:
        0 0 28px rgba(24, 216, 255, .10),
        inset 0 0 0 1px rgba(255,255,255,.04);
}

.fcbf-welcome-box span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #06101b;
    background: linear-gradient(135deg, #21d6ff, #73f7ff);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fcbf-welcome-box strong {
    display: block;
    color: #ffffff;
    font-size: clamp(20px, 2.6vw, 32px);
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: -.03em;
    text-shadow:
        0 0 10px rgba(24, 216, 255, .24),
        0 0 22px rgba(24, 216, 255, .24);
}

.fcbf-welcome-box p {
    margin: 8px 0 0 !important;
    color: rgba(226, 241, 255, .76);
    font-weight: 750;
    line-height: 1.45;
    font-size: 14px;
}


/* FCBF LOL - card de boas-vindas logado */
.fcbf-welcome-box {
    position: relative;
    z-index: 4;
    width: min(820px, 100%);
    margin: 18px 0 18px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(24, 216, 255, .38);
    background:
        radial-gradient(circle at 0% 0%, rgba(24, 216, 255, .20), transparent 38%),
        linear-gradient(135deg, rgba(6, 22, 42, .95), rgba(4, 10, 22, .86));
    box-shadow:
        0 0 28px rgba(24, 216, 255, .12),
        inset 0 0 0 1px rgba(255,255,255,.04);
}

.fcbf-welcome-box span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #06101b;
    background: linear-gradient(135deg, #21d6ff, #73f7ff);
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.fcbf-welcome-box strong {
    display: block;
    color: #fff;
    font-size: clamp(20px, 2.4vw, 32px);
    line-height: .98;
    text-transform: uppercase;
    letter-spacing: -.03em;
    text-shadow:
        0 0 10px rgba(24, 216, 255, .24),
        0 0 24px rgba(24, 216, 255, .26);
}

.fcbf-welcome-box p {
    margin: 8px 0 0 !important;
    color: rgba(226, 241, 255, .76);
    font-weight: 750;
    line-height: 1.45;
    font-size: 14px;
}

.fcbf-welcome-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.fcbf-welcome-actions a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 950;
}

.fcbf-welcome-actions a:first-child {
    color: #04111e;
    background: linear-gradient(180deg, #31dfff, #139cff);
}

.fcbf-welcome-actions a:last-child {
    color: #eaf7ff;
    border: 1px solid rgba(61, 190, 255, .34);
    background: rgba(3, 12, 30, .62);
}

/* FCBF LOL - Portal das Ligas */
.league-portal-hero,
.league-detail-hero {
    position: relative;
    overflow: hidden;
    padding: 34px clamp(26px, 4vw, 54px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 12%, rgba(24, 216, 255, .18), transparent 34%),
        linear-gradient(145deg, rgba(5, 19, 45, .91), rgba(2, 8, 20, .76));
    box-shadow: 0 28px 90px rgba(0, 0, 0, .38), inset 0 0 38px rgba(24, 216, 255, .05);
}

.league-portal-hero .page-title,
.league-detail-hero .page-title {
    max-width: 980px;
}

.league-columns {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(6, minmax(180px, 1fr));
    gap: 16px;
    align-items: stretch;
}

.league-column {
    min-height: 520px;
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 26px;
    border: 1px solid rgba(61, 190, 255, .24);
    background:
        radial-gradient(circle at 50% 0%, rgba(24, 216, 255, .12), transparent 36%),
        linear-gradient(180deg, rgba(7, 23, 53, .92), rgba(3, 11, 28, .76));
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .22s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28), inset 0 0 22px rgba(24, 216, 255, .04);
}

.league-column::before {
    content: "";
    position: absolute;
    inset: -40% -40% auto auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: rgba(24, 216, 255, .14);
    filter: blur(8px);
}

.league-column:hover {
    transform: translateY(-6px);
    border-color: rgba(24, 216, 255, .66);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34), 0 0 30px rgba(24, 216, 255, .12);
}

.league-column__tag {
    width: max-content;
    max-width: 100%;
    padding: 8px 11px;
    border-radius: 999px;
    border: 1px solid rgba(255, 201, 87, .30);
    color: var(--gold);
    background: rgba(255, 201, 87, .06);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.league-column strong {
    display: block;
    margin-top: 22px;
    color: #fff;
    font-size: clamp(34px, 3vw, 54px);
    line-height: .88;
    text-transform: uppercase;
    letter-spacing: -.06em;
    text-shadow:
        0 0 8px rgba(24, 216, 255, .25),
        0 0 28px rgba(24, 216, 255, .24);
}

.league-column p {
    color: rgba(226, 241, 255, .72);
    font-weight: 750;
    line-height: 1.55;
}

.league-column__meta {
    display: grid;
    gap: 8px;
    margin-top: auto;
}

.league-column__meta span {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(61, 190, 255, .22);
    background: rgba(2, 8, 20, .44);
    color: rgba(236, 248, 255, .82);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.league-column small {
    margin-top: 18px;
    color: #8ef4ff;
    font-weight: 1000;
    text-transform: uppercase;
}

.league-column--gold { border-color: rgba(255, 201, 87, .40); }
.league-column--green { border-color: rgba(32, 231, 122, .35); }
.league-column--red { border-color: rgba(255, 80, 120, .35); }
.league-column--purple { border-color: rgba(173, 116, 255, .35); }

.league-back {
    display: inline-flex;
    margin-bottom: 18px;
    color: #8ef4ff;
    text-decoration: none;
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 12px;
}

.league-dashboard {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
}

.league-panel {
    min-height: 230px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, rgba(7, 23, 53, .86), rgba(3, 11, 28, .70));
    box-shadow: 0 18px 55px rgba(0, 0, 0, .25), inset 0 0 24px rgba(24, 216, 255, .04);
}

.league-panel--table {
    grid-row: span 2;
}

.league-panel__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.league-panel__head span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.league-panel__head h2 {
    margin: 6px 0 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 46px);
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: -.05em;
    text-shadow: 0 0 22px rgba(24, 216, 255, .22);
}

.league-panel__head small,
.league-panel p {
    color: rgba(226, 241, 255, .70);
    font-weight: 750;
    line-height: 1.55;
}

.league-table {
    display: grid;
    gap: 8px;
}

.league-table__row {
    display: grid;
    grid-template-columns: 50px 1fr 60px 50px 50px 50px;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(61, 190, 255, .18);
    background: rgba(2, 8, 20, .38);
    color: rgba(240, 248, 255, .82);
    font-weight: 850;
}

.league-table__row--head {
    color: #8ef4ff;
    background: rgba(24, 216, 255, .08);
    text-transform: uppercase;
    font-size: 12px;
}

@media (max-width: 1280px) {
    .league-columns {
        grid-template-columns: repeat(3, 1fr);
    }

    .league-column {
        min-height: 380px;
    }
}

@media (max-width: 900px) {
    .league-columns,
    .league-dashboard {
        grid-template-columns: 1fr;
    }

    .league-column {
        min-height: 300px;
    }

    .league-panel--table {
        grid-row: auto;
    }

    .league-table__row {
        grid-template-columns: 38px 1fr 44px 36px 36px 36px;
        font-size: 12px;
    }
}


/* FCBF LOL - background dinâmico do campeão */
.hero-panel {
    position: relative;
    isolation: isolate;
}

.hero-theme-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: .18;
    filter: saturate(1.05) brightness(.75);
    z-index: 0;
    pointer-events: none;
}

.hero-theme-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 20, .88) 0%, rgba(2, 8, 20, .76) 38%, rgba(2, 8, 20, .36) 64%, rgba(2, 8, 20, .72) 100%),
        radial-gradient(circle at 14% 18%, rgba(24, 216, 255, .12), transparent 32%);
}

.hero-panel--with-theme .kicker,
.hero-panel--with-theme h1,
.hero-panel--with-theme p,
.hero-panel--with-theme .fcbf-welcome-box,
.hero-panel--with-theme .hero-metrics,
.hero-panel--with-theme .hero-actions {
    position: relative;
    z-index: 3;
}
