/* ============================================================
   BOLÃO COPA 2026 — main.css
   Mobile-first, CSS Variables, light/dark theme
   ============================================================ */

/* ── Google Fonts are loaded via HTML ── */

/* ── 1. CSS Variables ─────────────────────────────────────── */
:root {
    --color-bg:          #f5f7f5;
    --color-surface:     #ffffff;
    --color-surface2:    #f0f4f0;
    --color-primary:     #1a5c38;
    --color-primary-alt: #174f30;
    --color-accent:      #f0a500;
    --color-accent-text: #1a1a1a;
    --color-text:        #1a1a1a;
    --color-text-muted:  #6b7280;
    --color-border:      #e2e8e2;
    --color-error:       #dc3545;
    --color-success:     #198754;
    --color-warning:     #fd7e14;

    --shadow-card:  0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 4px 20px rgba(0, 0, 0, 0.13);

    --radius-card:   12px;
    --radius-btn:    8px;
    --radius-input:  6px;

    --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
    --font-body:    'Nunito', 'Segoe UI', sans-serif;

    --header-height: 64px;
    --container-max: 1100px;
}

[data-theme="dark"] {
    --color-bg:          #0d1f17;
    --color-surface:     #142d1f;
    --color-surface2:    #1a3828;
    --color-primary:     #2d9c5e;
    --color-primary-alt: #278751;
    --color-accent:      #f0a500;
    --color-accent-text: #1a1a1a;
    --color-text:        #e8f0eb;
    --color-text-muted:  #94a39c;
    --color-border:      #234730;
    --color-error:       #f87171;
    --color-success:     #4ade80;
    --color-warning:     #fbbf24;

    --shadow-card:  0 2px 12px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ── 2. Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color .3s, color .3s;
}

