.jlcb-wrap,
.jlcb-admin-wrap,
.jlcb-wrap * {
    box-sizing: border-box;
}

.jlcb-site {
    --jlcb-bg: #f5f7fb;
    --jlcb-card: #ffffff;
    --jlcb-text: #101828;
    --jlcb-muted: #667085;
    --jlcb-line: #e5e7eb;
    --jlcb-primary: #0f766e;
    --jlcb-primary-dark: #115e59;
    --jlcb-accent: #f59e0b;
    --jlcb-soft: #ecfdf5;
    font-family: inherit;
    color: var(--jlcb-text);
}

.jlcb-site a {
    text-decoration: none;
}

.jlcb-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 18px 0;
}

.jlcb-card,
.jlcb-panel,
.jlcb-login-box,
.jlcb-match-card,
.jlcb-rules-wrap,
.jlcb-ranking-wrap,
.jlcb-games-wrap,
.jlcb-auth-card,
.jlcb-flow-card,
.jlcb-scoreboard-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 35px rgba(16,24,40,.06);
}

.jlcb-card strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
}

.jlcb-card span,
.jlcb-panel p,
.jlcb-flow-card p,
.jlcb-scoreboard-card p {
    color: #64748b;
}

.jlcb-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .8fr);
    gap: 18px;
    margin-top: 18px;
}

.jlcb-actions-row {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 16px 0;
}

.jlcb-actions-row form {
    margin: 0;
}

.jlcb-shortcodes code {
    display: inline-block;
    margin: 4px 8px 4px 0;
}

.jlcb-admin-wrap details summary {
    cursor: pointer;
    color: #2271b1;
}

.jlcb-danger-box {
    border: 1px solid #d63638;
    background: #fff5f5;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 10px;
}

.jlcb-danger-box ul {
    margin-left: 18px;
    list-style: disc;
}

.jlcb-message {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    padding: 13px 15px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.jlcb-message-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.jlcb-eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    max-width: 100%;
    border-radius: 999px;
    padding: 6px 10px;
    background: rgba(15,118,110,.10);
    color: #0f766e;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.jlcb-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, .8fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(24px, 4vw, 46px);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 15%, rgba(245,158,11,.20), transparent 30%),
        linear-gradient(135deg, #052e2b 0%, #0f766e 56%, #14b8a6 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

.jlcb-hero:after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    border: 44px solid rgba(255,255,255,.08);
}

.jlcb-hero-content,
.jlcb-hero-side {
    position: relative;
    z-index: 1;
}

.jlcb-brand-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 118px;
    min-height: 58px;
    padding: 12px 16px;
    margin-bottom: 18px;
    background: rgba(255,255,255,.96);
    border-radius: 16px;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.jlcb-brand-card img {
    display: block;
    max-width: min(220px, 60vw);
    max-height: 72px;
    object-fit: contain;
}

.jlcb-hero h1 {
    margin: 14px 0 12px;
    color: #fff;
    font-size: clamp(34px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.05em;
}

.jlcb-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.84);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.55;
}

.jlcb-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.jlcb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.jlcb-btn:hover {
    transform: translateY(-1px);
}

.jlcb-btn-primary {
    background: var(--jlcb-primary);
    color: #fff !important;
    box-shadow: 0 12px 24px rgba(15,118,110,.26);
}

.jlcb-hero .jlcb-btn-primary {
    background: #fff;
    color: #0f766e !important;
}

.jlcb-btn-secondary {
    background: rgba(255,255,255,.14);
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.30);
}

.jlcb-site:not(.jlcb-home) .jlcb-btn-secondary,
.jlcb-login-box .jlcb-btn-secondary {
    background: #f8fafc;
    color: #0f172a !important;
    border: 1px solid #e2e8f0;
}

.jlcb-demo-badge {
    display: inline-flex;
    margin-top: 16px;
    background: rgba(245,158,11,.18);
    border: 1px solid rgba(245,158,11,.35);
    color: #fffbeb;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 800;
    font-size: 13px;
}

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

.jlcb-scoreboard-card {
    background: rgba(255,255,255,.14);
    border-color: rgba(255,255,255,.22);
    color: #fff;
    backdrop-filter: blur(14px);
}

.jlcb-scoreboard-card span,
.jlcb-scoreboard-card p {
    color: rgba(255,255,255,.78);
}

.jlcb-scoreboard-card strong {
    display: block;
    margin: 8px 0;
    font-size: 42px;
    line-height: 1;
}

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

.jlcb-stat-grid div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    text-align: center;
    color: #fff;
}

.jlcb-stat-grid strong {
    display: block;
    font-size: 26px;
    line-height: 1;
}

.jlcb-stat-grid span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.76);
    font-size: 12px;
}

.jlcb-flow-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 22px 0;
}

.jlcb-flow-card span {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ecfdf5;
    color: #0f766e;
    font-weight: 900;
}

