:root {
    --app-bg: #07100d;
    --app-bg-soft: #101a16;
    --app-green: #11b86f;
    --app-green-dark: #087246;
    --app-gold: #d9a63a;
    --app-gold-soft: #ffe09a;
    --app-text: #f5f7f2;
    --app-muted: #9ca89f;
    --app-border: rgba(255, 255, 255, 0.12);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 20% 10%, rgba(17, 184, 111, 0.18), transparent 28rem),
        radial-gradient(circle at 85% 15%, rgba(217, 166, 58, 0.14), transparent 24rem),
        var(--app-bg);
    color: var(--app-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.app-navbar {
    background: rgba(7, 16, 13, 0.86);
    border-bottom: 1px solid var(--app-border);
    backdrop-filter: blur(16px);
}

.app-navbar .navbar-toggler {
    border-color: rgba(217, 166, 58, 0.45);
    box-shadow: none;
}

.app-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(217, 166, 58, 0.18);
}

.app-nav-group {
    align-items: center;
    gap: 0.35rem;
}

.app-navbar .nav-link {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.5rem;
    color: #dce5df;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
}

.app-navbar .nav-link:hover,
.app-navbar .nav-link:focus {
    border-color: rgba(217, 166, 58, 0.5);
    color: var(--app-gold-soft);
    background: rgba(217, 166, 58, 0.08);
}

.app-navbar .nav-link-gold {
    background: var(--app-gold);
    border-color: var(--app-gold);
    color: #10150f;
}

.app-navbar .nav-link-gold:hover,
.app-navbar .nav-link-gold:focus {
    background: var(--app-gold-soft);
    border-color: var(--app-gold-soft);
    color: #07100d;
}

.app-nav-admin {
    margin-left: 0.75rem;
    padding-left: 0.75rem;
    border-left: 1px solid rgba(217, 166, 58, 0.28);
}

.app-nav-admin .nav-link {
    border-color: rgba(17, 184, 111, 0.28);
    color: #bfffe1;
}

.brand-mark {
    display: inline-grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    border: 1px solid rgba(217, 166, 58, 0.55);
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(17, 184, 111, 0.22), rgba(217, 166, 58, 0.18));
    color: var(--app-gold-soft);
    font-weight: 800;
}

.btn-gold {
    --bs-btn-color: #10150f;
    --bs-btn-bg: var(--app-gold);
    --bs-btn-border-color: var(--app-gold);
    --bs-btn-hover-color: #07100d;
    --bs-btn-hover-bg: var(--app-gold-soft);
    --bs-btn-hover-border-color: var(--app-gold-soft);
    font-weight: 700;
}

.btn-success {
    --bs-btn-bg: var(--app-green);
    --bs-btn-border-color: var(--app-green);
    --bs-btn-hover-bg: #19d884;
    --bs-btn-hover-border-color: #19d884;
    font-weight: 700;
}

.hero-section {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--app-border);
}

.hero-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent);
}

.min-vh-hero {
    min-height: calc(100vh - 4.5rem);
    position: relative;
    z-index: 1;
    padding-block: 4rem;
}

.hero-kicker,
.section-kicker,
.panel-label {
    color: var(--app-gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 42rem;
    color: #c7d0ca;
}

.match-panel,
.feature-card {
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.96), rgba(8, 18, 14, 0.96));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

.match-panel {
    padding: 1.25rem;
}

.live-badge {
    border-radius: 999px;
    background: rgba(17, 184, 111, 0.16);
    color: #7dffbe;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.35rem 0.75rem;
}

.score-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.score-card strong {
    color: var(--app-gold-soft);
    font-size: 1.3rem;
}

.team-name,
.team-meta {
    display: block;
}

.team-name {
    font-weight: 800;
}

.team-meta,
.feature-card p {
    color: var(--app-muted);
}

.jackpot-strip {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(217, 166, 58, 0.9), rgba(17, 184, 111, 0.86));
    color: #07100d;
    font-weight: 800;
}