img { display: block; max-width: 100%; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { cursor: pointer; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── 3. Layout ────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container { padding: 0 24px; }
}

/* ── 4. Header ────────────────────────────────────────────── */
.site-header {
    background: var(--color-primary);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    height: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    height: var(--header-height);
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    white-space: nowrap;
    text-decoration: none;
}
.logo:hover { text-decoration: none; opacity: .9; }
.logo-icon { font-size: 24px; }
.logo-badge {
    background: var(--color-accent);
    color: var(--color-accent-text);
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 20px;
    margin-left: 4px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    color: #fff;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--color-primary);
    padding: 8px 0 16px;
    z-index: 99;
}
.main-nav.open { display: block; }
.main-nav ul { list-style: none; display: flex; flex-direction: column; }
.main-nav ul li a {
    display: block;
    color: rgba(255,255,255,.9);
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s;
}
.main-nav ul li a:hover,
.main-nav ul li a.active { background: var(--color-primary-alt); color: #fff; }
.main-nav ul li a.nav-admin { color: var(--color-accent); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.user-menu { display: flex; align-items: center; gap: 8px; }
.user-name { font-size: 13px; color: rgba(255,255,255,.85); display: none; }
.btn-logout {
    font-size: 13px;
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.3);
    padding: 5px 12px;
    border-radius: var(--radius-btn);
    transition: all .2s;
    text-decoration: none;
}
.btn-logout:hover { background: rgba(255,255,255,.15); text-decoration: none; }

.theme-toggle {
    background: none;
    border: none;
    font-size: 20px;
    padding: 6px;
    border-radius: 50%;
    transition: background .2s;
    color: #fff;
}
.theme-toggle:hover { background: rgba(255,255,255,.15); }
[data-theme="light"] .theme-icon-dark { display: none; }
[data-theme="dark"]  .theme-icon-light { display: none; }

@media (min-width: 768px) {
    .hamburger { display: none; }
    .main-nav {
        display: flex !important;
        position: static;
        background: none;
        padding: 0;
        flex: 1;
    }
    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    .main-nav ul li a {
        padding: 8px 14px;
        border-radius: var(--radius-btn);
    }
    .main-nav ul li a:hover,
    .main-nav ul li a.active { background: rgba(255,255,255,.15); }
    .user-name { display: block; }
}

/* ── 5. Main content ──────────────────────────────────────── */
.main-content { padding: 24px 0 48px; min-height: calc(100vh - var(--header-height) - 60px); }

/* ── 6. Footer ────────────────────────────────────────────── */
.site-footer {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ── 7. Buttons ───────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 22px;
    border-radius: var(--radius-btn);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }

.btn-primary { background: var(--color-accent); color: var(--color-accent-text); }
.btn-primary:hover { background: #e09800; text-decoration: none; }

.btn-secondary { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-secondary:hover { background: var(--color-primary); color: #fff; text-decoration: none; }

.btn-success { background: var(--color-success); color: #fff; border-color: var(--color-success); }
.btn-success:hover { opacity: .9; }

.btn-danger { background: var(--color-error); color: #fff; border-color: var(--color-error); }
.btn-danger:hover { opacity: .9; }

.btn-warning { background: var(--color-warning); color: #fff; border-color: var(--color-warning); }
.btn-warning:hover { opacity: .9; }

.btn-full { width: 100%; }

.btn-sm {
    padding: 6px 12px;
    font-size: 13px;
}

/* ── 8. Cards ─────────────────────────────────────────────── */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.card-header {
    padding: 16px 20px 0;
}
.card-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .5px;
    color: var(--color-primary);
}
.card-body {
    padding: 16px 20px 20px;
}

/* ── 9. Forms ─────────────────────────────────────────────── */
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 14px;
}
.label-hint {
    font-weight: 400;
    font-size: 12px;
    color: var(--color-text-muted);
    display: block;
    margin-top: 2px;
}
.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-input);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color .2s, box-shadow .2s;
}
.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 92, 56, .15);
}
.form-input:disabled { opacity: .6; cursor: not-allowed; }
select.form-input { cursor: pointer; }

.input-password-wrap { position: relative; }
.input-password-wrap .form-input { padding-right: 44px; }
.toggle-password {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
}

.field-hint { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; display: block; }
.hint-ok    { color: var(--color-success); }
.hint-error { color: var(--color-error); }
.required   { color: var(--color-error); }

/* ── 10. Alerts ───────────────────────────────────────────── */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-input);
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
[data-theme="dark"] .alert-success { background: #064e3b; color: #6ee7b7; border-color: #10b981; }
[data-theme="dark"] .alert-error   { background: #450a0a; color: #fca5a5; border-color: #ef4444; }

/* ── 11. Auth pages ───────────────────────────────────────── */
.auth-body { display: flex; align-items: center; justify-content: center; min-height: 100vh; padding: 24px 16px; }
.auth-wrapper { width: 100%; max-width: 420px; position: relative; }
.auth-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 32px 28px;
}
.auth-header { text-align: center; margin-bottom: 24px; }
.auth-logo { font-size: 52px; margin-bottom: 8px; }
.auth-title { font-family: var(--font-display); font-size: 32px; letter-spacing: 2px; color: var(--color-primary); }
.auth-subtitle { font-size: 14px; color: var(--color-text-muted); margin-top: 4px; }
.auth-welcome { font-size: 15px; margin-bottom: 20px; }
.auth-form { margin-bottom: 16px; }
.auth-links { text-align: center; font-size: 14px; margin: 16px 0; }
.auth-separator { text-align: center; position: relative; margin: 20px 0; }
.auth-separator::before, .auth-separator::after {
    content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--color-border);
}
.auth-separator::before { left: 0; }
.auth-separator::after  { right: 0; }
.auth-separator span { font-size: 12px; color: var(--color-text-muted); background: var(--color-surface); padding: 0 10px; position: relative; }

.theme-toggle-auth {
    position: fixed;
    top: 16px; right: 16px;
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
    border-radius: 50%;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}

/* Password strength */
.password-strength { margin-top: 8px; }
.strength-bar { height: 4px; background: var(--color-border); border-radius: 4px; overflow: hidden; margin-bottom: 4px; }
.strength-bar span { display: block; height: 100%; border-radius: 4px; transition: width .4s, background .4s; }
#strengthText { font-size: 12px; color: var(--color-text-muted); }

/* ── 12. Page headers ─────────────────────────────────────── */
.page-header { margin-bottom: 24px; }
.page-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 5vw, 38px);
    letter-spacing: 1px;
    color: var(--color-primary);
    line-height: 1.1;
}
.page-subtitle { color: var(--color-text-muted); font-size: 14px; margin-top: 4px; }
.points-total-header { font-size: 15px; margin-top: 6px; }
.pts-highlight { color: var(--color-primary); font-size: 22px; }

