.home-competition-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255,208,92,.12), transparent 28%),
        radial-gradient(circle at bottom left, rgba(34,197,94,.10), transparent 30%),
        linear-gradient(145deg, rgba(8,20,38,.98), rgba(7,16,31,.98));
    box-shadow: 0 18px 36px rgba(0,0,0,.22);
}

.home-competition-spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 30%);
}

.home-competition-spotlight > * {
    position: relative;
    z-index: 2;
}

.home-competition-spotlight__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,208,92,.10);
    border: 1px solid rgba(255,208,92,.22);
    color: #fff1ba;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-competition-spotlight__title {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.05;
    color: #fff;
    font-weight: 1000;
}

.home-competition-spotlight__grid {
    display: grid;
    gap: 10px;
}

.home-competition-spotlight__line {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    display: grid;
    gap: 4px;
}

.home-competition-spotlight__line:last-child {
    border-bottom: 0;
}

.home-competition-spotlight__line span {
    color: #9cb6de;
    font-size: 13px;
}

.home-competition-spotlight__line strong {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
}

.home-competition-spotlight__promo {
    margin-top: 8px;
    padding: 14px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(46,232,137,.12), transparent 26%),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(46,232,137,.18);
}

.home-competition-spotlight__promo span {
    display: block;
    color: #96ffd1;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 6px;
}

.home-competition-spotlight__promo strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
}

.home-competition-spotlight__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 14px;
}

.home-competition-spotlight__actions .btn {
    text-align: center;
}

@media (min-width: 901px) {
    .home-competition-spotlight__actions {
        grid-template-columns: 1fr 1fr;
    }
}

/* HOME COUNTDOWNS */
.home-countdowns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
}

.home-countdown-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 16px;
    background:
        radial-gradient(circle at top right, rgba(255, 208, 92, .12), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.11);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.home-countdown-card--lock {
    background:
        radial-gradient(circle at top right, rgba(46,232,137,.16), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
    border-color: rgba(46,232,137,.25);
}

.home-countdown-head {
    display: grid;
    gap: 5px;
    margin-bottom: 12px;
}

.home-countdown-head span {
    color: #9fffd1;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.home-countdown-head strong {
    color: #fff;
    font-size: 21px;
    line-height: 1.12;
}

.home-countdown-target {
    color: #bfd3f4;
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
}

.home-countdown-target strong {
    color: #fff;
}

.home-countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 8px;
}

.home-countdown-box {
    min-height: 70px;
    border-radius: 16px;
    padding: 12px 6px;
    text-align: center;
    background: rgba(4,12,24,.58);
    border: 1px solid rgba(255,255,255,.09);
}

.home-countdown-box strong {
    display: block;
    color: #ffffff;
    font-size: 23px;
    line-height: 1;
    font-weight: 1000;
}

.home-countdown-box span {
    display: block;
    margin-top: 7px;
    color: #9fb6da;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.home-countdown-status {
    margin-top: 11px;
    color: #d7e6ff;
    font-size: 13px;
    line-height: 1.4;
}

.home-lock-warning {
    margin-top: 12px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(46,232,137,.08);
    border: 1px solid rgba(46,232,137,.18);
    color: #dfffee;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
}

@media (max-width: 520px) {
    .home-countdown-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

/* Link direto para pagamento pendente na home */
.home-payment-shortcut {
    display: grid;
    place-items: center;
    gap: 3px;
    min-height: 56px;
    margin-top: 10px;
    border-radius: 16px;
    text-decoration: none;
    color: #06111f;
    background: linear-gradient(135deg, #ffdf82, #35e792);
    font-weight: 1000;
    box-shadow: 0 0 24px rgba(46,232,137,.14);
    border: 0;
}

.home-payment-shortcut span {
    color: rgba(6, 17, 31, .78);
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
}

/* ===== Override do botão de pagamento pendente na home ===== */
.home-payment-shortcut {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: .01em;
    color: #ffd9de;
    background:
        linear-gradient(180deg, rgba(58, 24, 31, .96), rgba(39, 15, 20, .98));
    border: 1px solid rgba(255, 103, 122, .22);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04),
        0 10px 24px rgba(120, 18, 34, .16);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.home-payment-shortcut:hover,
.home-payment-shortcut:focus-visible {
    color: #ffe7ea;
    border-color: rgba(255, 124, 141, .38);
    background:
        linear-gradient(180deg, rgba(72, 28, 36, .98), rgba(48, 18, 24, 1));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.05),
        0 12px 26px rgba(120, 18, 34, .24);
    transform: translateY(-1px);
}

.home-payment-shortcut span {
    display: none !important;
}

/* CHAMARIZ MOBILE - INDIQUE E GANHE */
.home-mobile-referral-callout {
    display: none;
    margin: 18px 0 6px;
}

.home-mobile-referral-callout__link {
    display: block;
    text-decoration: none;
}

.home-mobile-referral-callout__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(76,166,255,.18);
    box-shadow: 0 20px 44px rgba(0,0,0,.25);
}

