/* /Components/ClickArea.razor.rz.scp.css */
.game-area[b-sclre2thge] {
    position: relative;
}
/* /Components/ContractsMenu.razor.rz.scp.css */
.contracts-empty[b-1i7xzwatsh] {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

    .contracts-empty > img[b-1i7xzwatsh] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }

.contracts-layout[b-1i7xzwatsh] {
    display: grid;
    grid-template-rows: 30px 1fr;
    grid-template-areas:
        "contract-cap"
        "contract-levels";
    gap: 1px;
    height: 100%;
}

.contracts-capbar[b-1i7xzwatsh] {
    grid-area: contract-cap;
    padding: 2px;
    border: none;
    font-size: clamp(.86rem, .9vw, .98rem);
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "selectbuy cap";
}

    .contracts-capbar .cap[b-1i7xzwatsh] {
        grid-area: cap;
        text-align: center;
    }

    .contracts-capbar .selectbuy[b-1i7xzwatsh] {
        grid-area: selectbuy;
    }

.contract-button.select-toggle[b-1i7xzwatsh] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contracts-grid[b-1i7xzwatsh] {
    grid-area: contract-levels;
    display: grid;
    grid-template-rows: repeat(var(--levels), minmax(0,1fr));
    gap: 1px;
    height: 100%;
    min-height: 0;
    justify-content: center;
}

.level-noChosen[b-1i7xzwatsh] {
    height: 100%;
    width: 100%;
    display: flex;
    place-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    object-fit: contain;
    min-width: 0;
    min-height: 0;
    padding: 0;
    max-width: 100%;
    max-height: 100%;
    justify-content: center;
}

    .level-noChosen .no-contract[b-1i7xzwatsh] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        display: block;
        pointer-events: none;
    }

.contracts-level[b-1i7xzwatsh] {
    box-sizing: border-box;
    height: 100%;
    overflow: hidden;
    padding: 2px;
    border: 1px dashed rgb(9, 48, 16, .55);
    border-radius: 10px;
    justify-content: center;
}

.icon-grid[b-1i7xzwatsh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1px;
    justify-items: center;
    justify-content: center;
}

.contract-card[b-1i7xzwatsh] {
    grid-area: contract-info;
    display: grid;
    gap: 2px;
    width: 100%;
    height: 100%;
    grid-template-rows: 5fr 1fr;
    grid-template-areas:
        "contract-info"
        "contract-progress";
}

.contract-card-top[b-1i7xzwatsh] {
    grid-area: contract-info;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 2px;
    min-height: 0;
    overflow: hidden;
    justify-items: center;
    align-self: stretch;
    align-items: center;
    justify-content: center;
}

    .contract-card-top .contract-info[b-1i7xzwatsh] {
        display: grid;
        grid-auto-rows: min-content;
        align-content: center;
        padding: 2px;
        background: var(--panel-bg, rgba(255,255,255,.04));
        border: 1px solid var(--panel-border, rgba(255,255,255,.08));
        border-radius: 10px;
        max-height: 100%;
        width: 100%;
        height: 100%;
        min-height: 0;
        overflow: hidden;
        font-size: clamp(.6rem, .84vw, .9rem);
    }

        .contract-card-top .contract-info .cc-name[b-1i7xzwatsh],
        .contract-card-top .contract-info .cc-cycle[b-1i7xzwatsh] {
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            padding: 1px;
        }

        .contract-card-top .contract-info .cc-name[b-1i7xzwatsh] {
            font-weight: 400;
        }

.contract-card-bottom[b-1i7xzwatsh] {
    grid-area: contract-progress;
    display: grid;
    align-content: center;
    overflow: hidden;
    min-height: 0;
    height: 100%;
}

.contract-progress-bar[b-1i7xzwatsh] {
    display: grid;
    grid-template-columns: repeat(100, 1fr);
    gap: 1px;
    width: 100%;
    height: clamp(8px, 1.1vh, 20px);
    min-height: 8px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    align-items: end;
}

    .contract-progress-bar .chunk[b-1i7xzwatsh] {
        height: 70%;
        background: rgba(191, 113, 61, 0.50);
        transition: background 120ms linear, height 120ms linear;
    }

        .contract-progress-bar .chunk.is-filled[b-1i7xzwatsh] {
            height: 90%;
            background: rgba(67, 219, 219, 0.50);
        }