.system-section {
    background: rgba(3, 8, 6, 0.35);
}

.feature-card {
    padding: 1.25rem;
}

.user-card {
    padding: 1.25rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.auth-section {
    min-height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
}

.auth-card {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.32);
}

.auth-copy {
    max-width: 38rem;
    color: #c7d0ca;
}

.form-label {
    color: #dce5df;
    font-weight: 700;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.14);
    color: var(--app-text);
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--app-green);
    box-shadow: 0 0 0 0.25rem rgba(17, 184, 111, 0.18);
    color: var(--app-text);
}

.form-control::placeholder {
    color: var(--app-muted);
}

.form-select option {
    background-color: var(--app-bg-soft);
    color: var(--app-text);
}

.admin-section {
    min-height: calc(100vh - 8rem);
}

.admin-table-shell {
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.admin-table {
    --bs-table-bg: transparent;
    --bs-table-color: var(--app-text);
    --bs-table-border-color: rgba(255, 255, 255, 0.08);
    --bs-table-hover-bg: rgba(255, 255, 255, 0.04);
    min-width: 980px;
}

.admin-table thead th {
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    font-size: 0.75rem;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-table tbody td {
    color: #dce5df;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3.25rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
}

.status-approved {
    background: rgba(17, 184, 111, 0.16);
    color: #7dffbe;
}

.status-pending {
    background: rgba(217, 166, 58, 0.16);
    color: var(--app-gold-soft);
}

.status-admin {
    background: rgba(255, 255, 255, 0.12);
    color: var(--app-text);
}

.status-muted {
    background: rgba(255, 255, 255, 0.06);
    color: var(--app-muted);
}

.team-flag-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 20rem;
}

.team-flag-cell-compact {
    min-width: 12rem;
}

.team-flag {
    width: 2.5rem;
    height: 1.75rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.08);
}

