:root {
    --bg: #050722;
    --bg-strong: #070a2c;
    --shell: #080c2f;
    --shell-top: #0c123b;
    --shell-bottom: #090d33;
    --panel: rgba(28, 33, 85, 0.94);
    --panel-soft: rgba(19, 23, 66, 0.92);
    --panel-deep: rgba(14, 17, 53, 0.98);
    --line: rgba(255, 255, 255, 0.1);
    --line-strong: rgba(130, 140, 255, 0.38);
    --text: #f3f6ff;
    --text-muted: rgba(232, 236, 255, 0.66);
    --accent: #7168ff;
    --accent-strong: #8a7dff;
    --accent-blue: #2d8dff;
    --accent-cyan: #29f0cc;
    --accent-pink: #f347d1;
    --accent-orange: #f59c2f;
    --accent-red: #ff405f;
    --coin: #ffc82c;
    --shadow: 0 32px 70px rgba(0, 0, 0, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: 'Space Grotesk', 'Noto Sans KR', sans-serif;
    background: radial-gradient(circle at top, rgba(64, 73, 168, 0.18), transparent 34%), var(--bg);
    color: var(--text);
}

button,
a {
    color: inherit;
    font: inherit;
}

button {
    border: 0;
    background: none;
}

.homepage-app {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.ambient-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(90px);
    opacity: 0.72;
}

.ambient-orb--violet {
    width: 28rem;
    height: 28rem;
    top: -8rem;
    left: -6rem;
    background: rgba(111, 96, 255, 0.26);
}

.ambient-orb--blue {
    width: 36rem;
    height: 36rem;
    top: 15%;
    right: -10rem;
    background: rgba(45, 141, 255, 0.16);
}

.ambient-orb--pink {
    width: 26rem;
    height: 26rem;
    bottom: -8rem;
    left: 18%;
    background: rgba(243, 71, 209, 0.2);
}

.app-stage {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.device-shell {
    position: relative;
    width: min(100%, 1180px);
    height: min(960px, calc(100vh - 2rem));
    display: grid;
    grid-template-rows: 110px minmax(0, 1fr) 102px;
    overflow: hidden;
    border-radius: 38px;
    background:
        linear-gradient(180deg, rgba(30, 39, 95, 0.28), transparent 26%),
        linear-gradient(180deg, var(--shell-top), var(--shell-bottom));
    border: 1px solid rgba(131, 142, 255, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02),
        var(--shadow);
}

.device-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(119, 96, 255, 0.16), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(243, 71, 209, 0.12), transparent 24%);
    pointer-events: none;
}

.app-topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.6rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app-topbar__left,
.app-topbar__right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.utility-button {
    position: relative;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.utility-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
}

.utility-button svg {
    width: 28px;
    height: 28px;
    stroke-width: 2.2;
}

.utility-badge {
    position: absolute;
    top: 8px;
    right: 7px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff2f45;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(8, 12, 47, 0.92);
}

.profile-avatar {
    position: relative;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.profile-avatar__glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 240, 205, 0.95), rgba(243, 71, 209, 0.88));
    box-shadow: 0 0 26px rgba(57, 234, 202, 0.34);
}

.profile-avatar__face {
    position: relative;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, #61493b, #211f2e);
    color: #fff4d8;
    font-weight: 700;
    font-size: 1.1rem;
}