/* /Components/IncomeBox.razor.rz.scp.css */
.game-area[b-z19q5ebk1p] {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
        "coins"
        "resources";
}

.coin-camp[b-z19q5ebk1p] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
    height: 100%;
}

.coins[b-z19q5ebk1p] {
    grid-area: coins;
    display: grid;
    grid-template-columns: repeat(var(--count, 1), minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    overflow: hidden;
    background: var(--res-bg, rgba(160,255,100,0.05));
    min-height: 0;
}

.resources[b-z19q5ebk1p] {
    grid-area: resources;
    display: grid;
    grid-template-columns: repeat(var(--count, 1), minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
    overflow: hidden;
    background: var(--coins-bg, rgba(80,180,255,0.05));
    min-height: 0;
}
/* /Components/NavMenu.razor.rz.scp.css */
.game-area[b-ewm9bet77u]{
    gap: 0px;
    padding: 1px;
}

.nav-menu[b-ewm9bet77u] {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0;
    justify-content: center;
    align-items: center;
    place-items: center;
}

.nav-col[b-ewm9bet77u] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    place-items: center;
    gap: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    padding: 0;
}

.nav-button[b-ewm9bet77u] {
    width: 60px;
    height: 60px;
    display: grid;
    justify-content: center;
    place-items: center;
    align-items: center;
    border: 1px solid #3a4057;
    background: #141824;
    color: rgb(131, 57, 25);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    position: relative;
}

    .nav-button:hover[b-ewm9bet77u] {
        background: #1b2131;
    }

    .nav-button.is-selected[b-ewm9bet77u] {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.35);
        box-shadow: 0 0 0 2px rgba(106,160,255,.25);
    }

    .nav-button.has-notif[b-ewm9bet77u]::after {
        content: "";
        position: absolute;
        top: 4px;
        right: 4px;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: #C87A3D;
        box-shadow: 0 0 0 2px rgba(0,0,0,.35);
        animation: notif-pulse-b-ewm9bet77u .6s ease-out 1;
    }

.nav-glyph[b-ewm9bet77u] {
    font: 600 14px/1 system-ui, Segoe UI, Roboto, Arial, sans-serif;
    letter-spacing: .5px;
    user-select: none;
    text-transform: uppercase;
}

@media (prefers-reduced-motion: no-preference) {
    .nav-button.has-notification[b-ewm9bet77u]::after {
        animation: notif-pulse-b-ewm9bet77u 1.4s ease-in-out infinite;
    }

    @keyframes notif-pulse-b-ewm9bet77u {
        0% {
            transform: scale(.9);
            opacity: .8
        }

        50% {
            transform: scale(1.15);
            opacity: 1
        }

        100% {
            transform: scale(1);
            opacity: .95
        }
    }
}
/* /Components/ShopMenuExpansion.razor.rz.scp.css */
/* ===== Root ===== */
.menu-root[b-8ppgdjjkwa] {
    grid-template-rows: 1fr 1fr 1fr 1fr;
    grid-template-areas:
        "expansion-status"
        "expansion-basechars"
        "expansion-stagechars"
        "expansion-upgrades"
}

/* ===== Conhecimentos (tabela) ===== */
.expansion-status[b-8ppgdjjkwa] {
    grid-area: expansion-status;
}

.expansion-basechars[b-8ppgdjjkwa] {
    grid-area: expansion-basechars;
}

.expansion-stagechars[b-8ppgdjjkwa] {
    grid-area: expansion-stagechars;
}

.expansion-upgrades[b-8ppgdjjkwa] {
    grid-area: expansion-upgrades;
}
/* /Components/ShopMenuExpedition.razor.rz.scp.css */
/* ===== ROOT ===== */
.menu-root[b-z89hjfq2nf] {
    grid-template-rows: auto 1fr 1fr 1fr;
    grid-template-areas:
        "expedition-toggle"
        "expansion-party"
        "expedition-status"
        "expedition-gain";
}

