:root {
    --sc-navy: #07142f;
    --sc-blue: #173d88;
    --sc-blue-light: #2861bb;
    --sc-green: #23ef12;
    --sc-yellow: #ffc928;
    --sc-pink: #ed3e7f;
    --sc-orange: #ff693d;
    --sc-ink: #0f1739;
    --sc-panel: #111319;
    --sc-muted: #9ca3b5;
    --sc-border: #f7f9ff;
}

html,
body {
    background: var(--sc-navy);
    color: #fff;
    font-family: "Space Mono", system-ui, sans-serif;
}

body {
    min-height: 100vh;
    padding-bottom: 92px;
}

.sc-header {
    position: sticky;
    top: 0;
    z-index: 950;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 10px max(16px, calc((100vw - 1120px) / 2));
    background: linear-gradient(180deg, #0c2353 0%, #071735 100%);
    border-bottom: 2px solid rgba(35, 239, 18, .42);
    box-shadow: 0 6px 24px rgba(0, 0, 0, .3);
}

.sc-logo {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.sc-logo img {
    width: 112px;
    max-height: 58px;
    object-fit: contain;
}

.sc-balance,
.sc-icon-button,
.sc-profile-button {
    min-height: 52px;
    border: 3px solid #fff;
    border-radius: 17px;
    box-shadow: 0 5px 0 rgba(0, 0, 0, .28);
    font-weight: 900;
    text-decoration: none;
}

.sc-balance {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    color: #17346c;
    background: var(--sc-yellow);
}

.sc-icon-button,
.sc-profile-button {
    display: grid;
    place-items: center;
    width: 58px;
    color: #15336f;
}

.sc-icon-button {
    background: var(--sc-green);
    font-size: 25px;
}

.sc-profile-button {
    background: var(--sc-pink);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.sc-livebar {
    position: sticky;
    top: 78px;
    z-index: 940;
    overflow: hidden;
    padding: 6px 16px;
    color: #d8e0f2;
    background: #10275b;
    border-bottom: 1px solid #2751a0;
    white-space: nowrap;
    font-size: 13px;
}

.sc-livebar strong {
    color: var(--sc-green);
}

.sc-account-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 92px 20px 110px;
    background: rgba(2, 7, 20, .55);
    backdrop-filter: blur(4px);
}

.sc-account-overlay.active {
    display: flex;
}

.sc-account-card {
    width: min(510px, 100%);
    overflow: hidden;
    border: 4px solid #fff;
    border-radius: 30px;
    color: #fff;
    background: linear-gradient(145deg, #2861a9, #0d2158 66%, #2c1a43);
    box-shadow: 0 11px 0 #183f8c, 0 22px 50px rgba(0, 0, 0, .55);
}

.sc-account-head {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 25px 28px;
    border-bottom: 1px solid rgba(35, 239, 18, .42);
}

.sc-avatar {
    display: grid;
    place-items: center;
    width: 74px;
    height: 74px;
    flex: 0 0 auto;
    border: 4px solid #fff;
    border-radius: 20px;
    background: var(--sc-orange);
    font-size: 30px;
    font-weight: 900;
}

.sc-account-head strong,
.sc-account-head small {
    display: block;
}

.sc-account-head strong {
    font-size: 21px;
}

.sc-account-head small {
    margin-top: 4px;
    color: var(--sc-green);
    font-weight: 900;
    letter-spacing: 2px;
}

.sc-account-menu {
    padding: 18px 25px;
}

.sc-account-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 4px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
}

.sc-account-menu a span:first-child {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
    border-radius: 15px;
    background: #2b69cd;
}

.sc-account-menu a:nth-child(2) span:first-child {
    background: var(--sc-green);
}

.sc-account-menu a:nth-child(3) span:first-child {
    background: var(--sc-pink);
}

.sc-account-menu a:last-child {
    margin: 12px -25px -18px;
    padding: 21px 29px;
    background: rgba(75, 25, 34, .48);
}

.sc-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    min-height: 84px;
    padding: 7px max(8px, calc((100vw - 720px) / 2));
    background: rgba(5, 11, 31, .97);
    border-top: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .32);
}

.sc-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #989aa6;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.sc-bottom-nav a span {
    font-size: 25px;
}

.sc-bottom-nav a.active {
    color: var(--sc-green);
}

.sc-bottom-nav .sc-wallet {
    transform: translateY(-15px);
}

.sc-bottom-nav .sc-wallet span {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    color: #fff;
    border-radius: 50%;
    background: var(--sc-green);
    box-shadow: 0 0 27px rgba(35, 239, 18, .52);
}

