:root {
    --bg: #061124;
    --bg-soft: #0a1730;
    --card: #0c1b35;
    --card-2: #102241;
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --primary: #00e676;
    --primary-dark: #00c964;
    --warning: #ffca28;
    --danger: #ff5d73;
    --info: #3b82f6;
    --success: #10b981;
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(0, 230, 118, 0.12), transparent 25%),
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 28%),
        var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
    font: inherit;
}
button { cursor: pointer; }

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.page-shell {
    min-height: 100vh;
    padding-bottom: 48px;
}

.public-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
    background: rgba(6, 17, 36, 0.86);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand strong,
.sidebar-brand strong {
    display: block;
    font-size: 1rem;
}

.brand span,
.sidebar-brand span {
    display: block;
    color: var(--muted);
    font-size: .875rem;
}

.brand-logo,
.sidebar-brand img,
.auth-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    object-fit: cover;
}

.public-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.public-nav a:not(.btn) {
    color: var(--muted);
    font-weight: 600;
}

.section {
    padding: 32px 0 0;
}

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

.section-head.inline {
    margin-bottom: 24px;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-head h2,
.hero-content h2,
.admin-topbar h1,
.auth-card h1,
.content-card h2,
.sub-card h2 {
    margin: 6px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero {
    padding-top: 24px;
}

.hero-slider,
.fallback-hero {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 320px;
    box-shadow: var(--shadow);
    background: linear-gradient(120deg, rgba(5, 17, 37, .96), rgba(10, 40, 79, .84));
}

.hero-slide {
    min-height: 320px;
    padding: 44px 40px;
    display: none;
    align-items: end;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    display: flex;
}

.hero-content {
    max-width: 540px;
}

.hero-content p {
    color: rgba(248, 250, 252, .86);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.hero-dots {
    position: absolute;
    right: 26px;
    bottom: 24px;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dot.active {
    width: 26px;
    background: var(--primary);
}

.alert {
    padding: 14px 16px;
    border-radius: 14px;
    margin-top: 12px;
    border: 1px solid transparent;
}

.alert-success {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.alert-danger {
    background: rgba(255, 93, 115, 0.12);
    border-color: rgba(255, 93, 115, 0.3);
}

.alert-warning {
    background: rgba(255, 202, 40, 0.12);
    border-color: rgba(255, 202, 40, 0.32);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    padding: 12px 18px;
    font-weight: 700;
    transition: .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-primary {
    background: var(--primary);
    color: #032412;
}
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1px solid var(--line);
}
.btn-danger { background: rgba(255, 93, 115, 0.15); color: #ffdbe1; border: 1px solid rgba(255, 93, 115, 0.28); }
.btn-success { background: rgba(16, 185, 129, 0.15); color: #d5ffef; border: 1px solid rgba(16, 185, 129, 0.28); }
.btn-sm { padding: 10px 14px; font-size: .92rem; }
.btn-block { width: 100%; }
.text-danger { color: #ff9ca8; }

.league-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.league-card,
.stat-card,
.metric-card,
.admin-section-card,
.match-card,
.content-card,
.football-block,
.finished-card,
.auth-card,
.banner-card-admin,
.pix-box,
.summary-box {
    background: linear-gradient(180deg, rgba(12, 27, 53, .98), rgba(9, 22, 43, .98));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.compact-card {
    padding: 22px;
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.league-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
    font-size: 1.2rem;
    font-weight: 800;
}

.compact small,
.league-card small,
.muted,
.football-extra,
.match-location,
.match-limits,
.item-meta,
.admin-list-item p,
.admin-list-item small,
.content-card p,
.finished-card p {
    color: var(--muted);
}

.football-sections,
.match-grid,
.admin-cards-grid,
.banner-grid,
.stats-grid {
    display: grid;
    gap: 18px;
}

.football-sections,
.banner-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.match-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.stats-grid,
.admin-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.stat-card,
.metric-card {
    padding: 24px;
}

.stat-card span,
.metric-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
}

.stat-card strong,
.metric-card strong {
    font-size: 2rem;
    color: var(--primary);
}

.tab-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 22px 0 18px;
}

.tab-label {
    padding: 12px 16px;
    border-radius: 14px;
    text-align: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 700;
}

.tab-label.active {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
}

.football-block,
.match-card,
.content-card,
.admin-section-card,
.banner-card-admin,
.auth-card,
.finished-card,
.pix-box,
.summary-box {
    padding: 22px;
}

.football-block-head,
.match-topbar,
.item-actions,
.item-meta,
.football-meta,
.form-actions,
.admin-topbar,
.footer-actions,
.summary-list div,
.summary-box,
.pix-box,
.league-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.league-chip {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.football-match-list,
.summary-list,
.admin-list,
.finished-list {
    display: grid;
    gap: 14px;
}

.football-match-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,0.03);
}

.teams-line {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    margin: 18px 0;
}

.teams-line.football {
    gap: 8px;
}

.team-box,
.team-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.team-mini {
    flex-direction: row;
    justify-content: flex-start;
}

.team-mini-right {
    justify-content: flex-end;
}

.team-mini img,
.team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    object-fit: contain;
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.vs-separator {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
}

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

.odds-grid.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.odd-box {
    padding: 16px 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: .2s ease;
}

.odd-box:hover {
    border-color: rgba(0,230,118,.5);
    transform: translateY(-2px);
}

.odd-box span { color: var(--muted); font-size: .82rem; text-transform: uppercase; }
.odd-box strong { color: var(--primary); font-size: 1.55rem; }

.match-location,
.match-limits,
.football-extra,
.admin-list-item p,
.admin-list-item small,
.finished-card p {
    font-size: .95rem;
}

.status-pill,
.badge,
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
}

.status-upcoming { background: rgba(0, 230, 118, 0.14); color: #8cfec2; }
.status-live { background: rgba(255, 93, 115, 0.14); color: #ffb5c0; }
.status-finished { background: rgba(59, 130, 246, 0.14); color: #bcd4ff; }
.status-cancelled { background: rgba(148, 163, 184, 0.14); color: #d2dbe6; }

.badge-warning { background: rgba(255, 202, 40, 0.16); color: #ffe58d; }
.badge-info { background: rgba(59, 130, 246, 0.16); color: #bfdaff; }
.badge-success { background: rgba(16, 185, 129, 0.16); color: #bfffe7; }
.badge-danger { background: rgba(255, 93, 115, 0.16); color: #ffd1d7; }
.badge-muted { background: rgba(148, 163, 184, 0.16); color: #dce6f0; }

.empty-state {
    padding: 22px;
    border-radius: 18px;
    border: 1px dashed rgba(148, 163, 184, 0.3);
    color: var(--muted);
}

.public-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 48px;
    padding: 22px 0 0;
    border-top: 1px solid var(--line);
}

.footer-actions {
    flex-wrap: wrap;
    color: var(--muted);
}

.single-column.narrow {
    width: min(1000px, calc(100% - 32px));
}

.bet-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 18px;
}

.sticky-card {
    position: sticky;
    top: 94px;
    align-self: start;
}

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

.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-grid label span {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 600;
}

.full-width {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #071427;
    color: var(--text);
    padding: 14px 15px;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(0, 230, 118, 0.55);
    box-shadow: 0 0 0 4px rgba(0, 230, 118, 0.08);
}

.checkbox-row {
    flex-direction: row !important;
    align-items: center;
    gap: 10px;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
}

.summary-box,
.pix-box {
    flex-wrap: wrap;
    align-items: stretch;
    gap: 14px;
}

.summary-box > div,
.pix-box > div,
.summary-list div {
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.summary-box span,
.pix-box span,
.summary-list span {
    color: var(--muted);
    font-size: .82rem;
    text-transform: uppercase;
}

.summary-box strong,
.pix-box strong,
.summary-list strong {
    font-size: 1rem;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.auth-card {
    width: min(440px, 100%);
    padding: 32px;
    text-align: center;
}

.auth-card form,
.auth-card label { text-align: left; }
.auth-card p { color: var(--muted); }
.auth-link { display: inline-block; margin-top: 14px; color: var(--muted); }

.admin-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    padding: 28px 18px;
    border-right: 1px solid var(--line);
    background: rgba(5, 14, 29, 0.92);
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-brand {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sidebar-nav,
.sidebar-footer {
    display: grid;
    gap: 8px;
}

.sidebar-nav a,
.sidebar-footer a {
    padding: 14px 16px;
    border-radius: 16px;
    color: var(--muted);
    font-weight: 700;
}

.sidebar-nav a.active,
.sidebar-nav a:hover,
.sidebar-footer a:hover {
    background: rgba(0, 230, 118, 0.1);
    color: var(--primary);
}

.admin-main {
    padding: 28px;
}

.admin-topbar {
    margin-bottom: 18px;
}

.admin-topbar p {
    color: var(--muted);
    margin: 0;
}

.admin-list {
    display: grid;
    gap: 14px;
}

.admin-list-item {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--line);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.admin-list-item.align-center {
    align-items: center;
}

.admin-list-item h3,
.banner-card-body h3,
.finished-card strong,
.content-card h2 {
    margin: 4px 0 6px;
}

.admin-list-item h3 span { color: var(--muted); }
.item-actions { flex-wrap: wrap; }
.wrap-actions { justify-content: flex-end; }

.banner-grid {
    gap: 18px;
}

.banner-card-admin {
    overflow: hidden;
    padding: 0;
}

.banner-card-admin img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--line);
}

.banner-card-body { padding: 18px; }
.form-wrapper { padding: 24px; }
.sub-card { padding: 22px; }
.sub-card + .sub-card { margin-top: 18px; }
.sub-card h2 { font-size: 1.4rem; }

.table-responsive {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.data-table thead th {
    color: var(--muted);
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.inline-filter select {
    min-width: 180px;
}

.league-settings {
    margin-top: 18px;
}

.league-rows {
    display: grid;
    gap: 12px;
}

.league-row {
    gap: 10px;
    align-items: center;
}

.league-row input[type="text"],
.league-row input[type="number"] {
    min-width: 0;
}

.league-row > * {
    flex: 1 1 0;
}

.league-row > :first-child {
    max-width: 90px;
}

.league-row > :nth-child(3),
.league-row > :nth-child(4) {
    max-width: 140px;
}

.compact {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
}

@media (max-width: 1024px) {
    .admin-layout,
    .bet-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .sticky-card { position: static; }
}

@media (max-width: 760px) {
    .public-header,
    .public-footer,
    .admin-topbar,
    .section-head,
    .football-block-head,
    .match-topbar,
    .item-actions,
    .footer-actions,
    .league-row,
    .admin-list-item {
        flex-direction: column;
        align-items: stretch;
    }

    .public-nav {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .hero-slide {
        padding: 28px 22px 70px;
        min-height: 280px;
    }

    .hero-dots {
        right: 22px;
        bottom: 18px;
    }

    .form-grid,
    .odds-grid,
    .tab-header,
    .teams-line,
    .football-sections,
    .match-grid,
    .league-grid,
    .stats-grid,
    .admin-cards-grid,
    .banner-grid {
        grid-template-columns: 1fr;
    }

    .team-mini,
    .team-mini-right,
    .team-box {
        justify-content: center;
    }

    .admin-main {
        padding: 18px;
    }
}

/* ===== UPGRADE PREMIUM ===== */

body {
    background:
        radial-gradient(circle at top left, rgba(29, 228, 122, 0.08), transparent 25%),
        radial-gradient(circle at top right, rgba(85, 167, 255, 0.10), transparent 30%),
        linear-gradient(180deg, #030816 0%, #071326 100%);
}

.premium-header {
    background: rgba(3, 10, 24, 0.82);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

.premium-nav a {
    font-weight: 700;
}

.premium-nav .btn {
    margin-left: 8px;
}

.premium-hero {
    display: grid;
    grid-template-columns: 1.35fr .8fr;
    gap: 24px;
    margin-bottom: 28px;
    align-items: stretch;
}

.premium-hero-left,
.bet-slip-card {
    background: linear-gradient(180deg, rgba(11,26,53,.96), rgba(7,19,38,.98));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
}

.premium-hero-left {
    padding: 34px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.premium-hero-left h1 {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    margin: 0 0 14px;
    max-width: 760px;
}

.premium-hero-left p {
    color: var(--muted);
    font-size: 17px;
    max-width: 720px;
    margin: 0 0 20px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-stat {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.hero-stat strong {
    display: block;
    font-size: 32px;
    color: var(--green);
    margin-bottom: 6px;
}

.hero-stat span {
    color: var(--muted);
    font-size: 14px;
}

.bet-slip-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bet-slip-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.wallet-chip {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 210, 77, 0.12);
    color: var(--yellow);
    font-weight: 800;
    font-size: 12px;
}

.bet-slip-card h3 {
    font-size: 28px;
    margin: 0 0 8px;
}

.bet-slip-card p {
    color: var(--muted);
    margin: 0 0 18px;
}

.slip-list {
    display: grid;
    gap: 12px;
}

.slip-item {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.slip-item span {
    color: var(--muted);
}

.slip-item strong {
    color: #fff;
}

.premium-banner {
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
}

.premium-section {
    border-radius: 24px;
}

.premium-league-card,
.premium-match-card {
    border-radius: 22px;
    transition: .18s ease;
}

.premium-league-card:hover,
.premium-match-card:hover {
    transform: translateY(-4px);
    border-color: rgba(29, 228, 122, .45);
    box-shadow: 0 18px 50px rgba(0,0,0,.24);
}

.premium-match-card {
    position: relative;
    overflow: hidden;
}

.premium-match-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #39a8ff);
}

.market-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 16px;
}

.market-pill {
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
    padding: 12px 10px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
}

.market-pill:hover {
    border-color: rgba(29,228,122,.45);
    background: rgba(29,228,122,.10);
}

.odd-box-clickable {
    cursor: pointer;
    transition: .16s ease;
}

.odd-box-clickable:hover {
    transform: translateY(-2px);
    border-color: rgba(29, 228, 122, 0.45);
    background: rgba(29, 228, 122, 0.07);
}

.premium-form-card {
    border-radius: 22px;
}

.location-text {
    color: var(--muted);
    margin: 0 0 14px;
}

.space-top {
    margin-top: 20px;
}

@media (max-width: 980px) {
    .premium-hero,
    .bet-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-mini-stats,
    .market-row,
    .odds-grid.three,
    .odds-grid.two {
        grid-template-columns: 1fr;
    }

    .premium-hero-left {
        padding: 24px;
    }

    .premium-hero-left h1 {
        font-size: 34px;
    }

    .site-header-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 0;
    }

    .site-nav {
        justify-content: space-between;
    }
}

/* ===== ADMIN DASHBOARD PREMIUM ===== */

.admin-hero {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 20px;
    margin-bottom: 24px;
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #081426 0%, #0b1d38 55%, #0f2748 100%);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.admin-hero-content h1 {
    margin: 8px 0 10px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    color: #fff;
}

.admin-hero-content p {
    margin: 0;
    max-width: 760px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
}

.admin-hero-side {
    display: grid;
    gap: 14px;
    align-content: center;
}

.admin-hero-badge {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.admin-hero-badge span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.70);
    margin-bottom: 8px;
}

.admin-hero-badge strong {
    display: block;
    font-size: 28px;
    color: #ffffff;
    line-height: 1;
}

.premium-admin-grid {
    gap: 18px;
    margin-bottom: 24px;
}

.premium-metric-card {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, #0c1729 0%, #101d33 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 14px 35px rgba(0,0,0,0.16);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.premium-metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(65, 208, 122, 0.35);
    box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}

.metric-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.metric-card-top span:first-child {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.72);
}

.metric-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.metric-dot.success { background: #20d26b; }
.metric-dot.info { background: #37a2ff; }
.metric-dot.warning { background: #f8c444; }
.metric-dot.danger { background: #ff5f6d; }

.premium-metric-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 8px;
}

.premium-metric-card small {
    color: rgba(255,255,255,0.58);
    font-size: 13px;
}

.premium-admin-section {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, #0b1629 0%, #0f1c32 100%);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}

.premium-section-head {
    margin-bottom: 18px;
}

.section-subtitle {
    margin: 6px 0 0;
    color: rgba(255,255,255,0.64);
    font-size: 14px;
}

.premium-table-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.premium-data-table {
    width: 100%;
    border-collapse: collapse;
    background: #0d1728;
}

.premium-data-table thead th {
    padding: 15px 16px;
    text-align: left;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.70);
    background: #101d31;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.premium-data-table tbody td {
    padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #e9eef7;
    vertical-align: middle;
}

.premium-data-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.bettor-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bettor-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1edb74, #1b8fff);
    color: #04101f;
    font-weight: 800;
    font-size: 14px;
}

.match-cell strong {
    color: #fff;
    font-size: 14px;
}

.vs-inline {
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}

@media (max-width: 980px) {
    .admin-hero {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-data-table thead {
        display: none;
    }

    .premium-data-table,
    .premium-data-table tbody,
    .premium-data-table tr,
    .premium-data-table td {
        display: block;
        width: 100%;
    }

    .premium-data-table tr {
        padding: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .premium-data-table td {
        padding: 10px 12px;
        border: 0;
    }
}