.expedition-toggle[b-z89hjfq2nf] {
    grid-area: expedition-toggle;
}

.expedition-party[b-z89hjfq2nf] {
    grid-area: expedition-party;
}

.image-grid[b-z89hjfq2nf] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2px;
    justify-items: center;
}

.character-button.selected[b-z89hjfq2nf] {
    background: rgb(106, 196, 196);
}


.expedition-status[b-z89hjfq2nf] {
    grid-area: expedition-status;
}

.expedition-gain[b-z89hjfq2nf] {
    grid-area: expedition-gain;
}


/* /Components/ShopMenuSettings.razor.rz.scp.css */
.config-button.danger[b-63ckxcgpkv] {
    background: #5c1f1f;
    border-color: #b44;
    color: #f9e5e5;
}

    .config-button.danger:hover[b-63ckxcgpkv] {
        background: #7a2525;
    }
/* /Components/ShopMenuTech.razor.rz.scp.css */
/* ===== Root ===== */
.menu-root[b-mx57a0e4ma] {
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        "tech-knowledge"
        "tech-available"
        "tech-done";
}

/* ===== Conhecimentos (tabela) ===== */
.tech-knowledge[b-mx57a0e4ma] {
    grid-area: tech-knowledge;
}

.tech-available[b-mx57a0e4ma] {
    grid-area: tech-available;
}

.tech-done[b-mx57a0e4ma] {
    grid-area: tech-done;
}
/* /Components/ShopMenuUpgrades.razor.rz.scp.css */
/* ===== ROOT ===== */
.menu-root[b-g1rc8pwj8l] {
    grid-template-rows: auto 1fr 1fr 1fr;
    grid-template-areas:
        "up-objective"
        "up-expedition"
        "up-expansion"
        "up-permanents";
}

/* ===== ÁREA 1 ===== */
.up-objetive[b-g1rc8pwj8l] {
    grid-area: up-objective;
    display: grid;
}

.up-permanents[b-g1rc8pwj8l] {
    grid-area: up-permanents;
}

.up-expansion[b-g1rc8pwj8l] {
    grid-area: up-expansion;
}

.up-expedition[b-g1rc8pwj8l] {
    grid-area: up-expedition;
}
/* /Components/StageBox.razor.rz.scp.css */
/* 1) grade com N colunas (uma por membro da party) */
.party-grid[b-0kuvrlljco] {
    display: grid;
    grid-template-columns: repeat(var(--slots, 1), minmax(0, 1fr));
    gap: 4px;
    height: 100%;
    min-height: 0;
}

/* 2) cada slot ocupa sua coluna e estica */
.party-slot[b-0kuvrlljco] {
    min-height: 0;
    display: block;
}

/* 3) card 2×2 dentro do slot */
.party-card[b-0kuvrlljco] {
    height: 100%;
    padding: 1px 5px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.03);
    box-sizing: border-box;
    display: grid;
    grid-template-rows: 2fr 1fr;
    grid-template-areas:
        "action"
        "progress";
    row-gap: 2px;
    align-items: center;
    overflow: hidden;
}