.jlcb-flow-card h3,
.jlcb-auth-card h3 {
    margin: 14px 0 8px;
    font-size: 22px;
}

.jlcb-home-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.jlcb-home-links a {
    padding: 11px 15px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-weight: 800;
}

.jlcb-access-intro,
.jlcb-section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 20px;
}

.jlcb-access-intro h2,
.jlcb-section-title h2,
.jlcb-dashboard-header h2 {
    margin: 12px 0 8px;
    font-size: clamp(28px, 3vw, 42px);
    letter-spacing: -.03em;
}

.jlcb-access-intro p,
.jlcb-section-title p,
.jlcb-dashboard-header p {
    color: var(--jlcb-muted);
}

.jlcb-access-grid {
    display: grid;
    grid-template-columns: minmax(280px, .85fr) minmax(320px, 1.15fr);
    gap: 18px;
    align-items: start;
}

.jlcb-auth-card {
    display: grid;
    gap: 12px;
}

.jlcb-auth-card-primary {
    border: 1px solid rgba(15,118,110,.25);
    box-shadow: 0 18px 45px rgba(15,118,110,.10);
}

.jlcb-auth-card label {
    display: grid;
    gap: 6px;
    color: #334155;
    font-weight: 700;
}

.jlcb-auth-card small {
    color: #64748b;
    font-weight: 500;
}

.jlcb-auth-card input[type="text"],
.jlcb-auth-card input[type="email"],
.jlcb-auth-card input[type="password"],
.jlcb-auth-card input[type="url"],
.jlcb-auth-card input[type="number"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    padding: 10px 12px;
    background: #fff;
}

.jlcb-form-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.jlcb-check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    flex-direction: row;
    gap: 8px !important;
    font-weight: 600 !important;
    color: #475569 !important;
}

.jlcb-check input {
    margin-top: 3px;
}

.jlcb-small-link {
    font-size: 13px;
    color: var(--jlcb-primary);
    font-weight: 700;
}

.jlcb-dashboard-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    border: 1px solid #ccfbf1;
}

.jlcb-user-score {
    min-width: 160px;
    padding: 18px;
    border-radius: 18px;
    background: #0f766e;
    color: #fff;
    text-align: center;
}

.jlcb-user-score span {
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 13px;
}

.jlcb-user-score strong {
    display: block;
    margin-top: 6px;
    font-size: 34px;
    line-height: 1;
}

.jlcb-panel-header {
    margin-bottom: 16px;
}

.jlcb-panel-header h2,
.jlcb-ranking-wrap h2,
.jlcb-games-wrap h2,
.jlcb-rules-wrap h2 {
    margin-top: 0;
}

.jlcb-match-list {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.jlcb-match-card {
    transition: transform .18s ease, box-shadow .18s ease;
}

.jlcb-match-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(16,24,40,.08);
}

.jlcb-match-card.is-locked {
    background: #f8fafc;
}

.jlcb-match-card.is-demo {
    border-left: 5px solid #f59e0b;
}

.jlcb-match-card.is-demo .jlcb-match-footer span:last-child {
    color: #92400e;
    font-weight: 800;
}

.jlcb-match-meta,
.jlcb-match-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: #64748b;
    font-size: 13px;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f8fafc;
}

.jlcb-match-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    margin: 14px 0;
}

.jlcb-match-line strong {
    font-size: clamp(15px, 2vw, 18px);
    word-break: break-word;
}

.jlcb-match-line strong:first-child {
    text-align: right;
}

.jlcb-score-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.jlcb-score-inputs input {
    width: 64px;
    text-align: center;
    padding: 9px;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    font-weight: 800;
}

.jlcb-prediction-readonly {
    display: inline-flex;
    min-width: 82px;
    justify-content: center;
    padding: 9px 12px;
    border-radius: 12px;
    background: #e2e8f0;
    font-weight: 800;
}

.jlcb-empty-state {
    text-align: center;
    padding: 34px 18px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
}

.jlcb-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}

.jlcb-table th,
.jlcb-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 13px 14px;
    text-align: left;
    vertical-align: middle;
}

.jlcb-table th {
    background: #f8fafc;
    font-weight: 800;
    color: #344054;
}

.jlcb-table tr:last-child td {
    border-bottom: 0;
}

.jlcb-submit {
    border-radius: 999px !important;
    padding: 8px 20px !important;
    min-height: 44px !important;
    font-weight: 800 !important;
    background: #0f766e !important;
    border-color: #0f766e !important;
}

.jlcb-rules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 18px 0;
}

.jlcb-rules-grid div {
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #f8fafc;
}

.jlcb-rules-grid strong {
    display: block;
    font-size: 28px;
    color: #0f766e;
}

.jlcb-rules-grid span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 13px;
}

.jlcb-login-box {
    text-align: center;
}

