﻿:root {
    --bg: #edf1f5;
    --bg-soft: #eef2f7;
    --card: #ffffff;
    --card-2: #f8fafc;
    --line: #d8e0ea;
    --line-soft: #e7edf4;
    --text: #1f2937;
    --sub: #64748b;
    --sub-2: #94a3b8;
    --brand: #64748b;
    --brand-dark: #475569;
    --brand-soft: #e8eef5;
    --accent: #0f172a;
    --hit: #dc2626;
    --hit-soft: #fff1f2;
    --good: #0f766e;
    --good-soft: #ecfeff;
    --shadow: 0 6px 18px rgba(15, 23, 42, .06);
    --radius: 4px;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--text);
    background: #edf1f5;
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    padding-top: 62px;
    padding-bottom: calc(86px + env(safe-area-inset-bottom));
}

.site-app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    width: 100%;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid rgba(229, 231, 235, .88);
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-app-header-inner {
    max-width: 730px;
    min-height: 62px;
    margin: 0 auto;
    padding: calc(env(safe-area-inset-top, 0px) + 10px) 12px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.site-app-logo {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}

.site-app-logo-box {
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: #e53935;
}

.site-app-logo-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.site-app-logo-text {
    min-width: 0;
    display: block;
}

.site-app-logo-text strong,
.site-app-logo-text small {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.site-app-logo-text strong {
    color: var(--text);
    font-size: 16px;
    line-height: 1.1;
    font-weight: 800;
}

.site-app-logo-text small {
    margin-top: 3px;
    color: var(--sub);
    font-size: 11px;
    line-height: 1.2;
}

.site-app-home-link {
    flex: 0 0 auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: var(--radius);
    border: 1px solid #d5e4ff;
    background: #eef5ff;
    color: var(--brand-dark);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.site-app-home-link:hover {
    background: #dbeafe;
}

.wrap {
    max-width: 730px;
    margin: 0 auto;
    padding: 10px 10px 16px;
}

.hero {
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    border: 1px solid #dbe4ee;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .07);
    margin-bottom: 10px;
}

.hero-inner {
    position: relative;
    padding: 10px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: #fff;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: rgba(255,255,255,.16);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.brand-icon svg {
    width: 22px;
    height: 22px;
}

.title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .2px;
}

.subtitle {
    margin-top: 3px;
    font-size: 11px;
    color: rgba(255,255,255,.82);
    line-height: 1.2;
}

.ghost {
    border-radius: 4px;
    padding: 8px 10px;
    border: 1px solid rgba(255,255,255,.26);
    background: rgba(255,255,255,.14);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-size: 13px;
}

.hero-home-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.hero-home-link:hover {
    color: #fff;
}

.ghost svg {
    width: 16px;
    height: 16px;
}

.filters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
    border-radius: var(--radius);
    border: 0;
    background: transparent;
    box-shadow: none;
}

@media (min-width: 720px) {
    .filters {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.fcard {
    position: relative;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #dbe4ee;
    padding: 10px 11px 10px 12px;
    cursor: pointer;
    user-select: none;
    min-width: 0;
    overflow: hidden;
    transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.fcard::before {
    content: "";
    position: absolute;
    top: 9px;
    bottom: 9px;
    left: 0;
    width: 2px;
    border-radius: 0 2px 2px 0;
    background: #cbd5e1;
}

.fcard:nth-child(1)::before {
    background: #dc2626;
}

.fcard:nth-child(2)::before {
    background: #0f766e;
}

.fcard:nth-child(3)::before {
    background: #475569;
}

.fcard:hover {
    background: #fff;
    border-color: #bfd0e4;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
}

.fhead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.fhead .k {
    font-size: 12px;
    font-weight: 700;
    color: var(--sub);
}

.fhead .edit {
    font-size: 11px;
    color: var(--brand-dark);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 6px;
    border-radius: var(--radius);
    background: #eef2f7;
}

.fhead .edit svg {
    width: 12px;
    height: 12px;
}

.fval {
    margin-top: 5px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.35;
    min-height: 18px;
    word-break: break-word;
    font-weight: 700;
}

.summary {
    margin-top: 8px;
    padding: 7px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    background: #f8fafc;
}

@media (max-width: 520px) {
    body {
        padding-top: 56px;
    }

    .site-app-header-inner {
        min-height: 56px;
        padding: calc(env(safe-area-inset-top, 0px) + 8px) 10px 8px;
    }

    .site-app-logo-box {
        width: 34px;
        height: 34px;
    }

    .site-app-logo-text strong {
        font-size: 15px;
    }

    .site-app-logo-text small {
        max-width: 180px;
    }

    .site-app-home-link {
        min-height: 32px;
        padding: 0 10px;
        font-size: 12px;
    }

    .summary {
        grid-template-columns: repeat(3, minmax(0,1fr));
    }
}

.sbox {
    border-radius: var(--radius);
    padding: 0 8px;
    min-width: 0;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.sbox + .sbox {
    border-left: 1px solid #e2e8f0;
}

.sbox .k {
    color: var(--sub);
    font-size: 11px;
    white-space: nowrap;
}

.sbox .v {
    margin-top: 0;
    font-size: 15px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: .2px;
    font-variant-numeric: tabular-nums;
}

.sbox:nth-child(1) .v {
    color: #b91c1c;
}

.sbox:nth-child(2) .v {
    color: #0f766e;
}

.sbox:nth-child(3) .v {
    color: #334155;
}

.resultCard {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.rhead {
    padding: 11px 12px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
    font-weight: 800;
    font-size: 13px;
    background: #f8fafc;
}

.rhead .muted {
    color: var(--sub);
    font-weight: 600;
    font-size: 12px;
}

.table {
    width: 100%;
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 11px;
    table-layout: fixed;
    background: #fff;
}

.table th,
.table td {
    padding: 8px 6px;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: top;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.table th {
    text-align: left;
    color: var(--sub);
    font-weight: 700;
    font-size: 11px;
    background: #f8fafc;
    position: sticky;
    top: 0;
    z-index: 2;
    line-height: 1.2;
}
.table td {
    color: var(--text);
}

.table td.col-date {
    font-variant-numeric: tabular-nums;
}

.table td.col-lottery {
    font-variant-numeric: tabular-nums;
}

.table td.col-teams {
    min-width:100px!important;
}

.table td.col-sp {
    font-variant-numeric: tabular-nums;
}

.table td.col-miss {
    font-variant-numeric: tabular-nums;
}

.yearRow td {
    padding: 0;
    border-bottom: 0;
    background: transparent;
}

.yearTag {
    position: sticky;
    left: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px 7px;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-dark);
    background: #f1f5f9;
    z-index: 1;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.yearTag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--brand);
    flex: 0 0 auto;
}

.row-hit {
    background: var(--hit-soft);
}

.row-hit td {
    border-bottom-color: #ffe4e6 !important;
}

.leagueBadge {
    display: inline-flex;
    align-items: flex-start;
    gap: 6px;
    white-space: normal;
    line-height: 1.3;
}

.leagueDot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex: 0 0 auto;
}

.teams {
    line-height: 1.35;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 7px;
    border-radius: 4px;
    border: 1px solid #d6dde7;
    background: #f8fafc;
    color: var(--sub);
    font-size: 11.5px;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
    margin-right: 5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.pill-hit {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #be123c;
}

.empty {
    padding: 16px 12px;
    text-align: center;
    color: var(--sub);
    display: none;
    font-size: 13px;
}

.sheetOverlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .24);
    display: none;
    z-index: 999;
}

.sheetOverlay.show {
    display: block;
}

.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px 4px 0 0;
    border-top: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 -10px 30px rgba(15, 23, 42, .12);
    transform: translateY(110%);
    transition: transform .22s ease;
    z-index: 1000;
    max-height: 86vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sheet.show {
    transform: translateY(0);
}

.sheetTop {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #f8fafc;
}

.grab {
    width: 42px;
    height: 4px;
    border-radius: 4px;
    background: #cbd5e1;
    margin: 2px auto 0;
}

.sheetTitle {
    font-weight: 800;
    font-size: 14px;
    color: var(--text);
}

.sheetClose {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--brand-dark);
    border-radius: 4px;
    padding: 7px 10px;
    font-weight: 700;
    cursor: pointer;
}

.sheetBody {
    padding: 10px 12px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #fff;
}

.section {
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--card);
    padding: 10px;
    margin-bottom: 10px;
}

.section h4 {
    margin: 0;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.section h4 small {
    color: var(--sub);
    font-weight: 600;
}

.chips {
    margin-top: 9px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.chip {
    user-select: none;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    line-height: 1;
    font-weight: 600;
}

.chip i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    flex: 0 0 auto;
}

.chip.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.chip.active i {
    background: #fff;
}

.tabs {
    margin-top: 9px;
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.tab {
    cursor: pointer;
    user-select: none;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 8px 10px;
    font-size: 12px;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.tab.active {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.letterIndex {
    position: sticky;
    top: 0;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding: 0 0 10px;
    background: #fff;
}

.letterBtn {
    min-width: 32px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid var(--line);
    background: #f8fafc;
    color: var(--sub);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
    font-size: 11px;
    font-weight: 700;
}

.letterBtn:hover {
    color: var(--brand-dark);
    border-color: #b8c4d3;
}

.letterGroup {
    scroll-margin-top: 50px;
}

.letterGroup + .letterGroup {
    margin-top: 10px;
}

.letterTitle {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-dark);
}

.letterTitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: var(--brand);
}

.sheetFooter {
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line-soft);
    display: flex;
    gap: 10px;
    background: #f8fafc;
}

.btn {
    flex: 1;
    min-width: 120px;
    border-radius: 4px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.btn.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.site-footer {
    margin-top: 18px;
    padding: 16px 12px 22px;
    text-align: center;
    font-size: 12px;
    color: var(--sub);
}

.footer-inner {
    max-width: 980px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    line-height: 1.8;
}

.footer-links a {
    color: var(--sub);
    text-decoration: none;
    padding: 2px 4px;
}

.footer-links a:hover {
    color: var(--text);
}

.footer-links .sep {
    opacity: .45;
}

.footer-meta {
    margin-top: 8px;
    line-height: 1.6;
}

.footer-meta .slogan {
    margin-top: 3px;
    font-size: 11px;
    opacity: .8;
}

.app-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 95;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(229, 231, 235, 0.95);
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.app-tabbar-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 6px 10px calc(6px + env(safe-area-inset-bottom, 0px));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
}

.app-tab {
    min-width: 0;
    min-height: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-radius: 4px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: background .16s ease, color .16s ease, transform .16s ease;
}

.app-tab svg {
    width: 23px;
    height: 23px;
    display: block;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.app-tab span {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.app-tab:hover,
.app-tab.active {
    color: var(--hit);
    background: var(--hit-soft);
}

#backToTop {
    position: fixed;
    right: 14px;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff;
    box-shadow: 0 8px 20px rgba(100, 116, 139, .24);
    font-size: 18px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 30;
}

#backToTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.simple-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(241, 245, 249, .72);
}

.loading-circle {
    width: 44px;
    height: 44px;
    border: 3px solid #dbe4ee;
    border-top: 3px solid var(--brand);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 720px) {
    .wrap {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-inner {
        padding: 10px;
    }

    .topbar {
        margin-bottom: 8px;
    }

    .title {
        font-size: 17px;
    }

    .subtitle {
        font-size: 10.5px;
    }

    .ghost {
        padding: 7px 9px;
        font-size: 12px;
    }

    .fcard {
        padding: 9px;
    }

    .summary {
        gap: 0;
        padding: 7px 0;
    }

    .sbox {
        padding: 0 6px;
    }

    .sbox .v {
        font-size: 15px;
    }

    .table {
/*        min-width: 700px;*/
        font-size: 11.5px;
    }

    .table th,
    .table td {
        padding: 8px 2px;
    }
    .letterBtn {
        min-width: 29px;
        height: 27px;
        font-size: 10.5px;
    }
}

/* footer compact mobile override */
@media (max-width: 640px) {
    .site-footer {
        padding: 12px 8px 16px;
    }

    .law-note {
        margin-bottom: 6px !important;
        font-size: 11px;
        line-height: 1.25;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .footer-inner {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 4px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        line-height: 1.4;
        padding-bottom: 1px;
    }

    .footer-links a,
    .footer-links .sep {
        flex: 0 0 auto;
    }

    .footer-links a {
        padding: 1px 2px;
        font-size: 11px;
    }

    .footer-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: nowrap;
        width: 100%;
        margin-top: 0;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        line-height: 1.3;
        font-size: 11px;
    }

    .footer-meta > div {
        flex: 0 0 auto;
    }

    .footer-meta .slogan {
        margin-top: 0;
        font-size: 10px;
    }

    .law-note::-webkit-scrollbar,
    .footer-links::-webkit-scrollbar,
    .footer-meta::-webkit-scrollbar {
        display: none;
    }

    .app-tabbar-inner {
        padding: 5px 6px calc(5px + env(safe-area-inset-bottom, 0px));
        gap: 2px;
    }

    .app-tab {
        min-height: 50px;
    }

    .login-footer {
        padding: 0 8px calc(env(safe-area-inset-bottom) + 14px);
    }

    .login-footer .footer-links {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 4px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        font-size: 11px;
        line-height: 1.4;
    }

    .login-footer .footer-links a,
    .login-footer .sep {
        flex: 0 0 auto;
    }

    .login-footer .footer-note {
        margin-top: 6px;
        font-size: 11px;
        line-height: 1.25;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .login-footer .footer-links::-webkit-scrollbar,
    .login-footer .footer-note::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 720px) {
    .wrap {
        padding: 8px 6px 12px;
    }

    .hero,
    .hero-inner,
    .panel,
    .card,
    .sheet,
    .toolbar {
        padding: 8px;
    }

    .hero-inner,
    .hero-top,
    .toolbar,
    .panel-head,
    .main,
    .chips,
    .actions {
        gap: 6px;
    }

    .sub,
    .desc,
    .money,
    .meta {
        font-size: 11px;
        line-height: 1.45;
    }
}


