:root {
    --sz-bg: #001b43;
    --sz-bg-deep: #001026;
    --sz-panel: #07182f;
    --sz-panel-2: #0a203e;
    --sz-cyan: #11c8ff;
    --sz-blue: #078cf3;
    --sz-text: #f8fbff;
    --sz-muted: #9eacc2;
    --sz-green: #16ee32;
    --sz-red: #ff5364;
    --sz-gold: #ffd51a;
    --sz-border: rgba(74, 151, 235, .24);
}

html, body { background: var(--sz-bg-deep); }
body { margin: 0; color: var(--sz-text); }
body.sz-with-bottom-nav { padding-bottom: 96px; }

.sz-topbar {
    position: sticky;
    top: 0;
    z-index: 2000;
    height: 88px;
    background: rgba(0, 15, 38, .97);
    border-bottom: 1px solid rgba(45, 139, 226, .13);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}
.sz-topbar__inner {
    width: min(1180px, calc(100% - 28px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.sz-brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.sz-brand img { width: 148px; height: 68px; object-fit: cover; border-radius: 14px; mix-blend-mode: normal; }
.sz-topbar__actions { display: flex; align-items: center; gap: 14px; }
.sz-topbar__hello { color: var(--sz-muted); font-weight: 700; max-width: 190px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sz-btn {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, .19);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #fff !important;
    text-decoration: none !important;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .03em;
    transition: .2s ease;
    box-sizing: border-box;
}
.sz-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.sz-btn--outline { background: #07162d; border-color: #3a4861; }
.sz-btn--primary { background: linear-gradient(135deg, #10cafc, #0683ee); border-color: transparent; box-shadow: 0 9px 30px rgba(7, 149, 242, .26); }
.sz-btn--play { background: linear-gradient(135deg, #10c9fa, #087bdf); border: 0; min-width: 220px; }
.sz-btn--soft-pulse {
    animation: szSoftPulse 2.4s ease-in-out infinite;
    transform-origin: center;
}
@keyframes szSoftPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 7px 20px rgba(16, 201, 250, .16); }
    50% { transform: scale(1.018); box-shadow: 0 9px 24px rgba(16, 201, 250, .27); }
}
@media (prefers-reduced-motion: reduce) {
    .sz-btn--soft-pulse { animation: none; }
}


.sz-wallet-chip {
    min-height: 50px;
    min-width: 158px;
    padding: 7px 17px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-sizing: border-box;
    background: linear-gradient(135deg, #55c8ff 0%, #1fa8f5 100%);
    border: 2px solid rgba(190, 237, 255, .95);
    box-shadow: 0 8px 24px rgba(13, 145, 224, .28), inset 0 1px 0 rgba(255,255,255,.24);
    color: #fff;
    cursor: default;
    user-select: none;
}
.sz-wallet-chip__icon { display: none !important; }
.sz-wallet-chip__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.sz-wallet-chip__content small {
    color: rgba(255,255,255,.78);
    font-size: 9px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 3px;
}
.sz-wallet-chip__content strong {
    color: #fff;
    font-size: 16px;
    white-space: nowrap;
    font-weight: 1000;
}

.sz-withdraw-available {
    margin: 14px 0 22px;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(8,57,124,.96), rgba(5,31,78,.98));
    border: 1px solid rgba(72,191,255,.32);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 28px rgba(0,0,0,.18);
}
.sz-withdraw-available span {
    color: #bcd5ec;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .035em;
}
.sz-withdraw-available strong {
    color: #11c8ff !important;
    font-size: clamp(21px, 3vw, 30px);
    white-space: nowrap;
}

.sz-page { min-height: calc(100vh - 88px); background: linear-gradient(180deg, #032657 0%, #001a42 42%, #00132f 100%); }
.sz-home { width: min(1180px, calc(100% - 28px)); margin: 0 auto; padding: 24px 0 56px; }
.sz-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #03142d;
    border: 1px solid var(--sz-border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
    aspect-ratio: 1600 / 690;
}
.sz-slide { position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .55s ease; }
.sz-slide.is-active { opacity: 1; pointer-events: auto; }
.sz-slide a { display: block; width: 100%; height: 100%; }
.sz-slide img { width: 100%; height: 100%; display: block; object-fit: cover; }
.sz-carousel__dots { position: absolute; z-index: 5; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 8px; }
.sz-carousel__dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.48); cursor: pointer; transition: .2s ease; }
.sz-carousel__dot.is-active { width: 28px; background: #fff; }
.sz-carousel__arrow { position: absolute; z-index: 5; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: rgba(0, 13, 35, .56); color: white; font-size: 24px; cursor: pointer; }
.sz-carousel__arrow--prev { left: 12px; }
.sz-carousel__arrow--next { right: 12px; }

.sz-home-actions { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 22px 0 30px; flex-wrap: wrap; }
.sz-home-actions__hint { color: #b8c5d8; font-size: 14px; width: 100%; text-align: center; margin: 2px 0 0; }

.sz-results {
    background: linear-gradient(180deg, rgba(2, 35, 82, .97), rgba(0, 25, 64, .97));
    border: 1px solid rgba(37, 129, 226, .22);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
}
.sz-section-title { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 22px; font-size: clamp(25px, 3vw, 38px); text-transform: uppercase; letter-spacing: .035em; font-weight: 1000; }
.sz-section-title__icon { font-size: 34px; }
.sz-results__viewport { max-height: 510px; overflow: hidden; }
.sz-results__track { display: flex; flex-direction: column; gap: 12px; transition: transform .55s ease; }
.sz-result-card {
    min-height: 92px;
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 13px 18px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1298f8 0%, #078aef 100%);
    border-bottom: 4px solid #0466bb;
    box-shadow: 0 8px 18px rgba(0,0,0,.13);
}
.sz-result-card--loss { background: linear-gradient(90deg, #155f99 0%, #164f7f 100%); border-bottom-color: #173e63; }
.sz-result-card__icon { width: 62px; height: 62px; border-radius: 14px; object-fit: cover; border: 4px solid white; box-sizing: border-box; }
.sz-result-card__name { font-size: clamp(20px, 2vw, 28px); font-weight: 1000; line-height: 1.05; margin-bottom: 7px; }
.sz-result-card__game { color: var(--sz-gold); font-weight: 900; font-size: clamp(15px, 1.7vw, 21px); }
.sz-result-card__value { text-align: right; font-weight: 900; font-size: clamp(18px, 2vw, 27px); white-space: nowrap; }
.sz-result-card__value strong { color: var(--sz-green); }
.sz-result-card--loss .sz-result-card__value strong { color: #ffb6bf; }
.sz-empty { padding: 36px 18px; color: var(--sz-muted); text-align: center; background: rgba(255,255,255,.04); border-radius: 14px; }

.sz-bottom-nav {
    position: fixed;
    z-index: 2500;
    left: 0;
    right: 0;
    bottom: 0;
    height: 84px;
    background: rgba(6, 20, 43, .98);
    border-top: 1px solid rgba(75, 133, 200, .22);
    box-shadow: 0 -14px 34px rgba(0, 0, 0, .24);
    backdrop-filter: blur(16px);
}
.sz-bottom-nav__inner { width: min(760px, 100%); height: 100%; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; }
.sz-nav-item { color: #93a1b8 !important; text-decoration: none !important; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; font-weight: 800; font-size: 13px; position: relative; }
.sz-nav-item svg { width: 26px; height: 26px; fill: currentColor; }
.sz-nav-item.is-active { color: var(--sz-cyan) !important; }
.sz-nav-item--deposit { transform: translateY(-20px); color: white !important; }
.sz-nav-item--deposit .sz-nav-item__bubble { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(145deg, #0dc8fb, #0788ec); display: flex; align-items: center; justify-content: center; border: 7px solid #081a37; box-shadow: 0 8px 22px rgba(0, 159, 242, .35); }
.sz-nav-item--deposit .sz-nav-item__label { color: white; margin-top: -2px; }

.sz-auth-page, .sz-profile-page { min-height: calc(100vh - 88px); background: radial-gradient(circle at 50% 0%, #074d8b 0%, #032652 33%, #001329 100%); padding: 42px 16px 60px; box-sizing: border-box; }
.sz-auth-card, .sz-profile-card { width: min(620px, 100%); margin: 0 auto; padding: clamp(22px, 4vw, 38px); box-sizing: border-box; background: rgba(4, 20, 45, .92); border: 1px solid rgba(67, 151, 240, .25); border-radius: 24px; box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.sz-auth-card h1, .sz-profile-card h1 { margin: 0 0 8px; color: white; font-size: clamp(28px, 5vw, 42px); }
.sz-auth-card__lead { color: #aebdd2; margin: 0 0 25px; }
.sz-form-group { margin-bottom: 18px; }
.sz-form-group label { display: block; margin: 0 0 7px; font-weight: 800; color: #d8e7fa; }
.sz-input { width: 100%; height: 52px; padding: 0 15px; border-radius: 13px; border: 1px solid #254b76; background: #061a37; color: white; outline: none; box-sizing: border-box; font-size: 16px; }
.sz-input:focus { border-color: var(--sz-cyan); box-shadow: 0 0 0 3px rgba(17, 200, 255, .12); }
.sz-password-wrap { position: relative; }
.sz-password-wrap .sz-input { padding-right: 58px; }
.sz-password-toggle { position: absolute; right: 8px; top: 7px; width: 40px; height: 38px; border: 0; border-radius: 10px; background: transparent; color: #9eb4d0; cursor: pointer; font-size: 20px; }
.sz-auth-submit { width: 100%; border: 0; cursor: pointer; font-size: 16px; margin-top: 6px; }
.sz-auth-alt { text-align: center; color: #aebdd2; margin-top: 20px; }
.sz-auth-alt a { color: var(--sz-cyan); font-weight: 900; text-decoration: none; }
.sz-auth-banner { width: 100%; border-radius: 16px; margin: 0 0 24px; display: block; }

.sz-profile-grid { display: grid; gap: 12px; margin-top: 22px; }
.sz-profile-field { padding: 15px 17px; border-radius: 14px; background: #071d3c; border: 1px solid rgba(79, 139, 206, .18); }
.sz-profile-field small { display: block; color: #8fa2bc; margin-bottom: 4px; }
.sz-profile-field strong { color: white; font-size: 17px; word-break: break-word; }
.sz-profile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }

.sz-footer { background: #000f26; color: #7f91ab; text-align: center; padding: 30px 16px 120px; border-top: 1px solid rgba(255,255,255,.06); font-size: 13px; }
.sz-footer a { color: #a9c7ea; }

@media (max-width: 700px) {
    .sz-topbar { height: 72px; }
    .sz-page { min-height: calc(100vh - 72px); }
    .sz-topbar__inner { width: calc(100% - 18px); gap: 8px; }
    .sz-brand img { width: 104px; height: 56px; border-radius: 10px; }
    .sz-topbar__actions { gap: 7px; }
    .sz-topbar__hello { display: none; }
    .sz-btn { min-height: 42px; padding: 0 14px; font-size: 12px; }
    .sz-btn--outline { padding: 0 12px; }
    .sz-wallet-chip { min-width: 120px; min-height: 42px; padding: 6px 12px; gap: 0; border-radius: 13px; }
    .sz-wallet-chip__icon { display: none !important; }
    .sz-wallet-chip__content small { font-size: 8px; margin-bottom: 2px; }
    .sz-wallet-chip__content strong { font-size: 13px; }
    .sz-home { width: calc(100% - 16px); padding-top: 12px; }
    .sz-carousel { border-radius: 14px; aspect-ratio: 1600 / 690; }
    .sz-carousel__arrow { display: none; }
    .sz-carousel__dots { bottom: 7px; }
    .sz-results { padding: 14px 8px 14px; border-radius: 16px; }
    .sz-section-title { font-size: 24px; margin-bottom: 14px; }
    .sz-result-card { grid-template-columns: 54px minmax(0, 1fr) auto; gap: 10px; min-height: 78px; padding: 10px; }
    .sz-result-card__icon { width: 52px; height: 52px; border-width: 3px; border-radius: 12px; }
    .sz-result-card__name { font-size: 18px; margin-bottom: 4px; }
    .sz-result-card__game { font-size: 14px; }
    .sz-result-card__value { font-size: 15px; }
    .sz-bottom-nav { height: 76px; }
    body.sz-with-bottom-nav { padding-bottom: 84px; }
    .sz-nav-item { font-size: 11px; gap: 3px; }
    .sz-nav-item svg { width: 23px; height: 23px; }
    .sz-nav-item--deposit { transform: translateY(-17px); }
    .sz-nav-item--deposit .sz-nav-item__bubble { width: 62px; height: 62px; border-width: 6px; }
    .sz-auth-page, .sz-profile-page { min-height: calc(100vh - 72px); padding-top: 24px; }
}

@media (max-width: 410px) {
    .sz-btn { padding: 0 10px; font-size: 11px; }
    .sz-result-card__value { white-space: normal; max-width: 90px; }
}


/* Transparência do fallback visual de resultados */
.sz-results__demo-note{margin:-6px 0 14px;color:#9fb3ca;font-size:12px;line-height:1.4;text-align:center}

/* ======================================================================
   WINTER HOLIDAY / APP SCREENS
   Shared visual layer for Subway, deposit, withdraw, affiliate and
   presell result screens. Business logic and form structure stay intact.
   ====================================================================== */
body.sz-winter-theme {
    min-height: 100vh;
    background-color: #00132f !important;
    background-image:
        linear-gradient(180deg, rgba(0, 10, 31, .34) 0%, rgba(0, 22, 55, .58) 48%, rgba(0, 11, 29, .84) 100%),
        url('/assets/subzero/winter-holiday-bg.png') !important;
    background-size: cover, auto 100vh !important;
    background-position: center, center top !important;
    background-repeat: no-repeat, no-repeat !important;
    background-attachment: fixed, fixed !important;
    color: var(--sz-text);
}

body.sz-winter-theme .hero-section,
body.sz-winter-theme .hero-section.dark,
body.sz-winter-theme .rarity-section,
body.sz-winter-theme .rarity-section.white,
body.sz-winter-theme .comic-book,
body.sz-winter-theme .comic-book.white,
body.sz-winter-theme .intermission {
    background: transparent !important;
    border: 0 !important;
    color: var(--sz-text) !important;
}

body.sz-winter-theme .hero-section,
body.sz-winter-theme .hero-section.dark {
    height: auto !important;
    min-height: calc(100vh - 88px);
    padding: clamp(42px, 6vw, 78px) 16px !important;
    box-sizing: border-box;
    justify-content: center;
}

body.sz-winter-theme .rarity-section,
body.sz-winter-theme .comic-book,
body.sz-winter-theme .comic-book.white {
    padding: 34px 16px 48px !important;
}

body.sz-winter-theme .intermission {
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* The old presell background layer is intentionally hidden: the shared
   fixed Winter Holiday background is the page background now. */
body.sz-winter-theme .hero-bg {
    display: none !important;
}

body.sz-winter-theme .hero-container {
    min-height: calc(100vh - 160px);
}

/* Main cards */
body.sz-winter-theme .minting-container,
body.sz-winter-theme .minting-container.w-container,
body.sz-winter-theme .roboto-card {
    width: min(900px, 100%) !important;
    max-width: 900px !important;
    box-sizing: border-box;
    padding: clamp(22px, 4vw, 42px) !important;
    border: 1px solid rgba(74, 151, 235, .26) !important;
    border-radius: 24px !important;
    background: linear-gradient(180deg, rgba(5, 30, 66, .94), rgba(2, 17, 43, .96)) !important;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .035) !important;
    color: var(--sz-text) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

body.sz-winter-theme .minting-container.max-width,
body.sz-winter-theme .minting-container.max-width-700px,
body.sz-winter-theme .minting-container.w-container.max-width,
body.sz-winter-theme .minting-container.w-container.max-width-700px {
    max-width: 760px !important;
}

body.sz-winter-theme .minting-container h1,
body.sz-winter-theme .minting-container h2,
body.sz-winter-theme .minting-container h3,
body.sz-winter-theme .minting-container h4,
body.sz-winter-theme .minting-container strong,
body.sz-winter-theme .minting-container b {
    color: #f8fbff;
}

body.sz-winter-theme .minting-container h2 {
    margin-top: 0;
    color: #ffffff !important;
    text-shadow: 0 4px 18px rgba(0, 126, 239, .25);
}

body.sz-winter-theme .minting-container h3,
body.sz-winter-theme .minting-container .rarity-heading {
    color: #bfe7ff !important;
}

body.sz-winter-theme .minting-container p,
body.sz-winter-theme .minting-container .paragraph,
body.sz-winter-theme .minting-container li {
    color: #c5d3e7 !important;
}

body.sz-winter-theme .minting-container a:not(.primary-button):not(.button) {
    color: var(--sz-cyan);
}

body.sz-winter-theme .mint-card-image {
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, .25));
}

/* Form panels and data rows */
body.sz-winter-theme .properties {
    width: 100%;
    max-width: 100% !important;
    margin: 18px 0 24px;
}

body.sz-winter-theme .rarity-row,
body.sz-winter-theme .rarity-row.blue,
body.sz-winter-theme .rarity-row.roboto-type,
body.sz-winter-theme .rarity-row.roboto-type.blue,
body.sz-winter-theme .rarity-row.roboto-type2 {
    border: 1px solid rgba(83, 150, 224, .22) !important;
    border-radius: 13px !important;
    background: rgba(5, 31, 67, .78) !important;
    color: #e9f4ff !important;
    box-shadow: none !important;
}

body.sz-winter-theme .rarity-number,
body.sz-winter-theme .rarity-number.full,
body.sz-winter-theme .padded {
    color: #dcecff !important;
}

body.sz-winter-theme input.w-input,
body.sz-winter-theme select.w-input,
body.sz-winter-theme textarea.w-input,
body.sz-winter-theme .large-input-field {
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    border: 1px solid #27517d !important;
    border-radius: 12px !important;
    background: #061a37 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    outline: none !important;
}

body.sz-winter-theme input.w-input::placeholder,
body.sz-winter-theme textarea.w-input::placeholder {
    color: #8197b5 !important;
}

body.sz-winter-theme input.w-input:focus,
body.sz-winter-theme select.w-input:focus,
body.sz-winter-theme textarea.w-input:focus,
body.sz-winter-theme .large-input-field:focus {
    border-color: var(--sz-cyan) !important;
    box-shadow: 0 0 0 3px rgba(17, 200, 255, .12) !important;
}

/* Actions */
body.sz-winter-theme .primary-button,
body.sz-winter-theme .primary-button.w-button,
body.sz-winter-theme input.primary-button,
body.sz-winter-theme button.primary-button {
    border: 0 !important;
    border-radius: 999px !important;
    background: linear-gradient(135deg, #10cafc, #0788ec) !important;
    box-shadow: 0 11px 30px rgba(7, 139, 236, .28) !important;
    color: #fff !important;
    text-shadow: none !important;
    font-weight: 900 !important;
    letter-spacing: .035em !important;
    transition: transform .18s ease, filter .18s ease, box-shadow .18s ease !important;
}

body.sz-winter-theme .primary-button:hover,
body.sz-winter-theme .primary-button.w-button:hover,
body.sz-winter-theme input.primary-button:hover,
body.sz-winter-theme button.primary-button:hover {
    transform: translateY(-1px) !important;
    filter: brightness(1.08);
    box-shadow: 0 14px 34px rgba(7, 139, 236, .36) !important;
}

body.sz-winter-theme .button.deposit-preset,
body.sz-winter-theme a.deposit-preset {
    border: 1px solid rgba(54, 157, 238, .42) !important;
    border-radius: 12px !important;
    background: #08264d !important;
    color: #dff4ff !important;
    box-shadow: none !important;
    font-weight: 800;
}

body.sz-winter-theme .button.deposit-preset:hover,
body.sz-winter-theme a.deposit-preset:hover {
    background: #0b3b70 !important;
    color: #ffffff !important;
}

/* Balance badge */
body.sz-winter-theme .balance,
body.sz-winter-theme #wins {
    border: 1px solid rgba(66, 155, 236, .28) !important;
    background: linear-gradient(135deg, rgba(7, 33, 70, .97), rgba(5, 56, 104, .97)) !important;
    box-shadow: 0 15px 32px rgba(0, 0, 0, .28) !important;
    color: #d9efff !important;
}

body.sz-winter-theme .balance b,
body.sz-winter-theme #wins b {
    color: #ffffff !important;
}

/* Tables */
body.sz-winter-theme .custom-table,
body.sz-winter-theme .indications {
    width: 100%;
    overflow: hidden;
    border: 1px solid rgba(82, 153, 226, .25) !important;
    border-radius: 14px !important;
    background: rgba(4, 25, 55, .82) !important;
    color: #dcecff !important;
    box-shadow: none !important;
}

body.sz-winter-theme .custom-table thead,
body.sz-winter-theme .indications thead,
body.sz-winter-theme .custom-table th,
body.sz-winter-theme .indications th {
    background: #0b315d !important;
    color: #dff3ff !important;
    border-color: rgba(100, 163, 226, .16) !important;
}

body.sz-winter-theme .custom-table td,
body.sz-winter-theme .indications td {
    color: #c8d9ee !important;
    border-color: rgba(100, 163, 226, .12) !important;
}

body.sz-winter-theme .indications button {
    border: 0;
    background: transparent;
    color: var(--sz-cyan) !important;
    font-weight: 800;
    cursor: pointer;
}

/* Affiliate chart area */
body.sz-winter-theme .w-layout-grid.grid {
    gap: 16px;
}

body.sz-winter-theme canvas {
    border-radius: 14px;
    background: rgba(4, 25, 55, .62);
    padding: 8px;
    box-sizing: border-box;
}

/* Keep promotional banners as content banners, not page backgrounds. */
body.sz-winter-theme .minting-container > a > img,
body.sz-winter-theme .minting-container > img[style*="max-width: 800px"] {
    border: 1px solid rgba(62, 148, 232, .22);
    box-shadow: 0 14px 35px rgba(0, 0, 0, .25);
}

/* PIX QR must stay high contrast. */
body.sz-winter-theme .minting-container img[src^="data:image"] {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-sizing: border-box;
}

/* Presell result card */
body.sz-winter-theme .hero-actions {
    justify-content: center;
    margin-top: 24px !important;
}

/* Rollover theme */
body.sz-winter-theme .progress-bar {
    --colour1: #11c8ff !important;
    --colour2: #078cf3 !important;
    background: rgba(5, 30, 63, .9) !important;
    border: 1px solid rgba(68, 148, 228, .28);
}

/* Responsive polish */
@media (max-width: 700px) {
    body.sz-winter-theme {
        background-size: cover, auto 100vh !important;
        background-position: center, center top !important;
    }

    body.sz-winter-theme .hero-section,
    body.sz-winter-theme .hero-section.dark {
        min-height: calc(100vh - 72px);
        padding: 30px 10px 40px !important;
    }

    body.sz-winter-theme .hero-container {
        min-height: calc(100vh - 140px);
        padding-left: 8px;
        padding-right: 8px;
    }

    body.sz-winter-theme .rarity-section,
    body.sz-winter-theme .comic-book,
    body.sz-winter-theme .comic-book.white {
        padding: 18px 10px 30px !important;
    }

    body.sz-winter-theme .minting-container,
    body.sz-winter-theme .minting-container.w-container {
        padding: 22px 16px !important;
        border-radius: 18px !important;
    }

    body.sz-winter-theme .balance {
        margin-bottom: 14px;
        padding: 12px 18px !important;
        border-radius: 14px !important;
        font-size: 14px;
    }

    body.sz-winter-theme .w-layout-grid.grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        height: auto !important;
    }

    body.sz-winter-theme .tableWrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.sz-winter-theme .indications,
    body.sz-winter-theme .custom-table {
        min-width: 560px;
    }

    body.sz-winter-theme .primary-button,
    body.sz-winter-theme input.primary-button,
    body.sz-winter-theme button.primary-button {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 14px 18px !important;
        font-size: 15px !important;
    }

    body.sz-winter-theme .button.deposit-preset,
    body.sz-winter-theme a.deposit-preset {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 4px 2px !important;
        min-width: calc(50% - 8px);
        min-height: 46px;
        box-sizing: border-box;
    }
}


/* ======================================================================
   PRESELL WINTER POLISH
   Visual-only overrides for the presell landing + win/lose result pages.
   ====================================================================== */
body.sz-winter-theme .hero-section > .balance {
    position: relative !important;
    inset: auto !important;
    display: table;
    margin: 0 auto 18px !important;
    padding: 12px 20px !important;
    border-radius: 999px !important;
    font-size: 14px !important;
    letter-spacing: .035em;
    z-index: 3;
}

body.sz-winter-theme .hero-section > #wins {
    position: relative !important;
    inset: auto !important;
    display: table;
    margin: 16px auto 0 !important;
    padding: 10px 18px !important;
    border-radius: 14px !important;
    text-align: center;
    z-index: 3;
}

body.sz-winter-theme .hero-section .minting-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

body.sz-winter-theme .hero-section .minting-container > h2 {
    font-size: clamp(30px, 5vw, 52px) !important;
    line-height: 1.05;
    margin-bottom: 14px !important;
}

body.sz-winter-theme .hero-section .minting-container > p {
    max-width: 650px;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.6;
}

body.sz-winter-theme .hero-section .minting-container > .primary-button,
body.sz-winter-theme .hero-section .hero-actions .primary-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 52px;
    margin-top: 18px;
    text-decoration: none !important;
}

body.sz-winter-theme .comic-book .minting-container {
    display: grid !important;
    grid-template-columns: minmax(180px, 250px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(22px, 4vw, 42px);
    text-align: left;
}

body.sz-winter-theme .comic-book .minting-container .mint-card-image {
    width: min(240px, 100%) !important;
    margin: 0 auto;
    position: sticky;
    top: 110px;
}

body.sz-winter-theme .comic-book .minting-container h2 {
    font-size: clamp(28px, 4vw, 42px) !important;
}

body.sz-winter-theme .comic-book .minting-container h3 {
    margin-top: 24px;
    margin-bottom: 7px;
}

@media (max-width: 700px) {
    body.sz-winter-theme .hero-section > .balance,
    body.sz-winter-theme .hero-section > #wins {
        width: auto !important;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
    }

    body.sz-winter-theme .comic-book .minting-container {
        grid-template-columns: 1fr !important;
        text-align: left;
    }

    body.sz-winter-theme .comic-book .minting-container .mint-card-image {
        position: static;
        width: 150px !important;
    }
}


/* Saldo real da tela do jogo — card azul-claro */
body.sz-winter-theme .hero-section > .balance {
    background: linear-gradient(135deg, #63d4ff 0%, #2aaaf2 100%) !important;
    border: 2px solid rgba(220, 248, 255, .98) !important;
    color: #05264a !important;
    box-shadow:
        0 10px 26px rgba(9, 126, 201, .30),
        inset 0 1px 0 rgba(255, 255, 255, .42) !important;
    border-radius: 16px !important;
    font-weight: 900 !important;
}

body.sz-winter-theme .hero-section > .balance b {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 65, 115, .22);
}