.map-toolbar {
        display: flex;
        justify-content: space-between;
        gap: 16px;
        align-items: end;
        flex-wrap: wrap;
    }
    .view-switcher {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    .view-switcher button {
        border: 1px solid rgba(149, 177, 217, 0.18);
        background: rgba(255,255,255,0.03);
        color: var(--text);
        border-radius: 999px;
        padding: 10px 14px;
        font: inherit;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
    }
    .view-switcher button.active {
        color: #04111f;
        background: linear-gradient(135deg, var(--brand), #5ef1d0);
        border-color: transparent;
    }
    .map-board-wrap {
        overflow-x: auto;
    }
    .map-board {
        position: relative;
        width: 520px;
        height: 320px;
        margin: 0 auto;
    }
    .map-tile {
        position: absolute;
        width: 34px;
        height: 34px;
        border-radius: 10px;
        border: 1px solid rgba(255,255,255,0.14);
        color: #04111f;
        font-size: 12px;
        font-weight: 900;
        cursor: pointer;
        box-shadow: inset 0 -1px 0 rgba(255,255,255,0.18);
    }
    .map-tile.active {
        outline: 3px solid rgba(255,255,255,0.90);
        transform: translateY(-2px);
    }
    .map-tooltip {
        position: fixed;
        z-index: 20;
        display: none;
        min-width: 180px;
        padding: 12px 14px;
        border-radius: 16px;
        background: #081322;
        border: 1px solid rgba(149, 177, 217, 0.18);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.30);
    }
    .map-selected {
        margin-top: 18px;
        padding: 22px;
        border-radius: 22px;
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--line);
    }
    .map-selected-row,
    .state-top-grid,
    .state-action-row,
    .state-seo-grid {
        display: grid;
        gap: 16px;
    }
    .map-selected-row {
        grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
        align-items: start;
    }
    .state-action-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-top: 18px;
    }
    .state-action-row .button {
        justify-content: center;
    }
    .state-top-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .state-top-card {
        padding: 22px;
        border-radius: 22px;
        background: rgba(255,255,255,0.03);
        border: 1px solid var(--line);
    }
    .state-top-card ol {
        margin: 14px 0 0 18px;
        color: var(--muted);
    }
    .state-top-card li {
        margin-bottom: 10px;
    }
    .state-seo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .state-seo-grid .card p:last-child {
        margin-bottom: 0;
    }
    @media (max-width: 1120px) {
        .map-selected-row,
        .state-top-grid,
        .state-action-row,
        .state-seo-grid {
            grid-template-columns: 1fr;
        }
    }