.pc-action[b-0kuvrlljco] {
    grid-area: action;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.pc-progress[b-0kuvrlljco] {
    grid-area: progress;
    display: grid;
    align-content: center;
    overflow: hidden;
    min-height: 0;
    height: 100%;
}

.specialty-steps[b-0kuvrlljco] {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 1px;
    width: 100%;
    height: clamp(6px, 1.1vh, 16px);
    min-height: 6px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    align-items: end;
}

.step[b-0kuvrlljco] {
    height: 100%;
    background: rgba(191, 113, 61, 0.50);
    transition: background 120ms linear, height 120ms linear;
}

    .step.is-on[b-0kuvrlljco] {
        background: rgba(67, 219, 219, 0.50);
    }

.party-card.is-empty[b-0kuvrlljco] {
    display: flex;
    align-items: center;
    justify-content: center;
}

.party-slot-empty[b-0kuvrlljco] {
    opacity: .5;
}

@media (max-width: 680px) {
    .party-grid[b-0kuvrlljco] {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}
/* /Components/TextBox.razor.rz.scp.css */
.text-box[b-ncsrpwtbe9]{
    display: grid;
    grid-template-rows: 1fr;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    font-size: smaller;
    padding: 2px;
}

.msg-list[b-ncsrpwtbe9] {
    margin: 0;
    padding: 0;
}

.msg-body[b-ncsrpwtbe9] {
    padding: 0;
    display: grid;
    overflow-y: auto;
    overflow-x: hidden;
}

.msg-row[b-ncsrpwtbe9] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5rem;
    align-items: baseline;
}

.msg-time[b-ncsrpwtbe9] {
    color: #64748b;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-variant-numeric: tabular-nums;
    text-align: right;
    white-space: nowrap;
}

.msg-text[b-ncsrpwtbe9] {
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    min-width: 0;
    line-height: 1.25;
    text-align: left;
    padding-left: 3px;
}

.msg-time[b-ncsrpwtbe9], .msg-text[b-ncsrpwtbe9] {
    line-height: 1.25;
}

/* cores por tipo */
.msg-row.is-info .msg-text[b-ncsrpwtbe9] {
    color: whitesmoke;
}

.msg-row.is-lore .msg-text[b-ncsrpwtbe9] {
    color: rgb(180, 95, 53);
}

.msg-row.is-error .msg-text[b-ncsrpwtbe9] {
    color: darkred;
}

.msg-row.is-unlock .msg-text[b-ncsrpwtbe9] {
    color: forestgreen;
}
/* /Components/TitleBox.razor.rz.scp.css */
.game-area[b-ic24tugyjo] {
    align-content: center;
}

.t-line[b-ic24tugyjo] {
    width: 100%;
    min-width: 0;
    min-height: 0;
}

.t-title[b-ic24tugyjo] {
    font-weight: 800;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    line-height: 1.15;
}

.t-locals[b-ic24tugyjo] {
    font-weight: 600;
    font-size: clamp(.9rem, 1.8vw, 1.05rem);
    line-height: 1.15;
    opacity: .95;
}

.ellipsis[b-ic24tugyjo] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.title-strip *[b-ic24tugyjo] {
    max-width: 100%;
    height: 100%;
    text-align: center;
    align-content: center;
}
/* /Components/TooltipBox.razor.rz.scp.css */
.tooltip-card[b-qx5emdm0hp] {
    display: grid;
    grid-template-rows: 1fr 1fr 3fr 1fr;
    grid-template-areas:
        "tt-top"
        "tt-desc"
        "tt-mid"
        "tt-bot";
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    padding: 2px;
    color: var(--metal-ink);
}


.tt-top[b-qx5emdm0hp] {
    grid-area: tt-top;
    padding: calc(2px * var(--ui-scale));
    border-bottom: 0.5px solid var(--muted-line);
    overflow: hidden;
}

.tt-title[b-qx5emdm0hp] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    font-weight: 700;
    font-size: clamp(0.6rem, 0.7rem + 0.25vw, 0.9rem);
    letter-spacing: .2px;
    line-height: 1.1;
    color: var(--metal-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tt-cost[b-qx5emdm0hp] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-weight: 600;
}

.tt-cost-icon[b-qx5emdm0hp] {
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}

.tt-desc[b-qx5emdm0hp] {
    grid-area: tt-desc;
    padding: calc(2px * var(--ui-scale));
    border-bottom: 0.5px solid var(--muted-line);
    overflow: hidden;
}

    .tt-desc .tt-description[b-qx5emdm0hp] {
        font-size: clamp(0.25rem, 0.7rem + 0.2vw, 0.8rem);
        line-height: 1.2;
        color: var(--metal-ink);
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        text-align: center;
    }

.tt-mid[b-qx5emdm0hp] {
    grid-area: tt-mid;
    padding: 2px 3px;
    border-bottom: 0.5px solid var(--muted-line);
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4px;
    row-gap: 2px;
    align-items: start;
    overflow: hidden;
}

.tt-info[b-qx5emdm0hp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2px;
    overflow: hidden;
}

.tt-info-title[b-qx5emdm0hp] {
    font-size: calc(.68rem * var(--ui-scale));
    font-weight: 650;
    margin-bottom: 2px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

    .tt-info-title > strong[b-qx5emdm0hp] {
        font-weight: 650;
        margin-right: .3ch;
    }

.tt-info-item[b-qx5emdm0hp] {
    font-size: calc(1rem * var(--ui-scale));
    line-height: 1.1;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-info

.tt-info-empty[b-qx5emdm0hp] {
    opacity: 0;
}

.tt-bot[b-qx5emdm0hp] {
    grid-area: tt-bot;
    padding: calc(4px * var(--ui-scale)) 2px;
}

.tt-lore[b-qx5emdm0hp] {
    margin: 0;
    text-align: center;
    font-style: italic;
    font-size: clamp(0.6rem, 0.65rem + 0.2vw, 0.8rem);
    line-height: 1.2;
    color: var(--metal-ink-dim);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-8gibltahuv] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-8gibltahuv] {
    flex: 1;
}

.sidebar[b-8gibltahuv] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-8gibltahuv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-8gibltahuv]  a, .top-row[b-8gibltahuv]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-8gibltahuv]  a:hover, .top-row[b-8gibltahuv]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-8gibltahuv]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-8gibltahuv] {
        justify-content: space-between;
    }

    .top-row[b-8gibltahuv]  a, .top-row[b-8gibltahuv]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-8gibltahuv] {
        flex-direction: row;
    }

    .sidebar[b-8gibltahuv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-8gibltahuv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-8gibltahuv]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-8gibltahuv], article[b-8gibltahuv] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Pages/GamePage.razor.rz.scp.css */