@media (max-width: 980px) {
    .jlcb-cards,
    .jlcb-grid,
    .jlcb-hero,
    .jlcb-access-grid,
    .jlcb-flow-grid,
    .jlcb-rules-grid,
    .jlcb-dashboard-header {
        grid-template-columns: 1fr;
    }

    .jlcb-dashboard-header {
        text-align: center;
    }

    .jlcb-user-score {
        width: 100%;
    }
}

@media (max-width: 680px) {
    .jlcb-hero {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .jlcb-hero-actions,
    .jlcb-home-links {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jlcb-btn {
        width: 100%;
    }

    .jlcb-stat-grid,
    .jlcb-form-two {
        grid-template-columns: 1fr;
    }

    .jlcb-match-line {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .jlcb-match-line strong:first-child {
        text-align: center;
    }

    .jlcb-score-inputs {
        justify-content: center;
    }

    .jlcb-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .jlcb-auth-card,
    .jlcb-match-card,
    .jlcb-ranking-wrap,
    .jlcb-games-wrap,
    .jlcb-rules-wrap {
        padding: 16px;
        border-radius: 16px;
    }
}

.jlcb-autosave-hint {
    margin-top: 8px;
    font-size: 13px;
    color: #0f766e;
}

.jlcb-match-card.is-saving {
    opacity: .88;
}

.jlcb-match-footer {
    justify-content: space-between;
    align-items: center;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.jlcb-save-status {
    min-width: 84px;
    justify-content: center;
    font-weight: 800;
}

.jlcb-save-status.is-saving {
    color: #92400e;
    background: #fffbeb;
}

.jlcb-save-status.is-saved {
    color: #065f46;
    background: #ecfdf5;
}

.jlcb-save-status.is-error {
    color: #991b1b;
    background: #fef2f2;
}

.jlcb-save-status.is-muted {
    color: #475569;
    background: #f8fafc;
}

.jlcb-clear-prediction {
    min-height: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 5px 10px;
    background: #fff;
    color: #334155;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
}

.jlcb-clear-prediction:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.jlcb-pred-input:focus {
    outline: 0;
    border-color: #0f766e;
    box-shadow: 0 0 0 3px rgba(15,118,110,.14);
}

@media (max-width: 720px) {
    .jlcb-match-footer,
    .jlcb-match-footer-info,
    .jlcb-match-actions {
        justify-content: center;
    }

    .jlcb-save-status,
    .jlcb-clear-prediction {
        width: auto;
    }
}

/* v1.0.7 — modo independente do Elementor, menu interno e UX compacta */
.jlcb-page .entry-title,
.jlcb-page .page-title,
.jlcb-page .wp-block-post-title,
.jlcb-page .elementor-page-title,
.jlcb-page .page-header,
.jlcb-page .entry-header {
    display: none !important;
}

.jlcb-page .site-main,
.jlcb-page main.site-main,
.jlcb-page .page-content,
.jlcb-page .entry-content {
    width: 100% !important;
    max-width: none !important;
}

.jlcb-page .entry-content > .jlcb-wrap,
.jlcb-wrap.jlcb-site {
    width: min(1180px, calc(100% - 28px));
    margin-left: auto;
    margin-right: auto;
}

.jlcb-topnav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    margin: 0 0 18px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 10px 30px rgba(16,24,40,.05);
}

.jlcb-topnav-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 42px;
    padding: 6px 8px;
    border-radius: 13px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 900;
}

.jlcb-topnav-brand img {
    display: block;
    max-width: 132px;
    max-height: 38px;
    object-fit: contain;
}

.jlcb-topnav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.jlcb-topnav-links::-webkit-scrollbar {
    display: none;
}

.jlcb-topnav-links a,
.jlcb-topnav-action a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 999px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.jlcb-topnav-links a.is-active {
    background: #ecfdf5;
    color: #0f766e;
}

.jlcb-topnav-action {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
}

.jlcb-topnav-action .jlcb-nav-cta {
    background: #0f766e;
    color: #fff !important;
}

.jlcb-topnav-action .jlcb-nav-logout {
    background: #f8fafc;
    color: #64748b !important;
    border: 1px solid #e2e8f0;
}

.jlcb-panel-wrap .jlcb-dashboard-header {
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 18px;
}

.jlcb-panel-wrap .jlcb-dashboard-header h2 {
    margin: 8px 0 4px;
    font-size: clamp(24px, 3vw, 34px);
}

.jlcb-panel-wrap .jlcb-dashboard-header p {
    margin: 4px 0;
    font-size: 14px;
    line-height: 1.35;
}

.jlcb-panel-wrap .jlcb-user-score {
    min-width: 132px;
    padding: 12px;
    border-radius: 16px;
}

.jlcb-panel-wrap .jlcb-user-score strong {
    font-size: 26px;
}

.jlcb-match-list {
    gap: 8px;
}

.jlcb-match-card {
    padding: 10px 12px !important;
    border-radius: 14px !important;
    box-shadow: 0 6px 18px rgba(16,24,40,.04) !important;
}

.jlcb-match-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(16,24,40,.07) !important;
}

.jlcb-match-card.is-demo {
    border-left-width: 3px;
}

.jlcb-match-meta,
.jlcb-match-footer {
    gap: 6px;
    font-size: 11px;
    line-height: 1.2;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    min-height: 20px;
    padding: 2px 7px;
}

.jlcb-match-line {
    grid-template-columns: minmax(90px, 1fr) auto minmax(90px, 1fr);
    gap: 8px;
    margin: 8px 0;
}

.jlcb-match-line strong {
    font-size: 14px;
    line-height: 1.15;
}

.jlcb-score-inputs {
    gap: 5px;
}

.jlcb-score-inputs input {
    width: 44px;
    min-height: 38px;
    padding: 5px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1;
}

.jlcb-score-inputs span {
    font-size: 13px;
    color: #64748b;
    font-weight: 900;
}

.jlcb-match-footer {
    margin-top: 2px;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    gap: 5px;
}

.jlcb-save-status {
    min-width: 64px;
    font-size: 11px;
    min-height: 24px !important;
}

.jlcb-clear-prediction {
    min-height: 24px;
    padding: 3px 8px;
    font-size: 11px;
}

.jlcb-autosave-hint {
    font-size: 12px;
}

.jlcb-pred-input::placeholder {
    color: #94a3b8;
}

@media (max-width: 760px) {
    .jlcb-page .entry-content > .jlcb-wrap,
    .jlcb-wrap.jlcb-site {
        width: min(100% - 18px, 1180px);
    }

    .jlcb-topnav {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 8px;
        border-radius: 16px;
    }

    .jlcb-topnav-brand {
        justify-self: center;
    }

    .jlcb-topnav-links {
        justify-content: flex-start;
        padding-bottom: 2px;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 12px;
    }

    .jlcb-topnav-action {
        justify-content: center;
    }

    .jlcb-panel-wrap .jlcb-dashboard-header {
        text-align: left;
        padding: 12px;
    }

    .jlcb-panel-wrap .jlcb-user-score {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .jlcb-panel-wrap .jlcb-user-score strong {
        margin: 0;
        font-size: 24px;
    }

    .jlcb-match-card {
        padding: 9px 10px !important;
    }

    .jlcb-match-meta {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1px;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 6px;
        text-align: initial;
    }

    .jlcb-match-line strong {
        font-size: 12px;
    }

    .jlcb-match-line strong:first-child {
        text-align: right;
    }

    .jlcb-score-inputs input {
        width: 39px;
        min-height: 36px;
        font-size: 15px;
    }

    .jlcb-match-footer,
    .jlcb-match-footer-info,
    .jlcb-match-actions {
        justify-content: flex-start;
    }

    .jlcb-match-footer {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .jlcb-match-line {
        grid-template-columns: minmax(0, .95fr) auto minmax(0, .95fr);
    }

    .jlcb-score-inputs input {
        width: 36px;
    }

    .jlcb-match-footer {
        grid-template-columns: 1fr;
    }
}

/* v1.0.8 — template próprio, menu responsivo e UX compacta sem Elementor */
html body.jlcb-template-clean {
    margin: 0 !important;
    background: #f4f7fb !important;
    color: #0f172a;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.jlcb-template-clean.admin-bar .jlcb-topnav {
    top: 44px;
}

.jlcb-app-shell {
    width: 100%;
    min-height: 100vh;
    padding: 18px 14px 42px;
    box-sizing: border-box;
}

body.jlcb-page .entry-title,
body.jlcb-page .page-title,
body.jlcb-page h1.entry-title,
body.jlcb-page .wp-block-post-title,
body.jlcb-page .elementor-page-title,
body.jlcb-page header.page-header,
body.jlcb-page .entry-header,
body.jlcb-page .page-header {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.jlcb-page .site-main,
body.jlcb-page main.site-main,
body.jlcb-page .page-content,
body.jlcb-page .entry-content,
body.jlcb-page .hentry,
body.jlcb-page article.page {
    max-width: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body.jlcb-page .entry-content > *:first-child,
body.jlcb-template-clean .jlcb-wrap:first-child {
    margin-top: 0 !important;
}

body.jlcb-template-clean .jlcb-wrap.jlcb-site,
body.jlcb-page .entry-content > .jlcb-wrap,
.jlcb-wrap.jlcb-site {
    width: min(1160px, calc(100% - 8px)) !important;
    margin: 0 auto !important;
    box-sizing: border-box;
}

.jlcb-topnav,
body.jlcb-page .jlcb-topnav {
    position: sticky;
    top: 12px;
    z-index: 50;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 0 14px !important;
    padding: 8px !important;
    border: 1px solid rgba(226, 232, 240, .95) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, .10) !important;
    backdrop-filter: blur(14px);
}

.jlcb-topnav a {
    text-decoration: none !important;
}

.jlcb-topnav-head {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.jlcb-topnav-brand,
body.jlcb-page .jlcb-topnav-brand {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 46px !important;
    min-height: 38px !important;
    max-width: 190px;
    padding: 5px 10px !important;
    border-radius: 17px !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    font-weight: 900 !important;
    letter-spacing: -.02em;
    overflow: hidden;
}

.jlcb-topnav-brand img {
    max-width: 146px !important;
    max-height: 34px !important;
    object-fit: contain;
}

.jlcb-topnav-links,
body.jlcb-page .jlcb-topnav-links {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    flex: 1 1 auto;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.jlcb-topnav-links::-webkit-scrollbar {
    display: none;
}

.jlcb-topnav-links a,
.jlcb-topnav-action a,
body.jlcb-page .jlcb-topnav-links a,
body.jlcb-page .jlcb-topnav-action a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 36px !important;
    padding: 8px 12px !important;
    border-radius: 999px !important;
    color: #334155 !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.jlcb-topnav-links a:hover,
.jlcb-topnav-action a:hover {
    background: #f1f5f9 !important;
    color: #0f766e !important;
    transform: translateY(-1px);
}

.jlcb-topnav-links a.is-active,
body.jlcb-page .jlcb-topnav-links a.is-active {
    background: linear-gradient(135deg, #0f766e, #14b8a6) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 118, 110, .24);
}

.jlcb-topnav-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex: 0 0 auto;
}

.jlcb-topnav-action .jlcb-nav-cta,
body.jlcb-page .jlcb-topnav-action .jlcb-nav-cta {
    background: #0f766e !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(15, 118, 110, .22);
}

.jlcb-topnav-action .jlcb-nav-logout,
body.jlcb-page .jlcb-topnav-action .jlcb-nav-logout {
    background: #f8fafc !important;
    color: #64748b !important;
    border: 1px solid #e2e8f0 !important;
}

.jlcb-topnav-toggle {
    display: none;
    width: 39px;
    height: 39px;
    border: 0;
    border-radius: 14px;
    background: #0f766e;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
}

.jlcb-topnav-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
}

.jlcb-hero {
    min-height: auto !important;
    padding: clamp(28px, 5vw, 56px) !important;
    border-radius: 28px !important;
}

.jlcb-brand-card {
    width: 120px !important;
    height: 76px !important;
}

.jlcb-hero h1 {
    font-size: clamp(38px, 6vw, 68px) !important;
    line-height: .98 !important;
}

.jlcb-panel-wrap .jlcb-dashboard-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    padding: 12px 14px !important;
    margin-bottom: 10px !important;
    border-radius: 18px !important;
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06) !important;
}

.jlcb-panel-wrap .jlcb-dashboard-header h2 {
    margin: 4px 0 3px !important;
    font-size: clamp(22px, 3vw, 31px) !important;
    letter-spacing: -.04em;
}

.jlcb-panel-wrap .jlcb-dashboard-header p {
    margin: 2px 0 !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
    color: #64748b;
}

.jlcb-panel-wrap .jlcb-user-score {
    min-width: 118px !important;
    padding: 10px 12px !important;
    border-radius: 16px !important;
}

.jlcb-panel-wrap .jlcb-user-score strong {
    font-size: 24px !important;
}

.jlcb-match-list {
    display: grid !important;
    gap: 7px !important;
}

.jlcb-match-card {
    padding: 8px 10px !important;
    border-radius: 14px !important;
    border: 1px solid #e2e8f0 !important;
    background: #fff !important;
    box-shadow: 0 7px 18px rgba(15, 23, 42, .045) !important;
}

.jlcb-match-card:hover {
    transform: none !important;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .07) !important;
}

.jlcb-match-meta {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
    color: #64748b;
}

.jlcb-match-meta span,
.jlcb-match-footer span {
    min-height: 18px !important;
    padding: 2px 6px !important;
    border-radius: 999px !important;
    background: #f8fafc !important;
}

.jlcb-match-line {
    display: grid !important;
    grid-template-columns: minmax(100px, 1fr) auto minmax(100px, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 6px 0 !important;
}

.jlcb-match-line strong {
    font-size: 13.5px !important;
    line-height: 1.15 !important;
    letter-spacing: -.01em;
}

.jlcb-match-line strong:first-child {
    text-align: right;
}

.jlcb-match-line strong:last-child {
    text-align: left;
}

.jlcb-score-inputs {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 4px !important;
    padding: 3px 5px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
}

.jlcb-score-inputs input,
.jlcb-score-inputs .jlcb-pred-input {
    width: 38px !important;
    min-height: 34px !important;
    height: 34px !important;
    padding: 3px !important;
    border-radius: 10px !important;
    font-size: 16px !important;
    line-height: 1 !important;
    background: #fff !important;
    text-align: center !important;
    appearance: textfield;
    -moz-appearance: textfield;
}

.jlcb-score-inputs input::-webkit-inner-spin-button,
.jlcb-score-inputs input::-webkit-outer-spin-button {
    opacity: 1;
}

.jlcb-score-inputs input::placeholder {
    color: transparent !important;
}

.jlcb-score-inputs > span {
    min-width: 10px;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.jlcb-match-footer {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 6px !important;
    margin-top: 2px !important;
    font-size: 10.5px !important;
    line-height: 1.15 !important;
}

.jlcb-match-footer-info,
.jlcb-match-actions {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px !important;
}

.jlcb-save-status {
    min-width: 0 !important;
    min-height: 22px !important;
    padding: 3px 7px !important;
    font-size: 10.5px !important;
    border-radius: 999px !important;
}

.jlcb-clear-prediction {
    min-height: 22px !important;
    padding: 3px 8px !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
}

@media (max-width: 780px) {
    .jlcb-app-shell {
        padding: 10px 8px 28px;
    }

    body.jlcb-template-clean.admin-bar .jlcb-topnav {
        top: 46px;
    }

    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 7px !important;
        top: 8px;
        padding: 7px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head {
        width: 100%;
        justify-content: space-between;
    }

    .jlcb-topnav-toggle {
        display: inline-flex !important;
    }

    .jlcb-topnav-links,
    .jlcb-topnav-action {
        display: none !important;
    }

    .jlcb-topnav.is-open .jlcb-topnav-links,
    .jlcb-topnav.is-open .jlcb-topnav-action {
        display: flex !important;
    }

    .jlcb-topnav.is-open .jlcb-topnav-links {
        justify-content: flex-start !important;
        overflow-x: auto;
        padding: 2px 0 1px;
    }

    .jlcb-topnav.is-open .jlcb-topnav-action {
        justify-content: flex-start !important;
        border-top: 1px solid #e2e8f0;
        padding-top: 7px;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .jlcb-hero {
        padding: 24px 18px !important;
        border-radius: 22px !important;
    }

    .jlcb-panel-wrap .jlcb-dashboard-header {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 9px !important;
        padding: 11px !important;
    }

    .jlcb-panel-wrap .jlcb-user-score {
        width: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .jlcb-match-card {
        padding: 8px !important;
        border-radius: 13px !important;
    }

    .jlcb-match-meta {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .jlcb-match-meta::-webkit-scrollbar {
        display: none;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
        gap: 5px !important;
        margin: 6px 0 !important;
    }

    .jlcb-match-line strong {
        font-size: 12px !important;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .jlcb-score-inputs {
        gap: 3px !important;
        padding: 2px 4px !important;
        border-radius: 12px !important;
    }

    .jlcb-score-inputs input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 34px !important;
        min-height: 32px !important;
        height: 32px !important;
        font-size: 15px !important;
    }

    .jlcb-match-footer {
        display: grid !important;
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .jlcb-match-footer-info {
        overflow: hidden;
    }
}

@media (max-width: 430px) {
    body.jlcb-template-clean .jlcb-wrap.jlcb-site,
    .jlcb-wrap.jlcb-site {
        width: 100% !important;
    }

    .jlcb-match-line {
        grid-template-columns: minmax(0, .9fr) auto minmax(0, .9fr) !important;
    }

    .jlcb-match-line strong {
        font-size: 11.5px !important;
    }

    .jlcb-score-inputs input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 32px !important;
    }

    .jlcb-match-footer {
        grid-template-columns: 1fr !important;
        gap: 5px !important;
    }

    .jlcb-match-actions {
        justify-content: flex-start !important;
    }
}

/* v1.0.9 - controles de placar mais claros e salvamento com validação */
.jlcb-score-inputs {
    gap: 6px !important;
    padding: 4px 6px !important;
    background: #f8fafc !important;
}

.jlcb-score-control {
    display: inline-grid !important;
    grid-template-columns: 22px 42px 22px !important;
    align-items: center !important;
    gap: 3px !important;
    padding: 2px !important;
    border: 1px solid #dbe5f0 !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.7) !important;
}

.jlcb-score-step {
    width: 22px !important;
    height: 28px !important;
    min-width: 22px !important;
    min-height: 28px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: #eef4f8 !important;
    color: #0f766e !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    appearance: none !important;
}

.jlcb-score-step:hover,
.jlcb-score-step:focus {
    background: #dff7f0 !important;
    color: #075e55 !important;
    outline: none !important;
}

.jlcb-score-inputs input,
.jlcb-score-inputs .jlcb-pred-input,
.jlcb-score-control .jlcb-pred-input {
    width: 42px !important;
    height: 32px !important;
    min-height: 32px !important;
    border: 0 !important;
    background: #ffffff !important;
    box-shadow: none !important;
    color: #0f172a !important;
    font-weight: 900 !important;
    text-align: center !important;
}

.jlcb-score-inputs input:focus,
.jlcb-score-inputs .jlcb-pred-input:focus,
.jlcb-score-control .jlcb-pred-input:focus {
    outline: 2px solid rgba(15,118,110,.25) !important;
    outline-offset: 1px !important;
}

.jlcb-score-inputs input::-webkit-inner-spin-button,
.jlcb-score-inputs input::-webkit-outer-spin-button {
    display: none !important;
    opacity: 0 !important;
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.jlcb-score-inputs input[type=number] {
    appearance: textfield !important;
    -moz-appearance: textfield !important;
}

.jlcb-score-separator,
.jlcb-score-inputs > .jlcb-score-separator {
    min-width: 10px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.jlcb-save-status.is-error {
    padding: 4px 7px !important;
    border-radius: 999px !important;
    white-space: normal !important;
    text-align: right !important;
}

@media (max-width: 640px) {
    .jlcb-score-inputs {
        gap: 4px !important;
        padding: 3px 4px !important;
    }

    .jlcb-score-control {
        grid-template-columns: 20px 36px 20px !important;
        gap: 2px !important;
        border-radius: 12px !important;
    }

    .jlcb-score-step {
        width: 20px !important;
        height: 26px !important;
        min-width: 20px !important;
        min-height: 26px !important;
        font-size: 15px !important;
    }

    .jlcb-score-control .jlcb-pred-input,
    .jlcb-score-inputs .jlcb-pred-input {
        width: 36px !important;
        height: 30px !important;
        min-height: 30px !important;
        font-size: 15px !important;
    }

    .jlcb-save-status.is-error {
        text-align: left !important;
        width: 100% !important;
    }
}

/* v1.0.10 - Ajustes de logo e menu sem Elementor */
.jlcb-topnav,
body.jlcb-page .jlcb-topnav {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 8px !important;
}

.jlcb-topnav-head {
    flex: 0 1 auto !important;
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
}

.jlcb-topnav-toggle {
    display: none !important;
    visibility: hidden !important;
}

.jlcb-topnav-brand,
body.jlcb-page .jlcb-topnav-brand {
    flex: 0 1 auto !important;
    width: auto !important;
    min-width: 72px !important;
    max-width: 160px !important;
    height: 42px !important;
    min-height: 42px !important;
    padding: 6px 12px !important;
    overflow: hidden !important;
}

.jlcb-topnav-brand img,
body.jlcb-page .jlcb-topnav-brand img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 30px !important;
    object-fit: contain !important;
}

.jlcb-topnav-links,
body.jlcb-page .jlcb-topnav-links {
    display: flex !important;
    flex: 1 1 360px !important;
    min-width: 0 !important;
    justify-content: center !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}

.jlcb-topnav-action,
body.jlcb-page .jlcb-topnav-action {
    display: flex !important;
    flex: 0 0 auto !important;
    margin-left: auto !important;
}

.jlcb-brand-card,
body.jlcb-page .jlcb-brand-card {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 112px !important;
    min-height: 64px !important;
    max-width: 190px !important;
    padding: 10px 12px !important;
    overflow: hidden !important;
}

.jlcb-brand-card img,
body.jlcb-page .jlcb-brand-card img {
    display: block !important;
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

@media (max-width: 720px) {
    .jlcb-topnav,
    body.jlcb-page .jlcb-topnav {
        position: sticky !important;
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px !important;
        padding: 8px !important;
        border-radius: 18px !important;
    }

    .jlcb-topnav-head {
        width: auto !important;
        flex: 0 1 auto !important;
    }

    .jlcb-topnav-brand,
    body.jlcb-page .jlcb-topnav-brand {
        max-width: 135px !important;
        height: 40px !important;
        min-height: 40px !important;
        padding: 5px 10px !important;
    }

    .jlcb-topnav-brand img,
    body.jlcb-page .jlcb-topnav-brand img {
        max-height: 28px !important;
    }

    .jlcb-topnav-action,
    body.jlcb-page .jlcb-topnav-action {
        order: 2 !important;
        margin-left: auto !important;
        padding-top: 0 !important;
        border-top: 0 !important;
        display: flex !important;
    }

    .jlcb-topnav-links,
    body.jlcb-page .jlcb-topnav-links {
        order: 3 !important;
        flex: 0 0 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        padding: 2px 0 0 !important;
        gap: 5px !important;
    }

    .jlcb-topnav-links a,
    .jlcb-topnav-action a,
    body.jlcb-page .jlcb-topnav-links a,
    body.jlcb-page .jlcb-topnav-action a {
        min-height: 34px !important;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .jlcb-brand-card,
    body.jlcb-page .jlcb-brand-card {
        min-width: 96px !important;
        min-height: 52px !important;
        max-width: 150px !important;
        padding: 9px 10px !important;
        margin-bottom: 14px !important;
    }

    .jlcb-brand-card img,
    body.jlcb-page .jlcb-brand-card img {
        max-height: 42px !important;
    }

    .jlcb-hero h1 {
        font-size: clamp(34px, 12vw, 42px) !important;
        letter-spacing: -.045em !important;
    }
}

/* v1.0.11 - refinamento da home e controles de placar mais clean */
.jlcb-hero .jlcb-eyebrow,
body.jlcb-page .jlcb-hero .jlcb-eyebrow {
    color: #ffffff !important;
    background: rgba(255,255,255,.16) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: none !important;
}

.jlcb-title-kicker,
body.jlcb-page .jlcb-title-kicker {
    display: block !important;
    margin: 20px 0 2px !important;
    color: rgba(255,255,255,.9) !important;
    font-size: clamp(18px, 2vw, 24px) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
}

.jlcb-hero h1.jlcb-hero-title-compact,
body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
    margin-top: 0 !important;
    max-width: 100% !important;
    font-size: clamp(48px, 5.8vw, 86px) !important;
    line-height: .95 !important;
    letter-spacing: -.06em !important;
}

@media (min-width: 960px) {
    .jlcb-hero h1.jlcb-hero-title-compact,
    body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
        white-space: nowrap !important;
        font-size: clamp(50px, 5.2vw, 72px) !important;
    }
}

/* Remove caixas externas dos placares: ficam apenas botões e campo */
.jlcb-score-inputs,
body.jlcb-page .jlcb-score-inputs {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 8px !important;
}

.jlcb-score-control,
body.jlcb-page .jlcb-score-control {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

.jlcb-score-step,
body.jlcb-page .jlcb-score-step {
    width: 26px !important;
    height: 30px !important;
    min-width: 26px !important;
    min-height: 30px !important;
    border: 1px solid #d7e6ef !important;
    border-radius: 10px !important;
    background: #eff9f7 !important;
    color: #00796f !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    cursor: pointer !important;
    touch-action: manipulation !important;
    user-select: none !important;
    -webkit-user-select: none !important;
}

.jlcb-score-step:hover,
.jlcb-score-step:focus,
body.jlcb-page .jlcb-score-step:hover,
body.jlcb-page .jlcb-score-step:focus {
    background: #d9f7ef !important;
    border-color: #9bdccc !important;
    color: #055f56 !important;
    outline: none !important;
}

.jlcb-score-control .jlcb-pred-input,
.jlcb-score-inputs .jlcb-pred-input,
body.jlcb-page .jlcb-score-control .jlcb-pred-input,
body.jlcb-page .jlcb-score-inputs .jlcb-pred-input {
    width: 38px !important;
    height: 32px !important;
    min-height: 32px !important;
    padding: 0 !important;
    border: 1px solid #b9c9d7 !important;
    border-radius: 10px !important;
    background: #ffffff !important;
    color: #0f172a !important;
    font-size: 15px !important;
    font-weight: 900 !important;
    line-height: 32px !important;
    text-align: center !important;
    box-shadow: none !important;
    appearance: none !important;
    -moz-appearance: textfield !important;
}

.jlcb-score-control .jlcb-pred-input:focus,
.jlcb-score-inputs .jlcb-pred-input:focus,
body.jlcb-page .jlcb-score-control .jlcb-pred-input:focus,
body.jlcb-page .jlcb-score-inputs .jlcb-pred-input:focus {
    border-color: #0f766e !important;
    outline: 3px solid rgba(15,118,110,.16) !important;
    outline-offset: 0 !important;
}

.jlcb-score-separator,
body.jlcb-page .jlcb-score-separator {
    min-width: 10px !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 32px !important;
}

@media (max-width: 640px) {
    .jlcb-title-kicker,
    body.jlcb-page .jlcb-title-kicker {
        margin-top: 16px !important;
        font-size: 18px !important;
    }

    .jlcb-hero h1.jlcb-hero-title-compact,
    body.jlcb-page .jlcb-hero h1.jlcb-hero-title-compact {
        font-size: clamp(36px, 12vw, 46px) !important;
        line-height: .98 !important;
        white-space: normal !important;
    }

    .jlcb-score-inputs,
    body.jlcb-page .jlcb-score-inputs {
        gap: 5px !important;
    }

    .jlcb-score-step,
    body.jlcb-page .jlcb-score-step {
        width: 24px !important;
        height: 28px !important;
        min-width: 24px !important;
        min-height: 28px !important;
        font-size: 15px !important;
    }

    .jlcb-score-control .jlcb-pred-input,
    .jlcb-score-inputs .jlcb-pred-input,
    body.jlcb-page .jlcb-score-control .jlcb-pred-input,
    body.jlcb-page .jlcb-score-inputs .jlcb-pred-input {
        width: 34px !important;
        height: 30px !important;
        min-height: 30px !important;
        font-size: 14px !important;
        line-height: 30px !important;
    }
}