/* ── 13. Dashboard ────────────────────────────────────────── */
.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 640px) {
    .dashboard-grid  { grid-template-columns: 1fr 1fr; }
    .card-bets       { grid-row: 1; grid-column: 1; }
    .card-deadline   { grid-row: 2; grid-column: 1; }
    .card-ranking    { grid-row: 1 / 3; grid-column: 2; }
    .card-prize      { grid-column: 1 / -1; }
}

.dashboard-card { transition: box-shadow .2s; display: flex; flex-direction: column; }
.dashboard-card:hover { box-shadow: var(--shadow-card-hover); }
.dashboard-card .card-body { display: flex; flex-direction: column; flex: 1; }
.dashboard-card .card-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.dashboard-card .card-body > .btn { margin-top: 16px; }

/* Ranking widget redesign */
.ranking-widget { display: flex; flex-direction: column; gap: 16px; }
.ranking-hero { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.ranking-pos-group { display: flex; align-items: baseline; gap: 2px; }
.position-number { font-family: var(--font-display); font-size: 64px; line-height: 1; color: var(--color-primary); }
.position-suffix { font-family: var(--font-display); font-size: 26px; color: var(--color-primary); }
.position-label  { font-size: 14px; color: var(--color-text-muted); margin-left: 4px; }
.ranking-pts-group { text-align: right; }
.ranking-pts-value { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--color-text); display: block; }
.ranking-pts-label { font-size: 13px; color: var(--color-text-muted); }
.ranking-change { font-weight: 800; font-size: 14px; margin-top: 4px; }
.change-up   { color: var(--color-success); }
.change-down { color: var(--color-error); }
.change-same { color: var(--color-text-muted); }
.ranking-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.stat-box { background: var(--color-surface2); border-radius: 8px; padding: 12px; text-align: center; }
.stat-box span { font-size: 12px; color: var(--color-text-muted); display: block; margin-bottom: 4px; }
.stat-box strong { font-family: var(--font-display); font-size: 32px; color: var(--color-primary); display: block; line-height: 1; }

/* Progress */
.progress-info { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 14px; }
.progress-percent { font-weight: 700; color: var(--color-primary); }
.progress-bar-wrap { height: 10px; background: var(--color-surface2); border-radius: 99px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--color-primary); border-radius: 99px; transition: width .5s ease; }

