.rewards-page {
    display: grid;
    gap: 26px;
}
.rewards-page .card {
    margin: 0;
}
.reward-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 240px;
    align-items: center;
    gap: 35px;
    padding: 38px;
    overflow: hidden;
}
.reward-hero h1 {
    max-width: 640px;
    margin: 12px 0 17px;
    font-size: clamp(27px, 3.5vw, 45px);
    line-height: 1.12;
    letter-spacing: -1.4px;
}
.reward-hero p {
    max-width: 570px;
    color: #99acc9;
    font-size: 14px;
    line-height: 1.7;
}
.reward-hero-image {
    width: 100%;
    height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 18px 20px #0004);
}
.reward-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 23px;
}
.reward-summary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 22px;
}
.reward-card-heading {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.reward-summary-grid .card {
    padding: 28px;
}
.reward-summary-grid h2 {
    font-size: 22px;
    line-height: 1.4;
    margin: 0 0 15px;
}
.reward-summary-grid .muted {
    font-size: 12px;
    line-height: 1.8;
}
.vip-progress {
    height: 9px;
    margin: 23px 0 10px;
    background: var(--surface-inset);
    border-radius: 10px;
    overflow: hidden;
}
.vip-progress span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #5db7ff);
    border-radius: inherit;
}
.vip-progress-caption {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    color: #8ca8ce;
    font-size: 11px;
}
.vip-progress-caption strong {
    color: #70aaff;
}
.vip-daily-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    border-top: 1px solid var(--surface-border);
    margin-top: 24px;
    padding-top: 22px;
}
.vip-daily-benefits div {
    display: grid;
    gap: 6px;
}
.vip-daily-benefits strong {
    font-size: 22px;
}
.vip-daily-benefits span {
    color: #96aace;
    font-size: 11px;
    line-height: 1.5;
}
.vip-cashback-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}
.reward-balance {
    display: block;
    font-size: 38px;
    letter-spacing: -1px;
}
.vip-cashback-card form {
    width: 100%;
    margin-top: auto;
}
.vip-cashback-card .button {
    width: 100%;
}
.vip-cashback-card small {
    font-size: 10px;
    line-height: 1.7;
    color: #758eaf;
}
.reward-login-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
}
.reward-login-card h2 {
    font-size: 19px;
    margin-bottom: 9px;
}
.reward-login-card p {
    font-size: 12px;
}
.vip-level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 20px;
}
.vip-level-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
    padding: 26px;
    min-width: 0;
}
.vip-level-card.is-current {
    border-color: #457cce;
    box-shadow: inset 0 1px 0 #ffffff07;
}
.vip-level-card h3 {
    margin-top: 6px;
    font-size: 24px;
}
.vip-level-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: #9ac5ff;
    border: 1px solid var(--surface-border);
    background: var(--surface-raised);
}
.vip-level-emblem .icon {
    width: 25px;
    height: 25px;
}
.vip-level-threshold {
    color: #89a2c6;
    font-size: 12px;
    line-height: 1.7;
}
.vip-level-threshold strong {
    color: #d3e5ff;
}
.reward-benefit-list {
    width: 100%;
    margin: auto 0 0;
}
.reward-benefit-list div {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 13px 0;
    border-top: 1px solid var(--surface-border);
    font-size: 11px;
}
.reward-benefit-list dt {
    color: #8fa8cc;
}
.reward-benefit-list dd {
    margin: 0;
    color: #e4efff;
    text-align: right;
    font-weight: 750;
}
.reward-rules {
    padding: 25px 28px;
}
.reward-rules h3 {
    margin-bottom: 12px;
    font-size: 15px;
}
.reward-rules p {
    font-size: 12px;
    line-height: 1.9;
    color: #8fa5c5;
}
.reward-soft-note {
    padding: 15px;
    border-radius: 11px;
    background: var(--surface-raised);
    color: #8fa7cb;
    font-size: 11px;
    line-height: 1.8;
}
.promotion-shortcuts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.rewards-page .promotion-shortcut {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    padding: 14px 16px;
    transition:
        border-color 0.2s,
        background-color 0.2s;
}
.rewards-page .promotion-shortcut:hover {
    border-color: #3f6fb8;
    background: var(--surface-raised);
}
.promotion-shortcut img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 10px #0005);
}
.promotion-shortcut > span {
    display: grid;
    gap: 3px;
    flex: 1;
    min-width: 0;
}
.promotion-shortcut strong {
    color: #eef4ff;
    font-size: 14px;
    line-height: 1.3;
}
.promotion-shortcut small {
    color: #8fa8cb;
    font-size: 11px;
    line-height: 1.4;
}
.promotion-shortcut .icon {
    width: 16px;
    height: 16px;
    color: #5b98ff;
    transition: transform 0.2s;
}
.promotion-shortcut:hover .icon {
    transform: translateX(3px);
}
.promotion-code-card {
    padding: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.promotion-code-card h2 {
    margin: 10px 0;
    font-size: 24px;
}
.promotion-code-card p {
    line-height: 1.7;
    font-size: 12px;
}
.promotion-code-card form {
    display: flex;
    gap: 10px;
    align-items: end;
}
.promotion-code-card label {
    display: grid;
    gap: 8px;
    font-size: 11px;
    color: #a7bad9;
    flex: 1;
    min-width: 0;
}
.promotion-code-card button {
    flex-shrink: 0;
}
.promotion-code-input {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.promotion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}
.promotion-card {
    overflow: hidden;
    padding: 0;
}
.promotion-card > img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    padding: 15px;
    background: var(--surface);
}
.promotion-card-copy {
    padding: 25px;
    display: grid;
    gap: 12px;
}
.promotion-card-copy h3 {
    font-size: 22px;
}
.promotion-card-copy p {
    color: #8fa8cb;
    font-size: 12px;
    line-height: 1.8;
}
.promotion-card-copy small {
    color: #70a9fc;
    font-size: 10px;
}
.promotion-card-copy .button {
    justify-self: start;
    margin-top: 7px;
}
.reward-empty {
    padding: 28px;
    display: grid;
    justify-items: start;
    gap: 15px;
}
.reward-empty p {
    font-size: 12px;
    line-height: 1.8;
}
.reward-history {
    padding: 26px;
}
.reward-history h2 {
    margin-bottom: 18px;
    font-size: 20px;
}
.reward-history-list {
    display: grid;
    gap: 0;
}
.reward-history-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid #223753;
}
.reward-history-list span {
    display: grid;
    gap: 5px;
    font-size: 12px;
    min-width: 0;
    overflow-wrap: anywhere;
}
.reward-history-list small {
    font-size: 10px;
    color: #758cac;
}
.reward-history-list strong {
    font-size: 14px;
    white-space: nowrap;
    color: #a5cbff;
}
.wheel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: start;
    gap: 24px;
}
.wheel-stage {
    padding: 32px;
    position: relative;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 23px;
    overflow: hidden;
}
.content-page .wheel-stage {
    background:
        linear-gradient(#06112c45, #07142dc7),
        url('illustrations/wheel-background.webp') center / cover;
}
.reward-wheel {
    width: min(100%, 390px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--wheel-paint);
    border: 12px solid #10274f;
    box-shadow:
        0 0 0 2px #4676be,
        0 0 0 7px #07132b,
        0 15px 40px #0005,
        inset 0 0 40px #0006;
    position: relative;
    flex-shrink: 0;
    container-type: inline-size;
}
.wheel-prize-marker {
    position: absolute;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 2px;
    width: 21%;
    height: 21%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    filter: drop-shadow(0 2px 3px #06122dbb);
}
.wheel-prize-marker img {
    width: 11cqi;
    height: 11cqi;
    object-fit: contain;
}
.wheel-prize-marker strong {
    font-size: clamp(7px, 3.1cqi, 12px);
    font-weight: 800;
    line-height: 1.15;
}
.wheel-pointer {
    width: 22px;
    height: 27px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: linear-gradient(#d7eaff, #6aa7ff);
    position: absolute;
    top: 24px;
    z-index: 2;
    filter: drop-shadow(0 2px 4px #0005);
}
.wheel-center {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 25%;
    height: 25%;
    border-radius: 50%;
    background: linear-gradient(160deg, #112f66, #06132c);
    border: 5px solid #5f91e7;
    box-shadow: 0 4px 12px #0008;
    color: #e7f2ff;
    font-size: 46px;
    font-weight: 850;
}
.wheel-center span {
    font-size: clamp(7px, 3cqi, 10px);
    letter-spacing: 0.02em;
    margin-top: 2px;
}
.wheel-center img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}
.wheel-star-ring {
    position: absolute;
    inset: 0;
}
.wheel-star-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--star-angle)) translateY(-135px);
    color: #94c4ff;
    font-size: 14px;
}
.wheel-spin-form {
    width: min(100%, 340px);
}
.wheel-spin-form .button {
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
}
.wheel-spin-form .button span {
    font-size: 10px;
    color: #c7ddff;
    font-weight: 500;
}
.wheel-daily-note {
    max-width: 350px;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
}
.wheel-result {
    padding: 17px;
    width: 100%;
    border: 1px solid var(--surface-border);
    border-radius: 13px;
    background: var(--surface-raised);
    text-align: center;
}
.wheel-result h2 {
    font-size: 25px;
    margin: 9px 0;
}
.wheel-result p {
    color: #a8c3e9;
    font-size: 12px;
    line-height: 1.7;
}
.wheel-prizes-card {
    padding: 30px;
}
.wheel-prizes-card h2 {
    margin: 12px 0;
    font-size: 25px;
}
.wheel-prizes-card > p {
    font-size: 12px;
    line-height: 1.8;
}
.wheel-prize-list {
    display: grid;
    gap: 4px;
    margin: 24px 0;
}
.wheel-prize-list > div {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    gap: 11px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--surface-border);
}
.wheel-prize-dot {
    width: 12px;
    height: 12px;
    border-radius: 4px;
    border: 1px solid #6ca8ff44;
}
.wheel-prize-list span:not(.wheel-prize-dot):not(.wheel-prize-art) {
    display: grid;
    gap: 6px;
    font-size: 13px;
}
.wheel-prize-list small {
    color: #7799c7;
    font-size: 10px;
}
.wheel-prize-list strong {
    color: #c0dcff;
    font-size: 12px;
}
@media (max-width: 980px) {
    .reward-hero {
        grid-template-columns: minmax(0, 1fr) 160px;
        padding: 28px;
        gap: 20px;
    }
    .reward-summary-grid,
    .wheel-layout {
        grid-template-columns: 1fr;
    }
    .promotion-code-card {
        grid-template-columns: 1fr;
    }
    .promotion-shortcuts {
        gap: 10px;
    }
    .rewards-page .promotion-shortcut {
        gap: 10px;
        padding: 12px;
    }
    .promotion-shortcut img {
        width: 44px;
        height: 44px;
    }
    .promotion-shortcut .icon {
        display: none;
    }
}
@media (max-width: 600px) {
    .rewards-page {
        gap: 20px;
    }
    .promotion-shortcuts {
        gap: 8px;
    }
    .rewards-page .promotion-shortcut {
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 12px 6px 11px;
        text-align: center;
    }
    .promotion-shortcut > span {
        flex: none;
    }
    .promotion-shortcut strong {
        font-size: 11px;
    }
    .promotion-shortcut small {
        display: none;
    }
    .reward-hero {
        grid-template-columns: 1fr;
        padding: 25px;
    }
    .reward-hero-image {
        height: 150px;
        grid-row: 1;
    }
    .reward-hero h1 {
        font-size: 30px;
    }
    .reward-hero p {
        font-size: 12px;
    }
    .reward-hero-actions .button {
        flex: 1;
        font-size: 11px;
    }
    .reward-summary-grid .card {
        padding: 23px;
    }
    .reward-login-card {
        flex-direction: column;
        align-items: stretch;
        padding: 23px;
    }
    .vip-level-grid,
    .promotion-grid {
        grid-template-columns: 1fr;
    }
    .promotion-code-card {
        padding: 23px;
    }
    .promotion-code-card form {
        flex-direction: column;
        align-items: stretch;
    }
    .reward-rules,
    .reward-history,
    .wheel-prizes-card {
        padding: 23px;
    }
    .wheel-stage {
        padding: 28px 23px;
    }
    .reward-wheel {
        border-width: 9px;
    }
    .wheel-pointer {
        top: 20px;
    }
    .wheel-star-ring span {
        transform: translate(-50%, -50%) rotate(var(--star-angle)) translateY(-112px);
    }
    .wheel-center {
        font-size: 38px;
    }
}
.vip-status {
    padding: 22px 25px;
    margin: 0 0 22px;
    border-radius: 16px;
    border: 1px solid var(--surface-border);
    background: var(--surface);
}
.vip-status-heading {
    display: flex;
    align-items: center;
    gap: 13px;
}
.vip-status-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}
.vip-status-heading > div {
    display: grid;
    gap: 5px;
    min-width: 0;
}
.vip-status-heading .eyebrow {
    font-size: 9px;
    letter-spacing: 0.1em;
    color: #6caaff;
}
.vip-status-heading strong {
    font-size: 18px;
    overflow-wrap: anywhere;
}
.vip-status-heading a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    color: #93c3ff;
    font-size: 11px;
    white-space: nowrap;
}
.vip-status-heading a .icon {
    width: 14px;
    height: 14px;
}
.vip-status-progress {
    height: 7px;
    background: var(--surface-inset);
    border-radius: 20px;
    margin-top: 17px;
    overflow: hidden;
}
.vip-status-progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #2563eb, #59b5ff);
    border-radius: inherit;
}
.vip-status-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 9px;
    font-size: 10px;
    color: #8fa8cd;
}
.vip-status-caption strong {
    color: #83baff;
}
.vip-status-note {
    margin-top: 12px;
    color: #8fa8cd;
    font-size: 11px;
    line-height: 1.5;
}
.vip-status--compact {
    margin: 6px 0 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
}
.vip-compact-link {
    display: grid;
    gap: 4px;
    border-radius: 4px;
}
.vip-compact-line {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    font-size: 10px;
    line-height: 16px;
}
.vip-status--compact .vip-status-image,
.vip-compact-line .icon {
    width: 16px;
    height: 16px;
}
.vip-compact-line .icon {
    color: #fcd34d;
    fill: currentColor;
}
.vip-compact-line strong {
    min-width: 0;
    margin-right: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #dbe7fa;
    font-size: 10px;
    font-weight: 750;
    transition: color 0.2s;
}
.vip-compact-line b {
    color: #8fb8ff;
    font-weight: 750;
    font-variant-numeric: tabular-nums;
}
.vip-compact-chevron {
    color: #5b98ff;
    font-size: 13px;
    transition: transform 0.2s;
}
.vip-compact-link:hover strong {
    color: #fff;
}
.vip-compact-link:hover .vip-compact-chevron {
    transform: translateX(2px);
}
.vip-status--compact .vip-status-progress {
    height: 3px;
    margin: 0;
    background: #1b2c4a;
}
.vip-level-art {
    width: 112px;
    height: 112px;
    object-fit: contain;
    align-self: center;
    filter: drop-shadow(0 9px 14px #0004);
}
.wheel-frame {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    max-width: none;
    object-fit: contain;
    pointer-events: none;
}
.wheel-prize-art {
    position: relative;
    width: 50px;
    height: 50px;
}
.wheel-prize-art img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.wheel-prize-art .wheel-prize-dot {
    position: absolute;
    bottom: 0;
    right: 0;
}
.checkin-page {
    max-width: 1280px;
    margin: 0 auto;
}
.checkin-page .checkin-panel {
    max-width: none;
    margin: 0 0 24px;
    padding: 24px;
}
.checkin-heading {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}
.checkin-heading .checkin-logo {
    position: static;
    transform: none;
    width: 126px;
    height: 126px;
    flex: 0 0 auto;
}
.checkin-heading-copy {
    min-width: 0;
}
.checkin-eyebrow {
    color: #75b0ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.09em;
}
.checkin-heading h1 {
    margin: 8px 0 9px;
    font-size: clamp(23px, 2.4vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.6px;
}
.checkin-heading p {
    max-width: 590px;
    margin: 0;
    color: #9aafcb;
    font-size: 12px;
    line-height: 1.7;
}
.checkin-page .checkin-progress {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: none;
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    background: var(--surface-inset);
    font-size: 11px;
}
.checkin-progress > span {
    color: #9aafcb;
}
.checkin-progress strong {
    color: #dceaff;
}
.checkin-progress-track {
    flex: 0 0 100%;
    width: 100%;
    min-height: 5px;
    height: 5px;
    overflow: hidden;
    border-radius: 5px;
    background: #253750;
}
.checkin-progress-track > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #438dff;
}
.checkin-page .checkin-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}
.checkin-page .checkin-day {
    min-width: 0;
    min-height: 236px;
    padding: 13px 10px 11px;
    gap: 5px;
    background: var(--surface-raised);
    border: 1px solid var(--surface-border);
    border-radius: 15px;
    opacity: 1;
}
.checkin-page .checkin-day.today {
    background: var(--surface-raised);
    border-color: #4a94ff;
    box-shadow:
        inset 0 0 0 1px #4a94ff20,
        0 8px 25px #07152880;
}
.checkin-day-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 22px;
    gap: 4px;
}
.checkin-day-heading > strong {
    color: #dceaff;
    font-size: 11px;
}
.checkin-day-current {
    padding: 4px 5px;
    color: #a7cfff;
    background: #2563eb26;
    border-radius: 5px;
    font-size: 7px;
    font-weight: 850;
}
.checkin-day-check {
    display: grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #79dfb4;
    background: #19b97818;
}
.checkin-day-check .icon {
    width: 13px;
    height: 13px;
}
.checkin-page .checkin-day .checkin-day-art {
    width: 100%;
    height: 124px;
    object-fit: contain;
    filter: drop-shadow(0 6px 8px #0003);
}
.checkin-page .checkin-day .checkin-reward-label {
    color: #8ca5c8;
    font-size: 9px;
    font-weight: 500;
}
.checkin-page .checkin-day .checkin-amount {
    max-width: 100%;
    color: #f7fbff;
    font-size: 19px;
    letter-spacing: -0.5px;
    line-height: 1.3;
    text-align: center;
    overflow-wrap: anywhere;
}
.checkin-page .checkin-day .checkin-status {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 30px;
    margin-top: 5px;
    border-radius: 7px;
    background: var(--surface-inset);
    color: #8ea8cc;
    font-size: 8px;
    letter-spacing: 0.03em;
}
.checkin-page .checkin-day.claimed .checkin-status {
    color: #79dfb4;
    background: #19b97812;
}
.checkin-page .checkin-day .button {
    width: 100%;
    min-height: 30px;
    margin-top: 5px;
    padding: 6px 4px;
    color: #fff;
    background: var(--primary);
    border: 1px solid #4a94ff;
    font-size: 9px;
}
.checkin-page .checkin-continuation {
    margin: 16px auto 0;
    max-width: 380px;
    font-size: 11px;
    line-height: 1.7;
    text-align: center;
    color: #96add2;
}
@media (min-width: 701px) and (max-width: 1100px) {
    .checkin-page .checkin-grid {
        grid-template-columns: repeat(8, minmax(0, 1fr));
    }
    .checkin-page .checkin-day {
        grid-column: span 2;
    }
    .checkin-page .checkin-day:nth-child(5) {
        grid-column: 2 / span 2;
    }
}
@media (max-width: 700px) {
    .checkin-page .checkin-panel {
        padding: 16px 12px;
    }
    .checkin-heading {
        gap: 12px;
        margin-bottom: 16px;
    }
    .checkin-heading .checkin-logo {
        width: 84px;
        height: 100px;
    }
    .checkin-eyebrow {
        font-size: 8px;
        letter-spacing: 0.05em;
    }
    .checkin-heading h1 {
        font-size: 23px;
    }
    .checkin-heading p {
        font-size: 10px;
        line-height: 1.6;
    }
    .checkin-page .checkin-progress {
        gap: 8px;
        padding: 11px;
        margin-bottom: 14px;
        font-size: 10px;
    }
    .checkin-page .checkin-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
    }
    .checkin-page .checkin-day {
        min-height: 193px;
        padding: 8px 6px;
        gap: 4px;
        border-radius: 11px;
    }
    .checkin-page .checkin-day:last-child {
        grid-column: 2;
    }
    .checkin-page .checkin-day .checkin-day-art {
        height: 92px;
    }
    .checkin-day-heading > strong {
        font-size: 10px;
    }
    .checkin-day-current {
        padding: 3px;
        font-size: 6px;
    }
    .checkin-day-check {
        width: 18px;
        height: 18px;
    }
    .checkin-page .checkin-day .checkin-amount {
        font-size: 17px;
    }
    .checkin-page .checkin-day .checkin-status {
        min-height: 27px;
        font-size: 7px;
    }
    .checkin-page .checkin-day .button {
        min-height: 27px;
        font-size: 8px;
    }
}
@media (max-width: 480px) {
    .vip-status:not(.vip-status--compact) {
        padding: 18px;
    }
}