@media (max-width: 768px) {
    .home-mobile-referral-callout {
        display: block;
    }
}

/* INFOGRÁFICO DE INDICAÇÃO NO LUGAR DO GRID - MOBILE */
.home-mobile-referral-hero {
    display: none;
}

.home-mobile-referral-hero__link {
    display: block;
    text-decoration: none;
}

.home-mobile-referral-hero__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(76,166,255,.18);
    box-shadow: 0 20px 44px rgba(0,0,0,.25);
}

@media (max-width: 768px) {
    .home-mobile-referral-hero {
        display: block;
        margin-top: 18px;
    }

    .hero-side.home-competition-spotlight {
        display: none !important;
    }

    .home-mobile-referral-callout {
        display: none !important;
    }
}

/* REMOÇÃO VISUAL SEGURA DA HOME */
.home-hide-status-now,
.home-hide-games-results {
    display: none !important;
}

/* ==================================================
   FCBF - BOTÕES PREMIUM NO TOPO DA HOME
   Criar Conta / Entrar logo abaixo do menu
================================================== */

.fcbf-top-auth-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 12px 12px 14px;
    margin: 0;
    background:
        radial-gradient(circle at 18% 0%, rgba(39, 255, 136, .18), transparent 34%),
        radial-gradient(circle at 86% 20%, rgba(34, 164, 255, .18), transparent 38%),
        linear-gradient(180deg, rgba(2, 13, 31, .96), rgba(1, 8, 20, .98));
    border-bottom: 1px solid rgba(61, 187, 255, .22);
    box-shadow:
        inset 0 -1px 0 rgba(33, 255, 170, .12),
        0 12px 28px rgba(0, 0, 0, .34);
}

.fcbf-top-auth-btn {
    position: relative;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 18px;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: .7px;
    font-weight: 1000;
    font-size: 13px;
    line-height: 1;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
}

.fcbf-top-auth-btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 17px;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0));
    z-index: -1;
    pointer-events: none;
}

.fcbf-top-auth-btn::after {
    content: "";
    position: absolute;
    top: -70%;
    left: -40%;
    width: 42%;
    height: 240%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
    transform: rotate(18deg);
    opacity: .7;
    animation: fcbfTopBtnShine 3.2s ease-in-out infinite;
    pointer-events: none;
}

.fcbf-top-auth-btn--primary {
    color: #03130a !important;
    background:
        linear-gradient(135deg, #52ff8a 0%, #22d363 42%, #fff25a 100%);
    border: 1px solid rgba(202, 255, 96, .92);
    box-shadow:
        0 0 0 1px rgba(54, 255, 143, .25),
        0 12px 26px rgba(31, 255, 115, .26),
        inset 0 1px 0 rgba(255, 255, 255, .55);
    text-shadow: 0 1px 0 rgba(255,255,255,.26);
}

.fcbf-top-auth-btn--secondary {
    color: #ffffff !important;
    background:
        linear-gradient(135deg, #071e3b 0%, #0d3970 48%, #092342 100%);
    border: 1px solid rgba(91, 190, 255, .88);
    box-shadow:
        0 0 0 1px rgba(49, 162, 255, .2),
        0 12px 26px rgba(37, 154, 255, .18),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    text-shadow: 0 2px 8px rgba(0,0,0,.6);
}

.fcbf-top-auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,.35));
}

@keyframes fcbfTopBtnShine {
    0%, 45% {
        transform: translateX(-160%) rotate(18deg);
    }

    72%, 100% {
        transform: translateX(420%) rotate(18deg);
    }
}

@media (max-width: 768px) {
    .fcbf-top-auth-actions {
        position: sticky;
        top: 0;
        z-index: 40;
    }

    .hero-actions {
        display: none !important;
    }
}

@media (max-width: 380px) {
    .fcbf-top-auth-actions {
        gap: 8px;
        padding: 10px 8px 12px;
    }

    .fcbf-top-auth-btn {
        min-height: 48px;
        border-radius: 15px;
        font-size: 12px;
        letter-spacing: .45px;
    }

    .fcbf-top-auth-btn::before {
        border-radius: 14px;
    }
}