/* Authenticated home / game list */
.__main_wrapper {
    background: #070d23 !important;
}

.sc-single-game .__main_bg,
.sc-single-game .__main_section,
.sc-single-game .__game_list,
.sc-single-game .__ranking {
    display: none !important;
}

.sc-single-game > div[style*="display: flex"] {
    min-height: calc(100vh - 166px);
}

.sc-single-game .__main_game {
    width: min(100%, 760px);
    min-height: calc(100vh - 170px);
    justify-content: flex-start;
    padding: 45px 22px 35px !important;
    margin-top: 0 !important;
    background:
        radial-gradient(circle at 50% 35%, rgba(255, 210, 55, .95) 0 9%, transparent 9.4%),
        linear-gradient(180deg, #5932a8 0%, #ea438b 34%, #ff7241 50%, #090e27 50%);
}

.sc-single-game .__main_game::before {
    content: "CORRA.\A PULE.\A GANHE NO PIX!";
    white-space: pre;
    color: #fff;
    font-size: clamp(38px, 8vw, 72px);
    line-height: .92;
    font-weight: 900;
    text-shadow: 0 6px 0 #171530;
}

.sc-single-game .__main_game h2,
.sc-single-game .__main_game .__description {
    display: none !important;
}

.sc-single-game .__main_game .__banner {
    width: min(340px, 70vw);
    margin-top: 24px;
    border-radius: 50% 50% 18px 18px !important;
    filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .52));
}

.sc-single-game .__main_game .__banner img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.primary-button.__primary-button,
.hero-section .primary-button,
#pixgenerator {
    width: min(100%, 660px) !important;
    padding: 20px 24px !important;
    border: 4px solid #fff !important;
    border-radius: 25px !important;
    color: #102450 !important;
    background: var(--sc-green) !important;
    box-shadow: 0 10px 0 #087716, 0 0 28px rgba(35, 239, 18, .45) !important;
    font-size: clamp(20px, 4vw, 30px) !important;
    font-weight: 900 !important;
    text-align: center;
    text-transform: uppercase;
}

/* Deposit */
body:has(.sc-deposit-page #payment_pix) {
    background: #101116;
}

body:has(.sc-deposit-page #payment_pix) .hero-section {
    min-height: calc(100vh - 160px);
    padding: 38px 16px 50px !important;
    background: #101116 !important;
}

body:has(.sc-deposit-page #payment_pix) .minting-container.max-width {
    padding: 0 !important;
}

body:has(.sc-deposit-page #payment_pix) .minting-container.max-width > h2 {
    margin: 0;
    color: #fff;
    font-size: 29px;
}

body:has(.sc-deposit-page #payment_pix) .minting-container.max-width > p {
    margin-top: 5px;
    color: #979aa4;
}

.sc-secure-payment {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 25px 0;
    padding: 18px 20px;
    border: 2px solid #168129;
    border-radius: 23px;
    background: #102218;
}

.sc-secure-payment strong,
.sc-secure-payment small {
    display: block;
}

.sc-secure-payment strong {
    color: #fff;
    font-size: 18px;
}

.sc-secure-payment small {
    color: #a9abb2;
}

.sc-secure-payment .sc-status {
    margin-left: auto;
    color: var(--sc-green);
    font-weight: 900;
}

#payment_pix .properties {
    display: flex;
    flex-direction: column;
}

#payment_pix .properties .rarity-heading {
    margin: 17px 0 8px;
    color: #aeb1bc;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#payment_pix .properties .rarity-heading:nth-of-type(3) {
    order: -2;
}

#payment_pix .properties .rarity-row:nth-of-type(3) {
    order: -1;
}

#payment_pix .large-input-field {
    height: 82px !important;
    margin: 0 !important;
    padding: 0 24px !important;
    color: #fff !important;
    border: 2px solid #30323a !important;
    border-radius: 23px !important;
    background: #090a0f !important;
    font-size: 23px !important;
    font-weight: 800;
}

#depositAmount {
    border: 4px solid #fff !important;
    background: linear-gradient(135deg, #163e91, #191134) !important;
    box-shadow: 0 8px 0 #0b1e4d;
}

.sc-deposit-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 22px 0 28px;
}

.sc-deposit-presets .deposit-preset {
    display: grid !important;
    place-items: center;
    min-height: 82px;
    margin: 0 !important;
    color: #fff !important;
    border: 2px solid #363940 !important;
    border-radius: 20px !important;
    background: #17181d !important;
    box-shadow: none !important;
    font-size: 20px;
    font-weight: 900;
}