.game-grid[b-hqhsqmazk0] {
    grid-template-columns: 66px minmax(0, 1fr) minmax(0, 2fr) minmax(0, 1fr);
    grid-template-rows: 76px 76px minmax(0, 1fr);
    grid-template-areas:
        "nav text title income"
        "nav text stage income"
        "nav shop click contracts";
}

    .game-grid > *[b-hqhsqmazk0] {
        min-width: 0;
        min-height: 0;
        overflow: hidden;
    }

    .game-grid img[b-hqhsqmazk0],
    .game-grid canvas[b-hqhsqmazk0],
    .game-grid svg[b-hqhsqmazk0] {
        max-width: 100%;
        height: auto;
    }

.nav-menu[b-hqhsqmazk0] {
    grid-area: nav;
    display: flex;
    height: 100%;
    min-width: 0;
    padding: 0;
}
    .nav-menu > *[b-hqhsqmazk0] {
        height: 100%;
    }

.text-box[b-hqhsqmazk0] {
    grid-area: text;
}

.title-box[b-hqhsqmazk0] {
    grid-area: title;
}

.income-box[b-hqhsqmazk0] {
    grid-area: income;
}

.stage-box[b-hqhsqmazk0] {
    grid-area: stage;
}

.shop-menu[b-hqhsqmazk0] {
    grid-area: shop;
}

.click-area[b-hqhsqmazk0] {
    grid-area: click;
}

.contracts-menu[b-hqhsqmazk0] {
    grid-area: contracts;
    min-height: 0;
}

.app-loading-screen[b-hqhsqmazk0] {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top, #252525 0, #050608 60%);
    color: var(--metal-ink, #f5f0dc);
    font-family: var(--font-ui, system-ui, sans-serif);
}

.app-loading-card[b-hqhsqmazk0] {
    padding: 16px 24px;
    border-radius: 12px;
    background: rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    display: grid;
    gap: 8px;
    min-width: min(320px, 80vw);
    text-align: center;
}

.app-loading-title[b-hqhsqmazk0] {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.app-loading-subtitle[b-hqhsqmazk0] {
    font-size: 0.9rem;
    opacity: 0.8;
}

.app-loading-spinner[b-hqhsqmazk0] {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: #ffd45e;
    margin: 8px auto 0;
    animation: app-loading-spin-b-hqhsqmazk0 900ms linear infinite;
}

@keyframes app-loading-spin-b-hqhsqmazk0 {
    to {
        transform: rotate(360deg);
    }
}

.app-shell[b-hqhsqmazk0] {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