/* Countdown */
.countdown { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 0 8px; }
.countdown-unit { display: flex; flex-direction: column; align-items: center; }
.countdown-val { font-family: var(--font-display); font-size: 36px; line-height: 1; color: var(--color-primary); min-width: 48px; text-align: center; }
.countdown-unit small { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }
.countdown-sep { font-family: var(--font-display); font-size: 28px; color: var(--color-text-muted); margin-top: -8px; }
.deadline-date { font-size: 13px; color: var(--color-text-muted); text-align: center; margin-top: 8px; }
.deadline-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 700; }
.badge-over { background: var(--color-error); color: #fff; }

/* Ranking widget — ver estilos em Dashboard section */

/* Prize */
.prize-list { display: flex; flex-direction: column; gap: 8px; }
.prize-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border-radius: 8px; }
.prize-gold   { background: #fff8e1; color: #7c5c00; }
.prize-silver { background: #f0f4f4; color: #4a5568; }
.prize-bronze { background: #fff0e8; color: #7c3c00; }
[data-theme="dark"] .prize-gold   { background: #3d2e00; color: #fbbf24; }
[data-theme="dark"] .prize-silver { background: #1e2d2d; color: #94a3b8; }
[data-theme="dark"] .prize-bronze { background: #2d1500; color: #fb923c; }
.prize-val { font-weight: 800; font-size: 15px; }
.prize-total { font-size: 13px; color: var(--color-text-muted); margin-top: 8px; }

/* Notifications */
.notifications-list { margin-bottom: 16px; }
.notification-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: #fff8e1;
    border: 1px solid #fde68a;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 8px;
}
[data-theme="dark"] .notification-item { background: #3d2e00; border-color: #ca8a04; }

/* ── Scoring rules ────────────────────────────────────────── */
.scoring-rules-card { margin-top: 24px; }

.scoring-rules-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.scoring-rule {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: var(--color-surface2);
    border-radius: 8px;
}

.scoring-rule .rule-badge {
    flex-shrink: 0;
    min-width: 52px;
    text-align: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.rule-info {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px;
}
.rule-info strong {
    font-size: 14px;
    white-space: nowrap;
}
.rule-info span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.scoring-tiebreak {
    padding: 12px 14px;
    background: var(--color-surface2);
    border-radius: 8px;
    font-size: 13px;
    border-left: 3px solid var(--color-accent);
}

@media (min-width: 768px) {
    .scoring-rules-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

/* ── Como Funciona ────────────────────────────────────────── */
.how-it-works-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.how-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--color-surface2);
    border-radius: 8px;
}

.how-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.how-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.how-info strong {
    font-size: 15px;
}

.how-info p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.how-info p strong {
    color: var(--color-text);
    font-size: 13px;
}

@media (min-width: 768px) {
    .how-it-works-grid {
        gap: 12px;
    }
}

/* ── 14. Bets form ────────────────────────────────────────── */
.bets-progress-bar-wrap {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-card);
}
.deadline-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--color-surface2);
    border-radius: 20px;
    font-size: 13px;
    margin-top: 8px;
}
.deadline-over-banner { background: #fee2e2; color: #991b1b; }
[data-theme="dark"] .deadline-over-banner { background: #450a0a; color: #fca5a5; }

.bets-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.filter-btn {
    padding: 7px 14px;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-body);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Match day group */
.match-day-group { margin-bottom: 24px; }
.match-day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 8px;
}
.match-day-title {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: .5px;
    color: var(--color-primary);
}
.match-day-count { font-size: 13px; color: var(--color-text-muted); }

/* Match card */
.match-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-bottom: 10px;
    padding: 12px 16px;
    border-left: 3px solid var(--color-border);
    transition: box-shadow .2s;
}
.match-card-filled { border-left-color: var(--color-success); }
.match-card:hover { box-shadow: var(--shadow-card-hover); }

.match-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
}
.match-time { font-weight: 700; color: var(--color-text); }
.match-group { background: var(--color-surface2); padding: 2px 8px; border-radius: 20px; }
.match-city  { font-size: 12px; }
.bet-filled-badge { margin-left: auto; font-size: 14px; }

.match-teams {
    display: flex;
    align-items: center;
    gap: 8px;
}
.team {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}
.team-home { justify-content: flex-end; text-align: right; }
.team-away { justify-content: flex-start; text-align: left; }
.team-name {
    font-weight: 700;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100px;
}
.team-flag { border-radius: 2px; }
.flag-placeholder { font-size: 20px; opacity: .4; }

.score-inputs {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}
.score-input {
    width: 60px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-input);
    background: var(--color-surface);
    color: var(--color-text);
    font-family: var(--font-body);
    -moz-appearance: textfield;
    transition: border-color .2s, box-shadow .2s;
}
.score-input::-webkit-outer-spin-button,
.score-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.score-input:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(26,92,56,.15); }
.score-input:disabled { background: var(--color-surface2); opacity: .7; }
.score-input.has-value { border-color: var(--color-success); background: #f0faf4; }
[data-theme="dark"] .score-input.has-value { background: #0c2e1a; }

.score-vs { font-size: 18px; font-weight: 800; color: var(--color-text-muted); }

@media (min-width: 768px) {
    .team-name { max-width: 150px; }
    .score-input { width: 68px; }
}

/* Save bar */
.save-bar {
    position: sticky;
    bottom: 0;
    left: 0; right: 0;
    background: var(--color-surface);
    border-top: 2px solid var(--color-primary);
    padding: 12px 16px;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}
.save-bar-inner { max-width: var(--container-max); margin: 0 auto; display: flex; align-items: center; gap: 12px; justify-content: flex-end; }
.save-status { font-size: 13px; color: var(--color-text-muted); flex: 1; }
.btn-save { min-width: 160px; }

/* ── 15. Bets view ────────────────────────────────────────── */
.pts-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
}
.pts-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.pts-exact        { background: #d1fae5; color: #065f46; }
.pts-winner-goals { background: #dbeafe; color: #1e40af; }
.pts-winner       { background: #ffedd5; color: #9a3412; }
.pts-wrong        { background: #f3f4f6; color: #6b7280; }
.pts-pending      { background: var(--color-surface2); color: var(--color-text-muted); }
[data-theme="dark"] .pts-exact        { background: #064e3b; color: #6ee7b7; }
[data-theme="dark"] .pts-winner-goals { background: #1e3a5f; color: #93c5fd; }
[data-theme="dark"] .pts-winner       { background: #431407; color: #fdba74; }
[data-theme="dark"] .pts-wrong        { background: #1f2937; color: #9ca3af; }

.participant-selector { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 14px; }
.participant-selector select { padding: 8px 12px; border-radius: var(--radius-input); border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); }

/* Variante empilhada: label acima do select (evita espremer em telas estreitas) */
.participant-selector.match-selector { flex-direction: column; align-items: stretch; gap: 6px; }
.participant-selector.match-selector select { width: 100%; }

/* Alternância de modo (por participante / por partida) */
.view-mode-toggle { display: inline-flex; gap: 4px; margin-bottom: 16px; padding: 4px; background: var(--color-surface2); border-radius: var(--radius-input); }
.view-mode-toggle .mode-btn { padding: 6px 16px; border-radius: var(--radius-input); font-size: 14px; font-weight: 600; color: var(--color-text-muted); text-decoration: none; transition: background .15s, color .15s; }
.view-mode-toggle .mode-btn.active { background: var(--color-surface); color: var(--color-text); box-shadow: var(--shadow-card); }

/* Tabela de palpites por partida */
.match-result-header { margin: 4px 0 0; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.match-bets-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.match-bets-table th, .match-bets-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--color-border); }
.match-bets-table th { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--color-text-muted); }
.match-bets-table td.score-display { font-weight: 700; }
.match-bets-table tbody tr:last-child td { border-bottom: none; }

.user-ranking-summary {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    padding: 14px 18px;
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
}

.bet-result-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    margin-bottom: 10px;
    padding: 12px 16px;
    border-left: 3px solid var(--color-border);
}
.bet-result-card.finished { border-left-color: var(--color-primary); }
.pts-exact-border        { border-left-color: #10b981; }
.pts-winner-goals-border { border-left-color: #3b82f6; }
.pts-winner-border       { border-left-color: var(--color-warning); }
.pts-wrong-border        { border-left-color: var(--color-text-muted); }

.bet-result-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.team-info { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; font-size: 13px; font-weight: 700; }
.team-info-right { justify-content: flex-end; text-align: right; }

.scores-compare {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
.score-col { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.score-col small { font-size: 10px; color: var(--color-text-muted); }
.score-display {
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}
.score-empty   { color: var(--color-text-muted); }
.score-waiting { color: var(--color-text-muted); font-size: 12px; font-weight: 600; }

/* Mobile: nomes dos times em cima, bloco de placares centralizado embaixo */
@media (max-width: 640px) {
    .bet-result-row {
        flex-wrap: wrap;
        align-items: flex-start;
        row-gap: 10px;
    }
    .team-info {
        flex: 1 1 0;
        order: 1;
        align-items: flex-start;
        word-break: break-word;
    }
    .team-info-right {
        order: 2;
        align-items: flex-start;
    }
    .scores-compare {
        order: 3;
        flex: 1 1 100%;
        justify-content: space-around;
        gap: 8px;
        margin-top: 4px;
        padding-top: 10px;
        border-top: 1px solid var(--color-border);
    }
}

/* ── 16. Ranking page ─────────────────────────────────────── */
.prize-banner {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 20px;
    margin-bottom: 24px;
}
.prize-banner-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}
.prize-banner-item {
    flex: 1;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    gap: 4px;
}
.prize-banner-item strong { font-size: 18px; }
.prize-banner-item.prize-gold   { background: #fff8e1; }
.prize-banner-item.prize-silver { background: #f0f4f4; }
.prize-banner-item.prize-bronze { background: #fff0e8; }
.prize-banner-item.prize-total  { background: var(--color-surface2); }
.prize-participants { font-size: 12px; color: var(--color-text-muted); text-align: center; }
[data-theme="dark"] .prize-banner-item.prize-gold   { background: #3d2e00; }
[data-theme="dark"] .prize-banner-item.prize-silver { background: #1e2d2d; }
[data-theme="dark"] .prize-banner-item.prize-bronze { background: #2d1500; }

.ranking-table-wrap {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: auto;
}
.ranking-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}
.ranking-table thead tr {
    background: var(--color-primary);
    color: #fff;
}
.ranking-table th { padding: 12px 14px; text-align: left; font-weight: 700; }
.ranking-table td { padding: 11px 14px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.ranking-table tbody tr:last-child td { border-bottom: none; }
.ranking-table tbody tr:hover { background: var(--color-surface2); }

.ranking-row.pos-1 { background: #fff8e1; }
.ranking-row.pos-2 { background: #f8f8f8; }
.ranking-row.pos-3 { background: #fff5ec; }
[data-theme="dark"] .ranking-row.pos-1 { background: #3d2e00; }
[data-theme="dark"] .ranking-row.pos-2 { background: #1e1e1e; }
[data-theme="dark"] .ranking-row.pos-3 { background: #2d1e10; }

.ranking-row-me td { font-weight: 700; }
.ranking-row-me td:first-child::after { content: ''; }
.medal { font-size: 22px; }
.pos-number { font-weight: 800; font-size: 15px; }
.pts-value { font-size: 17px; color: var(--color-primary); }
.change-arrow { font-weight: 800; font-size: 13px; }
.badge-you {
    display: inline-block;
    padding: 2px 8px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 6px;
    font-weight: 700;
}
.ranking-name { font-weight: 700; }

@media (max-width: 640px) {
    .hide-mobile { display: none !important; }
}

/* ── 17. Admin ────────────────────────────────────────────── */
.admin-body { }
.admin-header { background: #112a1e; }
.admin-nav ul li a { }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

.stat-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 20px 16px;
    text-align: center;
}
.stat-card-alert { border: 2px solid var(--color-warning); }
.stat-icon { font-size: 28px; margin-bottom: 6px; }
.stat-value { font-family: var(--font-display); font-size: 32px; color: var(--color-primary); line-height: 1; }
.stat-label { font-size: 12px; color: var(--color-text-muted); margin-top: 4px; }
.stat-action { display: block; font-size: 12px; color: var(--color-accent); margin-top: 8px; font-weight: 700; }

.admin-actions { margin-bottom: 28px; }
.section-title { font-family: var(--font-display); font-size: 22px; color: var(--color-primary); margin-bottom: 14px; }
.action-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .action-cards { grid-template-columns: repeat(4, 1fr); } }

.action-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    transition: box-shadow .2s, transform .2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.action-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-2px); text-decoration: none; }
.action-icon { font-size: 32px; }
.action-label { font-weight: 700; font-size: 14px; }

.recent-scores { }
.matches-list-compact { background: var(--color-surface); border-radius: var(--radius-card); box-shadow: var(--shadow-card); }
.match-score-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--color-border); font-size: 14px; }
.match-score-row:last-child { border-bottom: none; }
.match-date { font-size: 12px; color: var(--color-text-muted); min-width: 70px; }
.match-teams-compact { font-size: 14px; }
.match-teams-compact strong { font-size: 16px; }

/* Tabs */
.tabs { display: flex; gap: 4px; margin-bottom: 20px; flex-wrap: wrap; }
.tab-btn {
    padding: 9px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-btn);
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all .2s;
}
.tab-btn.active, .tab-btn:hover { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.tab-count { display: inline-block; background: currentColor; color: var(--color-primary); padding: 2px 7px; border-radius: 20px; font-size: 11px; margin-left: 4px; }
.tab-btn.active .tab-count { background: rgba(255,255,255,.3); color: #fff; }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Tables */
.users-table-wrap { overflow-x: auto; }
.users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}
.users-table thead tr { background: var(--color-primary); color: #fff; }
.users-table th { padding: 12px 14px; text-align: left; font-weight: 700; }
.users-table td { padding: 11px 14px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.users-table tbody tr:last-child td { border-bottom: none; }
.users-table tbody tr:hover { background: var(--color-surface2); }

.action-cell { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.inline-form { display: inline-flex; align-items: center; gap: 4px; }

.role-badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.role-superadmin { background: #fef3c7; color: #92400e; }
.role-admin { background: #dbeafe; color: #1e40af; }
.role-participant { background: #f3f4f6; color: #374151; }
[data-theme="dark"] .role-superadmin { background: #451a03; color: #fbbf24; }
[data-theme="dark"] .role-admin { background: #1e3a5f; color: #93c5fd; }
[data-theme="dark"] .role-participant { background: #1f2937; color: #9ca3af; }

.badge-pending {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 20px; height: 20px;
    background: var(--color-error); color: #fff;
    border-radius: 50%; font-size: 11px; font-weight: 800;
    margin-left: 4px;
}
.badge-you { background: var(--color-primary); color: #fff; font-size: 11px; padding: 2px 7px; border-radius: 20px; font-weight: 700; }

.empty-state { text-align: center; padding: 40px; color: var(--color-text-muted); font-size: 14px; }
.empty-state span { font-size: 32px; display: block; margin-bottom: 8px; }

.search-bar { margin-bottom: 12px; }
.search-input { max-width: 360px; }

.select-sm { padding: 6px 10px; border-radius: var(--radius-input); border: 1.5px solid var(--color-border); background: var(--color-surface); color: var(--color-text); font-size: 13px; }

/* Admin match cards */
.admin-match-card {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-card);
    padding: 14px 16px;
    margin-bottom: 10px;
    border-left: 4px solid var(--color-border);
}
.match-scheduled { border-left-color: var(--color-warning); }
.match-finished  { border-left-color: var(--color-success); }
.match-status-badge { padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-scheduled { background: #fff8e1; color: #92400e; }
.badge-finished  { background: #d1fae5; color: #065f46; }
[data-theme="dark"] .badge-scheduled { background: #451a03; color: #fbbf24; }
[data-theme="dark"] .badge-finished  { background: #064e3b; color: #6ee7b7; }

.admin-match-body {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.team-display { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 100px; font-weight: 700; font-size: 14px; }

.score-form { display: flex; align-items: center; gap: 8px; }
.score-form-inline { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding: 8px; background: var(--color-surface2); border-radius: 8px; }
.score-inputs-admin { display: flex; align-items: center; gap: 6px; }
.score-input-admin {
    width: 56px; height: 48px;
    text-align: center;
    font-size: 20px; font-weight: 800;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-input);
    background: var(--color-surface);
    color: var(--color-text);
    font-family: var(--font-body);
    -moz-appearance: textfield;
}
.score-input-admin::-webkit-outer-spin-button,
.score-input-admin::-webkit-inner-spin-button { -webkit-appearance: none; }
.score-sep { font-size: 18px; font-weight: 800; color: var(--color-text-muted); }
.official-score { display: flex; align-items: center; }
.score-display-lg { font-family: var(--font-display); font-size: 28px; color: var(--color-primary); }

.score-edit-details summary { list-style: none; cursor: pointer; }
.score-edit-details summary::-webkit-details-marker { display: none; }

/* Settings */
.settings-form { max-width: 640px; }
.settings-section { background: var(--color-surface); border-radius: var(--radius-card); box-shadow: var(--shadow-card); padding: 24px; margin-bottom: 20px; }
.prize-percentages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.prize-preview-box { background: var(--color-surface2); border-radius: 8px; padding: 12px; font-size: 13px; margin-top: 12px; }
.input-prefix-wrap { display: flex; align-items: center; }
.input-prefix { background: var(--color-surface2); border: 1.5px solid var(--color-border); border-right: none; border-radius: var(--radius-input) 0 0 var(--radius-input); padding: 11px 12px; font-size: 15px; font-weight: 700; color: var(--color-text-muted); }
.input-prefix-wrap .form-input { border-radius: 0 var(--radius-input) var(--radius-input) 0; }
.form-actions { margin-top: 20px; }

.matches-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }

/* ── 18. Utilities ────────────────────────────────────────── */
.text-muted  { color: var(--color-text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }

/* ── 19. Placar Ao Vivo — elementos compartilhados ────────── */

/* Ponto pulsando vermelho */
.live-dot {
    display: inline-block;
    width: 10px; height: 10px;
    background: #e53e3e;
    border-radius: 50%;
    animation: livePulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}
.live-dot-sm { width: 8px; height: 8px; }

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(1.4); }
}

/* Badge status ao vivo (admin/matches) */
.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #c53030;
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.badge-live-inline {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #c53030;
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

/* Card de match in_progress no admin */
.admin-match-card.match-in_progress {
    border-left: 4px solid #e53e3e;
}

/* Formulário ao vivo (admin) */
.live-score-form { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.live-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.scheduled-actions { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.score-placeholder { font-family: var(--font-display); font-size: 24px; color: var(--color-text-muted); }

/* Botão "Iniciar Partida" */
.btn-live {
    background: #c53030;
    color: #fff;
    border: none;
    border-radius: var(--radius-btn);
    padding: 7px 14px;
    font-weight: 700;
    transition: background .2s;
}
.btn-live:hover { background: #9b2c2c; }

/* Botão accent (dourado) */
.btn-accent {
    background: var(--color-accent);
    color: var(--color-accent-text);
    border: none;
    border-radius: var(--radius-btn);
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    transition: background .2s;
}
.btn-accent:hover { background: #d4920a; }
.btn-outline {
    background: transparent;
    border: 2px solid var(--color-border);
    color: var(--color-text);
    border-radius: var(--radius-btn);
    padding: 9px 20px;
    font-size: 15px;
    transition: border-color .2s;
}
.btn-outline:hover { border-color: var(--color-text-muted); }

/* ── 20. Modal de confirmação do placar final ─────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.modal-overlay[hidden] { display: none; }
body.modal-open { overflow: hidden; }

.modal-box {
    background: var(--color-surface);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    padding: 28px 24px 24px;
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
}

.modal-score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-surface2);
    border-radius: 10px;
    padding: 16px;
    flex-wrap: wrap;
}
.modal-team  { font-weight: 700; font-size: 15px; }
.modal-score-num { font-family: var(--font-display); font-size: 36px; color: var(--color-primary); line-height: 1; }
.modal-score-sep { font-family: var(--font-display); font-size: 28px; color: var(--color-text-muted); }

.modal-warning {
    font-size: 13px;
    color: var(--color-text-muted);
    background: color-mix(in srgb, var(--color-warning) 10%, transparent);
    border: 1px solid color-mix(in srgb, var(--color-warning) 40%, transparent);
    border-radius: 8px;
    padding: 10px 12px;
}

.modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ── 21. Banner ao vivo no ranking ────────────────────────── */
.live-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #742a2a;
    color: #fff;
    border-radius: var(--radius-card);
    padding: 12px 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}
.live-banner-matches {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}
.live-match-item { white-space: nowrap; }
.live-match-item em { font-style: normal; opacity: .8; font-size: 12px; }
.live-match-clock {
    display: inline-block;
    background: rgba(255, 255, 255, .18);
    border-radius: 6px;
    padding: 1px 7px;
    margin-right: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
    vertical-align: middle;
}

.live-ranking-warning {
    font-size: 13px;
    color: var(--color-text-muted);
    background: color-mix(in srgb, #e53e3e 8%, transparent);
    border: 1px solid color-mix(in srgb, #e53e3e 25%, transparent);
    border-radius: 8px;
    padding: 9px 14px;
    margin-bottom: 16px;
}

/* ── 22. Card ao vivo no dashboard do participante ────────── */
.live-now-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.live-now-card {
    background: var(--color-surface);
    border: 2px solid #e53e3e;
    border-radius: var(--radius-card);
    padding: 16px 20px;
    box-shadow: 0 0 0 3px color-mix(in srgb, #e53e3e 15%, transparent);
    animation: liveBorderPulse 2s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@keyframes liveBorderPulse {
    0%, 100% { box-shadow: 0 0 0 3px color-mix(in srgb, #e53e3e 15%, transparent); }
    50%       { box-shadow: 0 0 0 6px color-mix(in srgb, #e53e3e 5%, transparent); }
}

.live-now-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #c53030;
}
.live-group { font-size: 12px; color: var(--color-text-muted); margin-left: 4px; }

.live-now-score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}
.live-team { font-weight: 700; font-size: 16px; }
.live-scoreboard { font-family: var(--font-display); font-size: 32px; color: var(--color-primary); }

.live-now-bet { font-size: 13px; color: var(--color-text-muted); text-align: center; }
.live-now-link { align-self: flex-start; }

/* ── 23. bets-view — placar ao vivo/parcial ───────────────── */
.score-live { color: #c53030; }
.pts-partial { font-style: normal; font-size: 10px; color: var(--color-text-muted); margin-left: 2px; }