.sc-deposit-presets .deposit-preset.ativo {
    color: #17346c !important;
    border: 3px solid #fff !important;
    background: var(--sc-green) !important;
    box-shadow: 0 8px 0 #087716 !important;
}

body:has(.sc-deposit-page #payment_pix) #about,
body:has(.sc-deposit-page #payment_pix) .intermission {
    display: none;
}

/* Bet screen */
body:has(#auth input[name="jogo"][value="subway"]) .hero-section {
    min-height: calc(100vh - 160px);
    padding: 30px 14px 60px !important;
    background: radial-gradient(circle at 50% 5%, #176046, #07152f 55%) !important;
}

body:has(#auth input[name="jogo"][value="subway"]) .hero-section > .balance {
    position: static;
    width: min(100%, 650px);
    margin: 0 auto -35px;
    transform: translateY(200px);
    padding: 25px;
    color: #17346c;
    border: 4px solid #fff;
    border-radius: 25px;
    background: var(--sc-yellow);
    box-shadow: 0 9px 0 #9e6a00;
    text-align: center;
    font-size: 23px;
}

body:has(#auth input[name="jogo"][value="subway"]) .minting-container {
    width: min(100%, 690px);
    padding: 36px 28px !important;
    color: #fff !important;
    border: 4px solid #fff;
    border-radius: 32px;
    background: linear-gradient(145deg, #1c4b9d, #091538 72%, #231232);
    box-shadow: 0 10px 0 #153a83;
}

body:has(#auth input[name="jogo"][value="subway"]) .minting-container h2 {
    margin-bottom: 8px;
    color: var(--sc-orange);
    font-size: clamp(38px, 8vw, 65px);
    line-height: .9;
}

body:has(#auth input[name="jogo"][value="subway"]) .minting-container > p:first-of-type {
    min-height: 180px;
    margin: 0 0 85px;
    padding-top: 12px;
    color: #d5dcf0;
}

body:has(#auth input[name="jogo"][value="subway"]) #auth .rarity-heading {
    color: #d7dcef;
    letter-spacing: 2px;
    text-transform: uppercase;
}

body:has(#auth input[name="jogo"][value="subway"]) #aposta {
    width: 100%;
    height: 80px;
    color: #17346c;
    border: 4px solid #fff;
    border-radius: 22px;
    background: #f7ffae;
    font-size: 27px;
    font-weight: 900;
    text-align: center;
}

.sc-bet-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 18px 0 24px;
}

.sc-bet-presets button {
    min-height: 72px;
    color: #17346c;
    border: 4px solid #fff;
    border-radius: 21px;
    background: var(--sc-yellow);
    box-shadow: 0 7px 0 #9e6a00;
    font: inherit;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
}

.sc-bet-presets button:nth-child(2n) {
    background: var(--sc-orange);
    box-shadow: 0 7px 0 #a93417;
}

.sc-bet-presets button:nth-child(3n) {
    background: #16b8db;
    box-shadow: 0 7px 0 #09647b;
}

.sc-bet-presets button.active {
    background: var(--sc-green);
    box-shadow: 0 7px 0 #087716, 0 0 22px rgba(35, 239, 18, .5);
}

.sc-free-play {
    display: block;
    width: min(100%, 660px);
    margin: 22px auto 4px;
    padding: 19px 24px;
    color: #17346c !important;
    border: 4px solid #fff !important;
    border-radius: 25px !important;
    background: var(--sc-yellow) !important;
    box-shadow: 0 9px 0 #9e6a00, 0 0 25px rgba(255, 201, 40, .32) !important;
    font-size: clamp(19px, 4vw, 28px) !important;
    font-weight: 900 !important;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.sc-free-play:hover,
.sc-free-play:focus-visible {
    color: #17346c !important;
    transform: translateY(-2px);
    box-shadow: 0 11px 0 #9e6a00, 0 0 30px rgba(255, 201, 40, .42) !important;
}

/* Withdraw */
.sc-withdraw-page {
    min-height: calc(100vh - 160px);
    padding: 38px 16px 56px !important;
    background:
        radial-gradient(circle at 50% 0, rgba(35, 239, 18, .13), transparent 34%),
        #101116 !important;
}

.sc-withdraw-page > .balance {
    position: static;
    width: min(100%, 680px);
    margin: 0 auto 24px;
    padding: 24px;
    color: #17346c;
    border: 4px solid #fff;
    border-radius: 24px;
    background: var(--sc-yellow);
    box-shadow: 0 8px 0 #9e6a00;
    text-align: center;
    font-size: 22px;
}

.sc-withdraw-page > .minting-container {
    width: min(100%, 680px);
    padding: 32px 28px !important;
    color: #fff !important;
    border: 3px solid rgba(255, 255, 255, .9);
    border-radius: 30px;
    background: linear-gradient(145deg, #183f8c, #09142f 62%, #26162f);
    box-shadow: 0 9px 0 #102e6e, 0 24px 55px rgba(0, 0, 0, .38);
}

.sc-withdraw-page h2 {
    margin: 0 0 7px;
    color: #fff;
    font-size: 31px;
}

.sc-withdraw-page > .minting-container > p {
    color: #b8bdca;
}

.sc-withdraw-page .properties {
    margin-top: 22px;
}

.sc-withdraw-page .rarity-heading {
    margin: 17px 0 8px;
    color: #bfc5d4;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sc-withdraw-page .large-input-field {
    width: 100%;
    height: 78px !important;
    margin: 0 !important;
    padding: 0 22px !important;
    color: #fff !important;
    border: 2px solid #39445f !important;
    border-radius: 21px !important;
    background: #080c18 !important;
    font-size: 21px !important;
    font-weight: 800;
}

.sc-withdraw-page #pixgenerator {
    margin-top: 25px;
}

.sc-withdraw-page .progress-bar {
    overflow: hidden;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #080c18;
}

.sc-withdraw-page .progress-bar-fill {
    background: var(--sc-green) !important;
}

.sc-withdraw-page .custom-table,
#rarity .custom-table {
    overflow: hidden;
    color: #e9edf7;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: #111724;
}

.sc-withdraw-page .custom-table th,
#rarity .custom-table th {
    color: #17346c;
    background: var(--sc-yellow);
}

/* Affiliate / account cards */
.sc-affiliate-page {
    min-height: calc(100vh - 160px);
    padding: 38px 16px 60px !important;
    background:
        radial-gradient(circle at 15% 10%, rgba(40, 97, 187, .35), transparent 32%),
        radial-gradient(circle at 85% 38%, rgba(237, 62, 127, .16), transparent 28%),
        #090f25 !important;
}

.sc-affiliate-page > .minting-container {
    width: min(100%, 920px);
    padding: 32px 28px !important;
    color: #fff !important;
    border: 3px solid #fff;
    border-radius: 30px;
    background: linear-gradient(145deg, #1c4b96, #091634 58%, #2b193a);
    box-shadow: 0 9px 0 #163c83, 0 24px 60px rgba(0, 0, 0, .42);
}

.sc-affiliate-page .mint-card-image {
    max-width: 150px;
    margin-bottom: 18px;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, .35));
}