.currency-chip {
    min-width: 244px;
    display: inline-flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.7rem 1.15rem;
    border-radius: 28px;
    border: 1px solid rgba(255, 200, 44, 0.35);
    background: linear-gradient(180deg, rgba(29, 22, 58, 0.96), rgba(19, 16, 43, 0.96));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.currency-chip--fun {
    border-color: rgba(243, 71, 209, 0.32);
}

.currency-chip__coin {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.4rem;
    color: #20174b;
    background: radial-gradient(circle at 30% 30%, #fff4b9, #ffc200 70%);
}

.currency-chip--fun .currency-chip__coin {
    color: #ffeaf7;
    background: radial-gradient(circle at 30% 30%, #ff9ef1, #d800d6 70%);
}

.currency-chip__value {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.currency-chip--mun .currency-chip__value {
    color: #ffd44e;
}

.currency-chip--fun .currency-chip__value {
    color: #ff7adc;
}

.screen-frame {
    position: relative;
    min-height: 0;
    overflow: hidden;
}

.screen-panel {
    height: 100%;
    display: none;
    padding: 1.35rem 1.5rem 1.6rem;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(140, 147, 255, 0.35) transparent;
}

.screen-panel.is-active {
    display: block;
}

.screen-panel::-webkit-scrollbar {
    width: 10px;
}

.screen-panel::-webkit-scrollbar-thumb {
    background: rgba(140, 147, 255, 0.34);
    border-radius: 999px;
}

.screen-home {
    width: min(760px, 100%);
    margin: 0 auto;
    padding-top: 0.4rem;
}

.screen-home__helper {
    padding: 3rem 0 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.home-shortcuts {
    display: grid;
    gap: 1.2rem;
}

.home-card {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1.55rem 1.5rem;
    border-radius: 28px;
    color: inherit;
    background: rgba(36, 41, 92, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.home-card:hover {
    transform: translateY(-2px);
    border-color: rgba(129, 137, 255, 0.36);
    background: rgba(43, 49, 104, 0.98);
}

.home-card__icon {
    width: 74px;
    height: 74px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
}

.home-card__icon svg {
    width: 34px;
    height: 34px;
}

.home-card__icon--city {
    background: linear-gradient(180deg, rgba(39, 141, 255, 0.34), rgba(39, 141, 255, 0.15));
}

.home-card__icon--asset {
    background: linear-gradient(180deg, rgba(104, 94, 255, 0.35), rgba(104, 94, 255, 0.14));
}

.home-card__icon--rank {
    background: linear-gradient(180deg, rgba(62, 161, 255, 0.38), rgba(62, 161, 255, 0.14));
}

.home-card__icon--world {
    background: linear-gradient(180deg, rgba(62, 193, 255, 0.35), rgba(49, 120, 255, 0.14));
}

.home-card__body strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.home-card__body span {
    color: var(--text-muted);
    font-size: 1rem;
}

.home-card__arrow {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.45);
}

.home-status-strip {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.status-chip {
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: rgba(18, 21, 61, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-chip__label {
    display: block;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.status-chip strong {
    font-size: 1rem;
}

.screen-market {
    width: min(860px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 1.15rem;
}

.segment-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.segment-button,
.store-tab,
.ranking-tab {
    padding: 0.95rem 1.35rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.segment-button:hover,
.store-tab:hover,
.ranking-tab:hover {
    transform: translateY(-1px);
    border-color: rgba(129, 137, 255, 0.4);
}

.segment-button.is-active {
    border-color: rgba(123, 112, 255, 0.8);
    background: linear-gradient(180deg, rgba(123, 112, 255, 0.92), rgba(102, 91, 246, 0.88));
}

.market-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-pill {
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.2rem;
    border-radius: 22px;
    color: #fff;
    font-weight: 700;
}

.action-pill svg {
    width: 22px;
    height: 22px;
}

.action-pill--magenta {
    background: linear-gradient(180deg, rgba(211, 48, 215, 0.36), rgba(174, 33, 185, 0.24));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.action-pill--violet {
    background: linear-gradient(180deg, rgba(81, 89, 255, 0.36), rgba(60, 67, 198, 0.24));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.sort-actions {
    display: flex;
    gap: 0.65rem;
}

.sort-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.56);
}

.sort-button--up {
    color: #7f79ff;
}

.market-region-row,
.market-sector-strip,
.ranking-tabs,
.store-tabs {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.market-region-row::-webkit-scrollbar,
.market-sector-strip::-webkit-scrollbar,
.ranking-tabs::-webkit-scrollbar,
.store-tabs::-webkit-scrollbar {
    display: none;
}

.market-region-button {
    padding: 0.35rem 0.15rem 0.75rem;
    min-width: 140px;
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

.market-region-button.is-active {
    color: #fff;
    border-bottom-color: #23e268;
}

.market-sector {
    min-width: 92px;
    display: grid;
    justify-items: center;
    gap: 0.5rem;
    padding: 0.7rem 0.4rem 0.95rem;
    color: rgba(255, 255, 255, 0.74);
    border-bottom: 3px solid transparent;
}

.market-sector.is-active {
    color: #fff;
    border-bottom-color: #ff9f20;
}

.market-sector__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 0.92rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.06);
}

.market-notice {
    padding: 1.15rem 1.25rem;
    border-radius: 24px;
    color: #ffd86b;
    background: linear-gradient(180deg, rgba(86, 59, 13, 0.94), rgba(58, 39, 10, 0.92));
    border: 1px solid rgba(255, 202, 44, 0.34);
    line-height: 1.5;
}

.asset-list {
    display: grid;
    gap: 0.95rem;
}

.asset-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.15rem 1.2rem;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(18, 21, 61, 0.96), rgba(14, 17, 52, 0.96));
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.asset-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(18, 23, 79, 0.12), transparent 35%),
        radial-gradient(circle at 78% 50%, rgba(22, 161, 255, 0.2), transparent 34%),
        radial-gradient(circle at 30% 20%, rgba(101, 80, 255, 0.22), transparent 35%);
    opacity: 0.9;
    pointer-events: none;
}

.asset-card__badge,
.store-card__badge {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #637dff, #ff51a1);
}

.asset-card__body,
.store-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.12rem;
}

.asset-card__body strong {
    font-size: 1.1rem;
}

.asset-card__body span {
    color: var(--text-muted);
    font-size: 0.98rem;
}

.asset-card__price {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.asset-card__price::before,
.ranking-value::before {
    content: 'M';
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.94rem;
    color: #674500;
    background: radial-gradient(circle at 30% 30%, #fff6b6, #ffca22 70%);
}

.screen-city {
    display: grid;
    gap: 1rem;
}

.city-command-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
}

.city-command {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-weight: 700;
    color: #fff;
    border: 1px solid transparent;
}

.city-command svg {
    width: 20px;
    height: 20px;
}

.city-command--blue {
    background: rgba(17, 45, 121, 0.82);
    border-color: rgba(39, 141, 255, 0.55);
}

.city-command--orange {
    background: rgba(98, 55, 8, 0.86);
    border-color: rgba(245, 156, 47, 0.54);
}

.city-command--green {
    background: rgba(10, 76, 48, 0.85);
    border-color: rgba(41, 240, 204, 0.32);
}

.city-command--sky {
    background: rgba(11, 42, 98, 0.85);
    border-color: rgba(45, 141, 255, 0.4);
}

.city-summary-panel {
    display: grid;
    gap: 0.8rem;
    padding: 1.2rem 1.35rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 63, 111, 0.94), rgba(9, 36, 78, 0.92));
    border: 1px solid rgba(46, 151, 255, 0.34);
}

.city-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.city-summary-row__title {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    font-weight: 700;
}

.city-summary-row__title svg:first-child {
    color: #38a7ff;
}

.city-map-shell {
    position: relative;
    overflow: auto;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(9, 77, 98, 0.78), rgba(5, 45, 67, 0.78));
}

.city-map {
    min-width: 930px;
    min-height: 760px;
    display: grid;
    grid-template-columns: repeat(13, minmax(0, 1fr));
    gap: 4px;
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(6, 17, 39, 0.24), rgba(8, 12, 47, 0.24));
}

.city-cell {
    aspect-ratio: 1;
    border-radius: 12px;
    background: rgba(15, 18, 47, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.city-cell--road {
    background: rgba(60, 59, 94, 0.88);
    border-color: rgba(126, 125, 171, 0.22);
}

.city-cell--buildable {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 90, 72, 0.86), rgba(8, 66, 57, 0.92));
    border-color: rgba(48, 245, 201, 0.32);
}

.city-cell--buildable::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% - 9px));
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(118, 255, 230, 0.85);
}

.city-cell--buildable::after {
    content: '115,974';
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    font-size: 0.54rem;
    font-weight: 700;
    color: #ffd04a;
}

.city-cell--building {
    position: relative;
    overflow: hidden;
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(72, 90, 157, 0.58), rgba(26, 28, 63, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
}

.city-cell--building[data-tone="dam"] {
    background: linear-gradient(180deg, rgba(255, 148, 112, 0.62), rgba(88, 48, 57, 0.96));
}

.city-cell--building[data-tone="retail"] {
    background: linear-gradient(180deg, rgba(162, 166, 199, 0.56), rgba(46, 53, 94, 0.96));
}

.city-cell--building[data-tone="bank"] {
    background: linear-gradient(180deg, rgba(111, 197, 255, 0.56), rgba(31, 66, 120, 0.96));
}

.city-cell--building[data-tone="warehouse"] {
    background: linear-gradient(180deg, rgba(252, 164, 88, 0.56), rgba(92, 50, 23, 0.96));
}

.city-cell__badge {
    align-self: flex-start;
    padding: 0.14rem 0.38rem;
    border-radius: 999px;
    background: rgba(243, 71, 209, 0.82);
    font-size: 0.58rem;
    font-weight: 700;
}

.city-cell__name {
    font-size: 0.72rem;
    font-weight: 700;
}

.city-cell__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.2rem;
    font-size: 0.58rem;
}

.city-cell__meta span:last-child {
    color: #ffd04a;
}

.city-floating-controls {
    position: sticky;
    right: 1rem;
    bottom: 1rem;
    width: fit-content;
    margin: -15.5rem 1rem 1rem auto;
    display: grid;
    gap: 0.8rem;
}

.floating-control {
    width: 82px;
    height: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: rgba(51, 70, 86, 0.92);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.floating-control svg {
    width: 36px;
    height: 36px;
}

.floating-control--stacked {
    height: 168px;
    display: grid;
    align-items: center;
    justify-items: center;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1;
}

.screen-game {
    display: grid;
    gap: 1rem;
}

.screen-game--homepage {
    gap: 1.2rem;
}

.game-header__title {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.game-header__description {
    margin-top: 0.75rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.game-back {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
}

.service-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: stretch;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    text-decoration: none;
    background: rgba(18, 24, 70, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.service-card--blue {
    box-shadow: inset 0 0 0 1px rgba(67, 162, 255, 0.28);
}

.service-card--pink {
    box-shadow: inset 0 0 0 1px rgba(243, 71, 209, 0.24);
}

.service-card__icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    color: #fff;
    background: rgba(113, 104, 255, 0.16);
}

.service-card--blue .service-card__icon {
    background: rgba(67, 162, 255, 0.16);
}

.service-card--pink .service-card__icon {
    background: rgba(243, 71, 209, 0.16);
}

.service-card__icon svg {
    width: 30px;
    height: 30px;
}

.service-card strong {
    display: block;
    font-size: 1.15rem;
}

.service-card span:last-child {
    color: var(--text-muted);
}

.service-core {
    min-width: 280px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem;
    border-radius: 28px;
    background: rgba(17, 33, 84, 0.94);
    border: 1px solid rgba(113, 104, 255, 0.28);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.service-core__badge {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    color: #39ffd2;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(10, 92, 75, 0.3);
    border: 1px solid rgba(57, 255, 210, 0.3);
}

.service-core__stats {
    text-align: center;
}

.service-core__stats span {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-core__stats strong {
    display: block;
    margin-top: 0.3rem;
    font-size: 1.25rem;
}

.promo-board-shell {
    overflow: auto;
    padding-bottom: 0.2rem;
}

.promo-board {
    min-width: 900px;
    min-height: 640px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    padding: 1rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(17, 26, 79, 0.96), rgba(11, 15, 52, 0.98)),
        rgba(11, 15, 52, 0.98);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.promo-slot {
    min-height: 122px;
}

.promo-slot--center {
    grid-column: 2 / span 4;
    grid-row: 2 / span 2;
}

.promo-tile {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.9rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(14, 18, 49, 0.96), rgba(9, 13, 34, 0.98));
    border: 2px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 -18px 40px rgba(0, 0, 0, 0.22);
}

.promo-tile strong {
    font-size: 1rem;
}

.promo-tile span {
    color: var(--text-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.promo-tile--active {
    border-color: rgba(255, 237, 74, 0.78);
}

.promo-tile--accent {
    background: linear-gradient(180deg, rgba(59, 27, 74, 0.98), rgba(27, 15, 56, 0.98));
}

.promo-center {
    height: 100%;
    display: grid;
    place-items: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
    border-radius: 30px;
    background: radial-gradient(circle at top, rgba(111, 96, 255, 0.18), rgba(16, 21, 67, 0.9));
    border: 1px solid rgba(112, 119, 255, 0.28);
    box-shadow: 0 0 36px rgba(102, 91, 246, 0.16);
}

.promo-center__icon {
    width: 88px;
    height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    color: #7562ff;
    background: rgba(117, 98, 255, 0.12);
}

.promo-center__icon svg {
    width: 44px;
    height: 44px;
}

.promo-center strong {
    display: block;
    font-size: 2rem;
}

.promo-center p {
    max-width: 520px;
    color: var(--text-muted);
    line-height: 1.7;
}

.battle-summary {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.player-card--right {
    justify-content: flex-end;
}

.player-card__avatar {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.player-card__avatar--blue {
    background: linear-gradient(135deg, #43a2ff, #2a73ff);
}

.player-card__avatar--red {
    background: linear-gradient(135deg, #ff5f71, #ff3058);
}

.player-card strong {
    display: block;
    font-size: 1.2rem;
}

.player-card span:last-child {
    color: #ffd04a;
}

.turn-stack {
    display: grid;
    justify-items: center;
    gap: 0.8rem;
}

.turn-badge {
    padding: 0.8rem 1.45rem;
    border-radius: 28px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #3cffd6;
    background: rgba(8, 97, 70, 0.4);
    border: 1px solid rgba(50, 255, 214, 0.54);
}

.turn-clock {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.7rem;
    border-radius: 28px;
    background: rgba(20, 40, 116, 0.94);
    border: 1px solid rgba(66, 136, 255, 0.42);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.turn-clock span,
.turn-clock strong {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.turn-clock span {
    color: #3aa4ff;
}

.turn-clock strong {
    color: #ffb74c;
    background: rgba(74, 52, 12, 0.86);
    border: 1px solid rgba(255, 183, 76, 0.48);
}

.game-board-shell {
    overflow: auto;
    padding-bottom: 0.2rem;
}

.game-board {
    min-width: 900px;
    min-height: 760px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    padding: 1rem;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(17, 26, 79, 0.96), rgba(11, 15, 52, 0.98)),
        rgba(11, 15, 52, 0.98);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.board-slot {
    position: relative;
    min-height: 118px;
    border-radius: 22px;
    overflow: hidden;
}

.board-slot--center {
    grid-column: 2 / span 4;
    grid-row: 2 / span 4;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 50% 50%, rgba(65, 75, 180, 0.24), rgba(10, 15, 53, 0.82));
    border: 1px solid rgba(112, 119, 255, 0.18);
}

.center-card {
    width: 240px;
    height: 200px;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.8rem;
    border-radius: 30px;
    background: rgba(16, 21, 67, 0.9);
    border: 1px solid rgba(112, 119, 255, 0.26);
    box-shadow: 0 0 36px rgba(102, 91, 246, 0.16);
}

.center-card__icon {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: #7562ff;
    background: rgba(117, 98, 255, 0.12);
}

.center-card__icon svg {
    width: 44px;
    height: 44px;
}

.center-card strong {
    display: block;
    font-size: 1.9rem;
}

.center-card span {
    color: var(--text-muted);
}

.board-tile {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.7rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(13, 16, 40, 0.96), rgba(8, 11, 32, 0.98));
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -18px 40px rgba(0, 0, 0, 0.26);
}

.board-tile--start {
    outline: 3px solid rgba(255, 240, 0, 0.84);
}

.board-tile--chance {
    background: linear-gradient(180deg, rgba(75, 29, 86, 0.98), rgba(34, 18, 70, 0.98));
}

.board-tile--disaster {
    background: linear-gradient(180deg, rgba(81, 19, 27, 0.98), rgba(47, 11, 20, 0.98));
}

.board-tile__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.4rem;
}

.board-tile__label {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.15;
}

.board-tile__avatar {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3c8cff, #ff4060);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.board-tile__price {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffca22;
}

.board-tile__price::before {
    content: 'M';
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.72rem;
    color: #674500;
    background: radial-gradient(circle at 30% 30%, #fff6b6, #ffca22 70%);
}

.game-controls {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    align-items: stretch;
}

.turn-progress {
    padding: 1.3rem;
    border-radius: 24px;
    background: rgba(11, 14, 46, 0.94);
}

.turn-progress__label {
    display: block;
    color: var(--text-muted);
    font-size: 1rem;
}

.turn-progress strong {
    display: block;
    margin: 0.35rem 0;
    font-size: 3rem;
    color: #695fff;
}

.turn-progress__sub {
    color: #37ffcc;
    font-size: 1rem;
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.battle-button {
    min-height: 88px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.battle-button--muted {
    background: linear-gradient(180deg, rgba(130, 130, 130, 0.52), rgba(88, 88, 88, 0.52));
}

.battle-button--violet {
    background: linear-gradient(180deg, rgba(184, 119, 255, 0.96), rgba(128, 89, 255, 0.96));
    box-shadow: 0 0 24px rgba(124, 91, 255, 0.34);
}

.battle-button--danger {
    background: linear-gradient(180deg, rgba(255, 44, 69, 0.96), rgba(214, 21, 61, 0.96));
}

.homepage-controls .turn-progress strong {
    font-size: 3.4rem;
}

.homepage-action-grid .battle-button {
    font-size: 1.45rem;
}

.screen-ranking {
    width: min(960px, 100%);
    margin: 0 auto;
}

.ranking-header {
    padding: 2rem 0 1.8rem;
    text-align: center;
}

.ranking-header h1 {
    font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.ranking-header p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.ranking-tab {
    min-width: 120px;
}

.ranking-tab.is-active {
    color: #fff;
    border-color: transparent;
    background: transparent;
    box-shadow: inset 0 -3px 0 #7364ff;
}

.ranking-list {
    display: grid;
    gap: 1rem;
    padding-top: 1.4rem;
}

.ranking-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.2rem 1.2rem 1rem;
    border-radius: 28px;
    background: rgba(31, 36, 86, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ranking-card--top {
    background: rgba(40, 42, 104, 0.98);
}

.ranking-rank {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.65rem;
    font-weight: 700;
    color: #fff;
    background: rgba(80, 84, 124, 0.5);
}

.ranking-rank--top {
    color: #3a2800;
    background: radial-gradient(circle at 30% 30%, #fff0a8, #ffc600 70%);
}

.ranking-card__body strong {
    display: block;
    font-size: 1.65rem;
}

.ranking-card__body span {
    color: var(--text-muted);
}

.ranking-value {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: right;
}

.screen-store {
    display: grid;
    gap: 1.2rem;
    width: min(950px, 100%);
    margin: 0 auto;
}

.store-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.store-header p {
    margin-top: 0.5rem;
    color: var(--text-muted);
}

.store-tab.is-active {
    border-color: rgba(123, 112, 255, 0.55);
    background: rgba(113, 104, 255, 0.16);
}

.store-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 1.6rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at right top, rgba(243, 71, 209, 0.26), transparent 35%),
        radial-gradient(circle at left bottom, rgba(113, 104, 255, 0.34), transparent 42%),
        rgba(26, 31, 76, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.store-hero__eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #b8a9ff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.store-hero h2 {
    font-size: 1.8rem;
}

.store-hero p {
    margin-top: 0.45rem;
    color: var(--text-muted);
}

.store-hero__button {
    padding: 1rem 1.3rem;
    border-radius: 20px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(121, 105, 255, 0.96), rgba(95, 80, 243, 0.96));
    box-shadow: 0 0 22px rgba(113, 104, 255, 0.24);
    cursor: pointer;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.store-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(18, 21, 61, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.store-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0.7rem;
}

.store-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.38rem 0.6rem;
    border-radius: 999px;
    color: #ffdb70;
    background: rgba(255, 202, 44, 0.1);
    font-size: 0.74rem;
    font-weight: 700;
}

.store-card__price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffd44f;
}

.store-card__button {
    margin-top: 0.95rem;
    width: fit-content;
    padding: 0.82rem 1rem;
    border-radius: 18px;
    color: #fff;
    font-weight: 700;
    background: rgba(113, 104, 255, 0.2);
    box-shadow: inset 0 0 0 1px rgba(122, 117, 255, 0.34);
}

.bottom-nav {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(11, 14, 46, 0.8), rgba(11, 14, 46, 0.96));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bottom-nav__item {
    display: grid;
    justify-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.25rem;
    color: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bottom-nav__item svg {
    width: 34px;
    height: 34px;
}

.bottom-nav__item span {
    font-size: 0.96rem;
    font-weight: 700;
}

.bottom-nav__item:hover {
    transform: translateY(-1px);
}

.bottom-nav__item.is-active {
    color: var(--accent-strong);
}

.settings-drawer {
    position: fixed;
    inset: 0;
    z-index: 30;
}

.settings-drawer[hidden] {
    display: none;
}

.settings-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 5, 20, 0.7);
    cursor: pointer;
}

.settings-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100%;
    padding: 1.3rem;
    display: grid;
    align-content: start;
    gap: 1rem;
    background: linear-gradient(180deg, rgba(13, 18, 59, 0.98), rgba(8, 10, 34, 0.98));
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -26px 0 44px rgba(0, 0, 0, 0.3);
}

.settings-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.settings-drawer__eyebrow {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: #9ca5ff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.settings-drawer__header h2 {
    font-size: 1.8rem;
}

.settings-drawer__close {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.settings-link {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 24px;
    text-decoration: none;
    background: rgba(27, 31, 81, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.settings-link__icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #fff;
    background: rgba(113, 104, 255, 0.18);
}

.settings-link__body strong {
    display: block;
    font-size: 1.08rem;
}

.settings-link__body span {
    color: var(--text-muted);
}

body.drawer-open {
    overflow: hidden;
}

.privacy-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #050722, #0b1030 32%, #070a21 100%);
    color: var(--text);
}

.container {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.privacy-page .navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 12, 47, 0.88);
    backdrop-filter: blur(14px);
}

.privacy-page .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.privacy-page .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    text-decoration: none;
}

.privacy-page .logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.privacy-page .logo-icon {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(113, 104, 255, 0.16);
}

.privacy-page .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.privacy-page .nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
}

.privacy-page .nav-menu {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.privacy-page .nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
}

.privacy-page .nav-links a,
.privacy-page .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
}

.privacy-page .nav-actions {
    display: flex;
    gap: 0.7rem;
}

.privacy-page .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
}

.privacy-page .btn-primary {
    background: rgba(113, 104, 255, 0.88);
}

.privacy-page .btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.privacy-page .hero {
    padding: 4.5rem 0 2.2rem;
}

.privacy-page .section-header h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.privacy-page .section-header p {
    margin-top: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.privacy-page .section {
    padding: 1rem 0 4rem;
}

.legal-shell {
    display: grid;
    gap: 1rem;
}

.legal-card {
    padding: 1.4rem 1.5rem;
    border-radius: 24px;
    background: rgba(18, 21, 61, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-card p,
.legal-card li {
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-card ul {
    margin-left: 1.2rem;
}

.legal-card a {
    color: #9bb4ff;
}

.privacy-page .footer {
    padding: 2rem 0 3rem;
}

.privacy-page .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.privacy-page .footer-links {
    display: flex;
    gap: 1rem;
}

.privacy-page .footer-bottom {
    margin-top: 1.2rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

@media (max-width: 1080px) {
    .device-shell {
        width: 100%;
        height: calc(100vh - 1rem);
        border-radius: 28px;
    }

    .currency-chip {
        min-width: 210px;
    }

    .city-map {
        min-width: 760px;
    }
}

@media (max-width: 900px) {
    .app-stage {
        padding: 0;
    }

    .device-shell {
        height: 100vh;
        border-radius: 0;
        grid-template-rows: 96px minmax(0, 1fr) 94px;
    }

    .app-topbar {
        flex-wrap: wrap;
        gap: 0.85rem;
        padding: 0.9rem 1rem;
    }

    .app-topbar__left,
    .app-topbar__right {
        width: 100%;
        justify-content: space-between;
    }

    .currency-chip {
        min-width: 0;
        flex: 1;
        padding: 0.6rem 0.85rem;
    }

    .currency-chip__coin {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    .currency-chip__value {
        font-size: 1.35rem;
    }

    .screen-panel {
        padding: 1rem;
    }

    .home-status-strip,
    .city-command-row,
    .store-grid,
    .game-controls {
        grid-template-columns: 1fr;
    }

    .battle-summary {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .player-card,
    .player-card--right {
        justify-content: center;
    }

    .store-hero {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-summary {
        grid-template-columns: 1fr;
    }

    .service-core {
        min-width: 0;
    }

    .bottom-nav__item svg {
        width: 30px;
        height: 30px;
    }

    .bottom-nav__item span {
        font-size: 0.84rem;
    }
}

@media (max-width: 640px) {
    .utility-button {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }

    .utility-button svg {
        width: 24px;
        height: 24px;
    }

    .profile-avatar {
        width: 56px;
        height: 56px;
    }

    .profile-avatar__face {
        width: 48px;
        height: 48px;
    }

    .home-card {
        grid-template-columns: auto 1fr;
    }

    .home-card__arrow {
        display: none;
    }

    .home-card__icon {
        width: 62px;
        height: 62px;
        border-radius: 18px;
    }

    .home-card__body strong {
        font-size: 1.3rem;
    }

    .segment-button,
    .store-tab,
    .ranking-tab {
        padding: 0.78rem 1rem;
        border-radius: 20px;
        white-space: nowrap;
    }

    .market-action-row {
        align-items: stretch;
    }

    .action-pill {
        width: 100%;
    }

    .sort-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .asset-card,
    .ranking-card,
    .store-card {
        grid-template-columns: 1fr;
    }

    .asset-card__price,
    .ranking-value {
        justify-content: flex-start;
    }

    .city-map {
        min-width: 680px;
        min-height: 620px;
    }

    .game-board {
        min-width: 720px;
        min-height: 660px;
    }

    .promo-board {
        min-width: 720px;
        min-height: 560px;
    }

    .floating-control {
        width: 68px;
        height: 68px;
        border-radius: 20px;
    }

    .floating-control--stacked {
        height: 144px;
    }

    .settings-drawer__panel {
        width: 100%;
    }

    .privacy-page .nav-toggle {
        display: inline-flex;
    }

    .privacy-page .nav-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 0.9rem;
        border-radius: 20px;
        background: rgba(8, 12, 47, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .privacy-page .navbar.open .nav-menu {
        display: flex;
    }

    .privacy-page .nav-links,
    .privacy-page .nav-actions,
    .privacy-page .footer-top,
    .privacy-page .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }
}
