        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 0;
        }

        .stat-card {
            position: relative;
            min-height: 72px;
            padding: 8px 18px 8px 74px;
            border-radius: 0;
            background: transparent;
            border: 0;
            backdrop-filter: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-card + .stat-card {
            border-left: 1px solid rgba(24, 92, 46, 0.12);
        }

        .stat-card::before {
            content: "";
            position: absolute;
            left: 18px;
            top: 50%;
            width: 48px;
            height: 48px;
            transform: translateY(-50%);
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #1d7138;
            background: #e7f4df;
            box-shadow: inset 0 0 0 1px rgba(24, 92, 46, 0.08);
            font-size: 25px;
            font-weight: 900;
        }

        .stat-card:nth-child(1)::before {
            content: "✓";
        }

        .stat-card:nth-child(2)::before {
            content: "◒";
        }

        .stat-card:nth-child(3)::before {
            content: "◷";
            color: #1f82c5;
            background: #e1f2ff;
        }

        .stat-card:nth-child(4)::before {
            content: "";
            color: #e39c1b;
            background: #fff2d6;
        }

        .stat-card:nth-child(4)::after {
            content: "";
            position: absolute;
            left: 32px;
            top: 50%;
            width: 18px;
            height: 18px;
            transform: translateY(-50%);
            border: 3px solid #e39c1b;
            border-radius: 4px;
            background:
                linear-gradient(#e39c1b, #e39c1b) 0 5px / 100% 3px no-repeat,
                linear-gradient(#e39c1b, #e39c1b) 4px -2px / 3px 8px no-repeat,
                linear-gradient(#e39c1b, #e39c1b) 11px -2px / 3px 8px no-repeat;
        }

        .stat-card strong {
            display: block;
            font-size: clamp(24px, 2.1vw, 30px);
            line-height: 1;
            letter-spacing: 0;
            white-space: nowrap;
            word-break: keep-all;
            color: #154e2b;
        }

        #statsPageGrid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .stat-card span {
            display: block;
            order: -1;
            margin: 0 0 7px;
            color: #53685f;
            font-size: 14px;
            font-weight: 700;
        }

        .backup-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-top: 12px;
        }

        .backup-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            min-height: 48px;
            padding: 12px 18px;
            background: rgba(255, 255, 250, 0.88);
            border: 1px solid rgba(24, 92, 46, 0.14);
            box-shadow: 0 8px 18px rgba(38, 90, 54, 0.08);
            color: #24523a;
            font-weight: 800;
        }

        .backup-btn::before {
            display: inline-block;
            margin-right: 8px;
            font-size: 18px;
            line-height: 1;
        }

        .backup-btn[data-backup-action="export"]::before {
            content: "↥";
        }

        .backup-btn[data-backup-action="import"]::before {
            content: "↧";
        }

        .backup-btn[data-backup-action="reset"]::before {
            content: "";
            position: absolute;
            left: 20px;
            top: 50%;
            width: 15px;
            height: 16px;
            margin: 0;
            transform: translateY(-34%);
            border: 2px solid #d53a2d;
            border-top: 0;
            border-radius: 0 0 3px 3px;
            background:
                linear-gradient(#d53a2d, #d53a2d) 4px 3px / 2px 10px no-repeat,
                linear-gradient(#d53a2d, #d53a2d) 9px 3px / 2px 10px no-repeat;
        }

        .backup-btn[data-backup-action="reset"]::after {
            content: "";
            position: absolute;
            left: 18px;
            top: 16px;
            width: 21px;
            height: 7px;
            border-top: 2px solid #d53a2d;
            border-radius: 2px;
            box-shadow: 6px -3px 0 -1px #d53a2d;
        }

        .backup-btn.danger {
            color: #b83a2d;
            border-color: rgba(184, 58, 45, 0.18);
            padding-left: 46px;
        }