.sc-affiliate-page h2 {
    color: #fff;
    font-size: clamp(29px, 5vw, 44px);
}

.sc-affiliate-page h3,
.sc-affiliate-page .rarity-heading {
    color: var(--sc-yellow);
}

.sc-affiliate-page .properties {
    margin-top: 24px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 23px;
    background: rgba(5, 12, 31, .72);
}

.sc-affiliate-page .rarity-row {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    background: #111b37 !important;
}

.sc-affiliate-page .rarity-row.blue {
    border-color: rgba(35, 239, 18, .45);
    background: #102b24 !important;
}

.sc-affiliate-page .tableWrapper {
    overflow-x: auto;
    border-radius: 18px;
}

.sc-affiliate-page table {
    width: 100%;
    color: #e8ecf5;
    background: #0b1227;
}

.sc-affiliate-page table th,
.sc-affiliate-page .indications th {
    color: #17346c;
    background: var(--sc-yellow) !important;
}

.sc-affiliate-page table td {
    border-color: rgba(255, 255, 255, .08) !important;
}

.sc-affiliate-page table button {
    color: var(--sc-green);
    font-weight: 900;
}

.sc-affiliate-page .large-input-field {
    min-height: 65px;
    color: #fff !important;
    border: 2px solid #34466f !important;
    border-radius: 17px !important;
    background: #080e20 !important;
}

.sc-affiliate-page .primary-button {
    color: #102450 !important;
    border: 3px solid #fff !important;
    border-radius: 20px !important;
    background: var(--sc-green) !important;
    box-shadow: 0 7px 0 #087716 !important;
    font-weight: 900;
}

@media (max-width: 640px) {
    .sc-withdraw-page > .minting-container,
    .sc-affiliate-page > .minting-container {
        padding: 24px 17px !important;
        border-radius: 24px;
    }

    .sc-affiliate-page .properties {
        padding: 15px;
    }
}