.team-flag-cell a {
    color: #c7d0ca;
    max-width: 24rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-flag-cell a:hover {
    color: var(--app-gold-soft);
}

.deposit-actions {
    display: grid;
    gap: 0.75rem;
    min-width: 30rem;
}

.deposit-action-form {
    display: grid;
    grid-template-columns: minmax(8rem, 1fr) minmax(10rem, 1.5fr) auto;
    gap: 0.5rem;
}

.deposit-action-form:last-child {
    grid-template-columns: minmax(10rem, 1fr) auto;
}

.withdraw-action-form,
.withdraw-action-form:last-child {
    grid-template-columns: minmax(10rem, 1fr) auto;
}

.admin-mobile-list {
    display: grid;
    gap: 1rem;
}

.admin-mobile-card {
    padding: 1rem;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.22);
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-card-row {
    display: grid;
    grid-template-columns: minmax(6.5rem, 0.85fr) minmax(0, 1.15fr);
    gap: 0.75rem;
    align-items: start;
    padding-block: 0.45rem;
}

.admin-card-row span:first-child {
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-card-row strong,
.admin-card-row a {
    min-width: 0;
    overflow-wrap: anywhere;
}

.admin-card-actions,
.admin-mobile-action-form {
    display: grid;
    gap: 0.75rem;
}

.admin-card-actions {
    margin-top: 1rem;
}

.admin-mobile-action-form .btn,
.admin-card-actions .btn {
    width: 100%;
}

.bet-info-card {
    height: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
}

.bet-info-card span,
.bet-info-card strong {
    display: block;
}

.bet-info-card span {
    color: var(--app-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.bet-info-card strong {
    margin-top: 0.35rem;
    color: var(--app-text);
}

.game-result-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 18rem;
}

.game-result-form .form-control {
    width: 4.5rem;
}

.dashboard-card {
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
}

.dashboard-card span,
.dashboard-card strong {
    display: block;
}

.dashboard-card span {
    color: var(--app-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-card strong {
    margin-top: 0.6rem;
    color: var(--app-gold-soft);
    font-size: 1.7rem;
}

.pix-qrcode {
    width: min(100%, 14rem);
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: #ffffff;
}

.pix-payload-field {
    min-height: 8rem;
    font-family: Consolas, "Liberation Mono", monospace;
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.score-input {
    min-height: 3.75rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.feature-number {
    color: var(--app-green);
    font-weight: 900;
}

.feature-card h3 {
    margin-top: 1rem;
    font-size: 1.15rem;
}

footer {
    background: #050a08;
    border-top: 1px solid var(--app-border);
}

@media (max-width: 575.98px) {
    .display-4 {
        font-size: 2.35rem;
    }

    .min-vh-hero {
        min-height: auto;
        padding-block: 3rem;
    }
}

.bet-score-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.bet-score-card .team-side {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.bet-score-card .team-side.home {
    justify-content: flex-end;
}

.bet-score-card .team-side.away {
    justify-content: flex-start;
}

.bet-score-card .team-name-small {
    font-weight: 700;
    color: var(--app-text);
}

.bet-score {
    background: linear-gradient(
        135deg,
        rgba(17, 184, 111, 0.15),
        rgba(217, 166, 58, 0.15)
    );
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 10px;
    padding: 6px 16px;
    min-width: 90px;

    text-align: center;

    color: var(--app-gold-soft);
    font-size: 1.25rem;
    font-weight: 800;

    box-shadow: inset 0 0 10px rgba(217, 166, 58, 0.1);
}

.status-danger {
    background: rgba(220, 53, 69, 0.16);
    color: #ff9aa2;
}

.status-prize {
    background: linear-gradient(135deg, rgba(17, 184, 111, 0.18), rgba(217, 166, 58, 0.16));
    color: var(--app-gold-soft);
}

.transparency-hero,
.transparency-summary-card,
.bet-transparency-card {
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
}

.transparency-hero {
    padding: 1.25rem;
}

.transparency-matchline,
.bet-pick-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.transparency-team,
.bet-pick-team {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    font-weight: 800;
}

.transparency-team span,
.bet-pick-team span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.transparency-team-away,
.bet-pick-team-away {
    justify-content: flex-end;
    text-align: right;
}

.transparency-score {
    min-width: 5.75rem;
    padding: 0.55rem 1rem;
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    text-align: center;
    font-size: 1.45rem;
}

.transparency-summary-card {
    height: 100%;
    padding: 1rem;
}

.transparency-summary-card span {
    display: block;
    color: var(--app-muted);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.transparency-summary-card strong {
    display: block;
    margin-top: 0.4rem;
    color: var(--app-text);
    overflow-wrap: anywhere;
}

.bet-transparency-card {
    padding: 1rem;
}

.bet-transparency-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.bet-transparency-header strong {
    min-width: 0;
    overflow-wrap: anywhere;
}

.bet-pick-line {
    padding: 0.85rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
}

.bet-pick-line > strong {
    color: var(--app-gold-soft);
    font-size: 1.25rem;
    white-space: nowrap;
}

.game-transparency-header {
    padding: 1rem;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
}

.game-score-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.game-score-team {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    font-weight: 800;
}

.game-score-team span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.game-score-team-away {
    justify-content: flex-end;
}

.game-score-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 5rem;
    color: var(--app-gold-soft);
    font-size: 1.55rem;
    line-height: 1;
    white-space: nowrap;
}

.game-score-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.game-score-meta span,
.game-score-meta strong {
    display: block;
}

.game-score-meta span {
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.game-score-meta strong {
    margin-top: 0.2rem;
}

.compact-pick-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.compact-pick-card {
    padding: 0.85rem;
    margin-bottom: 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
}

.compact-pick-line strong {
    color: var(--app-gold-soft);
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
}

.user-status-block {
    width: 100%;
    min-height: 2.75rem;
}

.user-header-actions {
    width: auto;
}

@media (max-width: 767.98px) {
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
    }

    .user-action-btn,
    .user-header-actions,
    .user-header-actions .btn,
    .auth-card .btn,
    .user-card .btn,
    .match-panel .btn,
    .feature-card .btn {
        width: 100%;
    }

    .user-card,
    .feature-card,
    .auth-card,
    .match-panel,
    .admin-table-shell {
        padding: 1rem;
    }

    .team-flag-cell,
    .team-flag-cell-compact {
        min-width: 0;
    }

    .bet-score-card {
        align-items: stretch;
        gap: 0.75rem;
    }

    .bet-score-card .team-side {
        min-width: 0;
        flex: 1 1 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .bet-score-card .team-side.home,
    .bet-score-card .team-side.away {
        justify-content: center;
    }

    .bet-score-card .team-name-small {
        max-width: 100%;
        overflow-wrap: anywhere;
        font-size: 0.88rem;
        line-height: 1.2;
    }

    .bet-score {
        min-width: 3.25rem;
        padding-inline: 0.65rem;
        align-self: center;
        font-size: 1rem;
    }

    .team-flag {
        width: 2.25rem;
        height: 1.55rem;
    }

    .jackpot-strip {
        flex-direction: column;
        gap: 0.25rem;
    }

    .pix-qrcode {
        width: min(100%, 18rem);
        margin-bottom: 0.5rem;
    }

    .pix-payload-field {
        min-height: 10rem;
        font-size: 0.78rem;
    }

    .admin-header-actions,
    .admin-form-actions,
    .admin-form-actions .btn {
        width: 100%;
    }

    .admin-mobile-card .team-flag-cell {
        align-items: flex-start;
    }

    .admin-mobile-card .status-pill {
        white-space: normal;
        text-align: center;
    }

    .admin-card-header {
        flex-direction: column;
    }

    .admin-card-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .transparency-matchline,
    .bet-pick-line {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .transparency-team,
    .transparency-team-away,
    .bet-pick-team,
    .bet-pick-team-away {
        justify-content: center;
        text-align: center;
    }

    .transparency-team-away,
    .bet-pick-team-away {
        flex-direction: row;
    }

    .transparency-score {
        width: 100%;
        min-width: 0;
    }

    .bet-transparency-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .bet-transparency-header .status-pill {
        width: 100%;
    }

    .game-transparency-header {
        padding: 0.85rem;
    }

    .game-score-line {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 0.35rem;
    }

    .game-score-team {
        gap: 0.3rem;
        font-size: 0.72rem;
        white-space: nowrap;
    }

    .game-score-team .team-flag,
    .compact-pick-line .team-flag {
        width: 1.8rem;
        height: 1.25rem;
    }

    .game-score-value {
        min-width: 3.4rem;
        gap: 0.25rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .game-score-meta {
        gap: 0.5rem;
    }

    .game-score-meta strong {
        font-size: 0.9rem;
    }

    .compact-pick-line {
        gap: 0.55rem;
    }

    .compact-pick-line strong {
        font-size: 1.25rem;
    }

    .deposit-actions,
    .deposit-action-form,
    .deposit-action-form:last-child,
    .withdraw-action-form,
    .withdraw-action-form:last-child,
    .game-result-form {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        min-width: 0;
    }

    .game-result-form .form-control {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .app-navbar .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--app-border);
    }

    .app-nav-group {
        align-items: stretch;
        gap: 0.5rem;
        width: 100%;
    }

    .app-navbar .nav-item,
    .app-navbar .nav-link {
        width: 100%;
    }

    .app-navbar .nav-link {
        text-align: center;
        padding-block: 0.75rem;
    }

    .app-nav-admin {
        margin-top: 0.75rem;
        margin-left: 0;
        padding-top: 0.75rem;
        padding-left: 0;
        border-top: 1px solid rgba(217, 166, 58, 0.28);
        border-left: 0;
    }
}

.withdraw-info-box {
    padding: 0.85rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.withdraw-info-box span {
    display: block;
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.withdraw-info-box strong {
    display: block;
    color: var(--app-text);
    font-size: 0.95rem;
    word-break: break-word;
}

.withdraw-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: var(--app-muted);
    font-size: 0.82rem;
}

.featured-pool-card {
    padding: 1.25rem;
}

.featured-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.featured-team {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    min-width: 0;
    text-align: center;
}

.featured-team strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1.05rem;
}

.featured-flag {
    width: 4.25rem;
    height: 2.8rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
}

.featured-versus {
    min-width: 4.5rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    text-align: center;
    font-size: 1.35rem;
    font-weight: 900;
}

.featured-date {
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    color: #dce5df;
    text-align: center;
    font-weight: 800;
}

.home-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.home-stat-card {
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.home-stat-card span,
.home-stat-card strong {
    display: block;
}

.home-stat-card span {
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-stat-card strong {
    margin-top: 0.35rem;
    color: var(--app-text);
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.winner-box {
    padding: 0.85rem;
    border: 1px solid rgba(217, 166, 58, 0.18);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.08);
}

.winner-box span,
.winner-box strong {
    display: block;
}

.winner-box span {
    color: var(--app-gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.winner-box strong {
    margin-top: 0.35rem;
    color: var(--app-text);
    overflow-wrap: anywhere;
}

.finished-game-card {
    opacity: 0.96;
}

@media (max-width: 575.98px) {
    .featured-pool-card {
        padding: 1rem;
    }

    .featured-match {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 0.5rem;
    }

    .featured-flag {
        width: 3rem;
        height: 2rem;
    }

    .featured-team strong {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .featured-versus {
        min-width: 3rem;
        padding: 0.5rem;
        font-size: 1rem;
    }

    .home-stat-grid {
        grid-template-columns: 1fr;
    }
}

.game-highlight-card {
    padding: 1.25rem;
}

.game-highlight-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.game-highlight-team {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
    min-width: 0;
}

.game-highlight-team strong {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 1.05rem;
}

.game-highlight-flag {
    width: 4.25rem;
    height: 2.8rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
}

.game-highlight-versus {
    min-width: 4.5rem;
    padding: 0.65rem 0.85rem;
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    text-align: center;
    font-size: 1.35rem;
    font-weight: 900;
}

.pick-match-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.pick-match-team {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
    min-width: 0;
}

.pick-match-team strong {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.pick-match-flag {
    width: 4rem;
    height: 2.65rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
}

.pick-match-vs {
    min-width: 4rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
}

.pick-score-card {
    padding: 1rem;
    border: 1px solid rgba(217, 166, 58, 0.18);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.pick-score-title {
    margin-bottom: 1rem;
}

.pick-score-title span,
.pick-score-title strong {
    display: block;
}

.pick-score-title span {
    color: var(--app-gold-soft);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pick-score-title strong {
    margin-top: 0.3rem;
    font-size: 1.05rem;
}

.pick-score-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 5.5rem;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.pick-score-team {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    margin: 0;
    font-weight: 800;
}

.pick-score-team span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.pick-score-help {
    color: var(--app-muted);
    font-size: 0.88rem;
}

@media (max-width: 575.98px) {
    .game-highlight-card {
        padding: 1rem;
    }

    .game-highlight-match,
    .pick-match-card {
        gap: 0.5rem;
    }

    .game-highlight-flag,
    .pick-match-flag {
        width: 3rem;
        height: 2rem;
    }

    .game-highlight-team strong,
    .pick-match-team strong {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .game-highlight-versus,
    .pick-match-vs {
        min-width: 3rem;
        padding: 0.5rem;
        font-size: 1rem;
    }

    .pick-score-row {
        grid-template-columns: minmax(0, 1fr) 4.75rem;
        gap: 0.65rem;
        padding: 0.75rem;
    }

    .pick-score-team {
        gap: 0.55rem;
        font-size: 0.9rem;
    }
}

.deposit-quick-card,
.deposit-form-card,
.deposit-result-card {
    padding: 1.25rem;
}

.deposit-balance-box,
.deposit-pix-box,
.deposit-status-box,
.deposit-help-box {
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
}

.deposit-balance-box span,
.deposit-balance-box strong,
.deposit-pix-box span,
.deposit-pix-box strong,
.deposit-status-box span,
.deposit-status-box strong,
.deposit-status-box small,
.deposit-help-box strong,
.deposit-help-box span {
    display: block;
}

.deposit-balance-box span,
.deposit-pix-box span,
.deposit-status-box span {
    color: var(--app-muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.deposit-balance-box strong {
    margin-top: 0.35rem;
    color: var(--app-gold-soft);
    font-size: 1.85rem;
}

.deposit-pix-box strong {
    margin-top: 0.35rem;
    color: var(--app-text);
    overflow-wrap: anywhere;
}

.deposit-status-box {
    border-color: rgba(217, 166, 58, 0.18);
    background: rgba(217, 166, 58, 0.08);
}

.deposit-status-box strong {
    margin-top: 0.35rem;
    color: var(--app-text);
    overflow-wrap: anywhere;
}

.deposit-status-box small {
    margin-top: 0.35rem;
    color: var(--app-muted);
}

.deposit-status-approved {
    border-color: rgba(17, 184, 111, 0.22);
    background: rgba(17, 184, 111, 0.08);
}

.deposit-help-box strong {
    color: var(--app-gold-soft);
    margin-bottom: 0.25rem;
}

.deposit-help-box span {
    color: var(--app-muted);
}

.deposit-amount-input {
    min-height: 3.5rem;
    font-size: 1.4rem;
    font-weight: 800;
}

@media (max-width: 767.98px) {
    .deposit-quick-card,
    .deposit-form-card,
    .deposit-result-card {
        padding: 1rem;
    }

    .deposit-amount-input {
        font-size: 1.2rem;
    }
}

.dashboard-main-card,
.dashboard-next-game {
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(20, 34, 29, 0.98), rgba(8, 18, 14, 0.98));
    border: 1px solid var(--app-border);
    border-radius: 0.5rem;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
}

.dashboard-main-card span,
.dashboard-main-card strong {
    display: block;
}

.dashboard-main-card > span {
    color: var(--app-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.dashboard-main-card > strong {
    margin-top: 0.6rem;
    color: var(--app-gold-soft);
    font-size: 2.25rem;
}

.dashboard-note {
    padding: 0.85rem;
    border: 1px solid rgba(217, 166, 58, 0.18);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.08);
    color: var(--app-text);
    font-size: 0.9rem;
    font-weight: 700;
}

.dashboard-note-success {
    border-color: rgba(17, 184, 111, 0.22);
    background: rgba(17, 184, 111, 0.08);
    color: #bfffe1;
}

.dashboard-next-match {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.dashboard-next-team {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
    text-align: center;
    min-width: 0;
}

.dashboard-next-team strong {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.dashboard-next-flag {
    width: 4rem;
    height: 2.65rem;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
}

.dashboard-next-versus {
    min-width: 4rem;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(217, 166, 58, 0.4);
    border-radius: 0.5rem;
    background: rgba(217, 166, 58, 0.1);
    color: var(--app-gold-soft);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 900;
}

.dashboard-list-card {
    padding: 1rem;
}

@media (max-width: 575.98px) {
    .dashboard-main-card,
    .dashboard-next-game {
        padding: 1rem;
    }

    .dashboard-main-card > strong {
        font-size: 1.9rem;
    }

    .dashboard-next-match {
        gap: 0.5rem;
    }

    .dashboard-next-flag {
        width: 3rem;
        height: 2rem;
    }

    .dashboard-next-team strong {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    .dashboard-next-versus {
        min-width: 3rem;
        padding: 0.5rem;
        font-size: 1rem;
    }
}

.app-navbar {
    position: relative;
    z-index: 3000;
}

.app-navbar .dropdown-menu {
    position: absolute;
    z-index: 3100;
}