/* Profile / account center */
.sc-profile-page {
    min-height: calc(100vh - 160px);
    padding: 42px 16px 65px;
    background:
        radial-gradient(circle at 50% 0, rgba(40, 97, 187, .22), transparent 32%),
        #101116;
}

.sc-profile-shell {
    width: min(100%, 760px);
    margin: 0 auto;
}

.sc-profile-summary {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 27px;
    background: #15171d;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.sc-profile-avatar {
    display: grid;
    place-items: center;
    width: 92px;
    height: 92px;
    color: #fff;
    border: 4px solid #fff;
    border-radius: 26px;
    background: linear-gradient(145deg, var(--sc-orange), var(--sc-pink));
    box-shadow: 0 7px 0 #8e2a37;
    font-size: 39px;
    font-weight: 900;
}

.sc-profile-identity h1 {
    margin: 0 0 4px;
    color: #fff;
    font-size: clamp(22px, 5vw, 32px);
}

.sc-profile-identity p,
.sc-profile-identity small {
    display: block;
    margin: 0;
}

.sc-profile-identity p {
    color: #858996;
}

.sc-profile-identity small {
    margin-top: 6px;
    color: var(--sc-green);
    font-weight: 900;
    letter-spacing: 1px;
}

.sc-profile-balance {
    padding: 14px 17px;
    color: #17346c;
    border: 3px solid #fff;
    border-radius: 18px;
    background: var(--sc-yellow);
    box-shadow: 0 6px 0 #9e6a00;
    text-align: right;
}

.sc-profile-balance span,
.sc-profile-balance strong {
    display: block;
}

.sc-profile-balance span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.sc-profile-balance strong {
    margin-top: 3px;
    font-size: 19px;
}

.sc-profile-links {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 27px;
    background: #15171d;
}

.sc-profile-links > a {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    padding: 22px 25px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.sc-profile-links > a:last-child {
    border-bottom: 0;
}

.sc-profile-links > a:hover,
.sc-profile-links > a:focus-visible {
    background: #1c2130;
}

.sc-profile-links > a > span:nth-child(2) strong,
.sc-profile-links > a > span:nth-child(2) small {
    display: block;
}

.sc-profile-links > a > span:nth-child(2) strong {
    font-size: 18px;
}

.sc-profile-links > a > span:nth-child(2) small {
    margin-top: 3px;
    color: #8f94a2;
    font-size: 12px;
}

.sc-profile-links > a > b {
    color: #5c616f;
    font-size: 30px;
}

.sc-profile-link-icon {
    display: grid;
    place-items: center;
    width: 55px;
    height: 55px;
    border-radius: 17px;
    font-size: 24px;
}

.sc-profile-link-icon.purple { color: #b893ff; background: #241c45; }
.sc-profile-link-icon.blue { color: #6ba5ff; background: #14264c; }
.sc-profile-link-icon.yellow { color: #ffc928; background: #382d12; }
.sc-profile-link-icon.green { color: #23ef12; background: #12371a; }
.sc-profile-link-icon.cyan { color: #20c7e5; background: #11343c; }

@media (max-width: 640px) {
    .sc-profile-page {
        padding: 24px 12px 45px;
    }

    .sc-profile-summary {
        grid-template-columns: auto 1fr;
        gap: 14px;
        padding: 19px;
    }

    .sc-profile-avatar {
        width: 72px;
        height: 72px;
        border-radius: 21px;
        font-size: 31px;
    }

    .sc-profile-balance {
        grid-column: 1 / -1;
        text-align: center;
    }

    .sc-profile-links > a {
        gap: 13px;
        padding: 17px 15px;
    }

    .sc-profile-link-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
    }
}

body:has(#auth input[name="jogo"][value="subway"]) #about,
body:has(#auth input[name="jogo"][value="subway"]) #wins {
    display: none !important;
}

@media (max-width: 640px) {
    .sc-header {
        min-height: 70px;
        gap: 8px;
        padding: 8px 12px;
    }

    .sc-logo img {
        width: 86px;
    }

    .sc-balance {
        min-height: 46px;
        padding: 0 9px;
        font-size: 12px;
    }

    .sc-icon-button,
    .sc-profile-button {
        width: 47px;
        min-height: 47px;
        border-radius: 14px;
    }

    .sc-livebar {
        top: 70px;
    }

    .sc-account-overlay {
        padding: 82px 14px 105px;
    }

    .sc-account-card {
        border-radius: 24px;
    }

    .sc-deposit-presets {
        gap: 8px;
    }

    .sc-deposit-presets .deposit-preset {
        min-height: 67px;
        padding: 8px !important;
        font-size: 16px;
    }
}
