/* Fonts */
@font-face {
    font-family: 'CAMetro';
    src: url('../fonts/CAMetro-New-Regular.woff') format('woff');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'CAMetro';
    src: url('../fonts/CAMetro-New-Bold.woff') format('woff');
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'CAMetro';
    src: url('../fonts/CAMetro-New-ExtraBold.woff') format('woff');
    font-display: swap;
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'CAMetro';
    src: url('../fonts/CAMetro-New-Black.woff') format('woff');
    font-display: swap;
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'CAMetro Superfat';
    src: url('../fonts/CAMetro-New-Superfat.woff') format('woff');
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

/* Theme */
:root {
    --primary: #003063;
    --page-bg: #091f42;
    --surface: #1c4f89;
    --surface-deep: #023064;
    --text: #ffffff;
    --text-deep: #091f42;
    --yellow: #ffe600;
    --light-card: linear-gradient(180deg, #e9f5ff 0%, #d8ecff 100%);
    --shadow-md: 0 16px 28px rgba(0, 0, 0, 0.2);
}

/* Base */
html {
    scroll-behavior: smooth;
    background: var(--page-bg);
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--page-bg);
    color: var(--text);
    font-family: 'CAMetro', sans-serif;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    opacity: 1;
    transition: opacity 360ms ease;
}

body.page-loading {
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.landing-page {
    padding: 0 0 72px;
}

/* Hero */
.hero-block {
    margin-bottom: 44px;
}

.hero-stage {
    overflow: hidden;
}

.hero-stage__container {
    position: relative;
}

.hero-stage--desktop {
    min-height: 833px;
}

.hero-stage--desktop .hero-stage__container {
    min-height: 833px;
    padding: 49px 54px 0;
}

.hero-stage__topbar {
    position: relative;
    z-index: 4;
}

.hero-logo {
    width: 440px;
}

.hero-date {
    max-width: 275px;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.hero-stage__body {
    min-height: 734px;
}

.hero-copy {
    position: relative;
    z-index: 4;
}

.hero-copy--desktop {
    max-width: 608px;
    padding-top: 112px;
}

.hero-copy__title {
    margin: 0;
    font-family: 'CAMetro Superfat', 'CAMetro', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--bs-white);

}

.hero-copy--desktop .hero-copy__title {
    font-size: 100px;
    line-height: 82px;
    letter-spacing: 0;
}

.hero-copy__body {
    display: block;
}

.hero-copy--desktop .hero-copy__body {
    width: 608px;
    margin-top: 110px;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
}

.hero-visual--desktop {
    position: absolute;
    inset: 0;
    width: auto;
    margin: 0;
    pointer-events: none;
}

.hero-visual--desktop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-qr {
    display: none;
    position: absolute;
    right: 72px;
    bottom: 72px;
    z-index: 5;
    width: 214px;
    align-items: center;
}

.platform-desktop .hero-qr {
    display: flex;
    flex-direction: column;
}

.hero-qr img {
    width: 100%;
    border-radius: 30px 30px 0 0;
    box-shadow: var(--shadow-md);
}

.hero-actions {
    display: none;
}

@media (min-width: 768px) {
    .landing-mobile .hero-block {
        margin-bottom: 0;
    }

    .landing-mobile .hero-stage--desktop {
        display: none !important;
    }

    .landing-mobile .hero-stage--mobile {
        display: block !important;
        min-height: 499px;
    }

    .landing-mobile .hero-stage__container--mobile {
        min-height: 499px;
        padding-top: 19px;
        padding-bottom: 10px;
    }

    .landing-mobile .hero-stage__topbar--mobile {
        padding: 0 15px 0 22px;
    }

    .landing-mobile .hero-logo--mobile {
        width: 161px;
    }

    .landing-mobile .hero-date--mobile {
        max-width: 106px;
        font-size: 12px;
        line-height: 14px;
    }

    .landing-mobile .hero-copy--mobile {
        width: min(332px, calc(100% - 28px));
        margin: 16px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .landing-mobile .hero-copy--mobile .hero-copy__body {
        width: min(300px, 100%);
        margin-top: 11px;
    }

    .landing-mobile .hero-visual--mobile {
        position: relative;
        width: min(100%, 420px);
        margin: clamp(-275px, -74vw, -236px) auto 0;
        padding-bottom: clamp(78px, 22vw, 88px);
        isolation: isolate;
    }

    .landing-mobile .hero-visual--mobile::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: clamp(136px, 40vw, 164px);
        background: linear-gradient(180deg, rgba(9, 31, 66, 0) 0%, rgba(9, 31, 66, 0.78) 58%, var(--page-bg) 100%);
        pointer-events: none;
        z-index: 2;
    }

    .landing-mobile .hero-actions {
        position: relative;
        margin: -175px 20px 0;
        z-index: 5;
        display: block;
    }

    .landing-mobile .button--hero {
        width: 100%;
        height: 40px;
        padding: 0 20px 2px;
        font-size: 30px;
        font-weight: 700;
        color: var(--primary);
        text-align: center;
        line-height: 1;
    }

    .landing-mobile .landing-section--steps {
        margin-top: -85px;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 12px 28px;
    border: 0;
    border-radius: 999px;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
.slider__control:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.button--accent {
    background: var(--yellow);
    color: var(--text-deep);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
}

.hero-qr__button {
    width: 100%;
    min-height: 83px;
    padding: 10px 18px 12px;
    border-radius: 0 0 22px 22px;
    font-size: 34px;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: none;
}

/* Section Shell */
.landing-section {
    margin-bottom: 54px;
}

.landing-section--main-prize {
    margin-bottom: 46px;
}

.landing-section--weekly-prizes {
    position: relative;
    z-index: 2;
    margin-top: clamp(-350px, -25vw, -200px);
}

.landing-section--faq {
    margin-bottom: 0;
}

.section-pill {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 460px;
    height: 101px;
    margin: 0 auto 28px;
    padding: 0px 128px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(217, 217, 217, 0.2);
    color: var(--text);
    font-size: 52px;
    font-weight: 800;
    line-height: 54px;
    letter-spacing: -1px;
    text-align: center;
    text-transform: uppercase;
    box-shadow: 0 0 10px 0 rgba(164, 209, 255, 0.15),
    inset 0 2px 10px 0 rgba(0, 0, 0, 0.1);
    isolation: isolate;
    z-index: 999;
}

.section-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(71.37% 67.59% at 98.39% 83.5%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(83.15% 78.43% at 10.65% 0%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-mask: linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.section-pill--steps {
    margin-bottom: 110px !important;
}

.section-copy {
    max-width: 1100px;
    margin: 48px auto 48px;
    text-align: center;
    font-family: 'CAMetro';
    font-weight: 700;
    font-size: 40px;
    line-height: 42px;
}

.section-copy-secondary {
    max-width: 1180px;
}

.section-copy__link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: var(--yellow);
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    white-space: nowrap;
}

.section-copy__link-arrow {
    color: var(--text);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.5;
    padding-left: 5px;
}

/* Steps */
.step-card {
    position: relative;
    min-height: 210px;
    padding: 84px 28px 0;
    border-radius: 18px;
    background: var(--light-card);
    color: #003367;
    text-align: center;
    background: radial-gradient(56.15% 56.15% at 50% 43.85%, #FFFFFF 0%, #E0F2FD 100%);
}

.step-card__badge {
    position: absolute;
    top: -64px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    margin-left: -64px;
    border-radius: 50%;
    background: var(--yellow);
    color: #003367;
    font-size: 72px;
    font-weight: 900;
    line-height: 74px;
    z-index: 999;
}

.step-card__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-card__title,
.step-card__text {
    display: block;
    text-transform: uppercase;
}

.step-card__title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.step-card__text {
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

/* Main Prize */
.main-prize {
    position: relative;
}

.main-prize__blur {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    object-fit: contain;
    object-position: center center;
    pointer-events: none;
}


.main-prize__image {
    position: relative;
    z-index: 1;
    width: 100%;

}

.main-prize img {
    width: 100%;
}

/* Prize Cards */
.prizes-grid {
    --prize-card-size: 300px;
    --prize-grid-gap-x: 24px;
    --prize-grid-gap-y: 24px;
    --prize-card-radius: 32px;
    --prize-card-padding-top: 22px;
    --prize-card-padding-x: 16px;
    --prize-card-border-width: 2px;
    --prize-title-size: 24px;
    --prize-title-line: 26px;
    --prize-title-min-height: 100px;
    --prize-title-max-width: 300px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, min(var(--prize-card-size), calc((100% - var(--prize-grid-gap-x) - var(--prize-grid-gap-x) - var(--prize-grid-gap-x)) / 4))));
    justify-content: center;
    gap: var(--prize-grid-gap-y) var(--prize-grid-gap-x);
    margin: 0;
}

.prizes-grid > .col {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 0;
}

.prize-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(100%, var(--prize-card-size));
    height: var(--prize-card-size);
    padding: var(--prize-card-padding-top) var(--prize-card-padding-x) 0;
    border: var(--prize-card-border-width) solid transparent;
    border-radius: var(--prize-card-radius);
    background: radial-gradient(100% 100% at 50% 100%, #1c4f89 0%, #023064 100%) padding-box,
    linear-gradient(180deg, #ffffff 0%, rgba(16, 64, 120, 0) 100%) border-box;
    box-shadow: none;
    overflow: hidden;
}

.prize-card::before {
    display: none;
}

.prize-card__title {
    min-height: var(--prize-title-min-height);
    max-width: var(--prize-title-max-width);
    margin: 0 auto;
    font-family: 'CAMetro', sans-serif;
    font-size: var(--prize-title-size);
    font-weight: 400;
    font-style: normal;
    line-height: var(--prize-title-line);
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

.prize-card__media {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    align-items: flex-end;
    min-height: 0;
    margin-top: auto;
}

.prize-card__media img {
    display: block;
    margin-top: auto;
    max-width: none;
    filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.18));
    transform-origin: center bottom;
}

.prize-card__media-icon img {
    width: 112%;
    position: absolute;
    bottom: 0;
}

/* Sliders */

.slider {
    position: relative;
}

.slider--tasks,
.slider--partners {
    width: 100%;
    margin: 0 auto;
}

.slider__viewport {
    position: relative;
    overflow: hidden;
    background: var(--page-bg);
    isolation: isolate;
    contain: paint;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.slider__viewport::before,
.slider__viewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 86px;
    pointer-events: none;
    z-index: 2;
}

.slider__viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--page-bg) 0%, rgba(9, 31, 66, 0) 100%);
}

.slider__viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--page-bg) 0%, rgba(9, 31, 66, 0) 100%);
}

.slider.is-static .slider__viewport::before,
.slider.is-static .slider__viewport::after {
    display: none;
}

.slider__track {
    display: flex;
    gap: 18px;
    will-change: transform;
    backface-visibility: hidden;
}

.slider__slide {
    flex: 0 0 auto;
    backface-visibility: hidden;
}

.slider__slide picture,
.slider__slide img {
    display: block;
    width: 100%;
}

.slider__slide--task {
    width: 300px;
    height: 220px;
}

.slider__slide--task img {
}

.slider__slide--partner {
    width: 236px;
    height: 275px;
}

.slider__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-top: -26px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: var(--text-deep);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: transform 180ms ease, opacity 180ms ease;
}

.slider__control:hover:not(:disabled) {
    transform: translateY(-1px);
}

.slider__control:disabled {
    opacity: 0.45;
    cursor: default;
}

.slider__control span {
    font-size: 64px;
    line-height: 1;
    padding-bottom: 14px;
}

.slider__control--prev {
    left: 10px;
}

.slider__control--next {
    right: 10px;
}

/* Game */
.landing-section--game .section-pill {
    margin-bottom: 46px;
}

.game-shell {
    max-width: 940px;
}

.game-shell__row {
    --bs-gutter-x: 0;
    align-items: center;
    max-width: 912px;
    margin: 0 auto;
}

.game-shell__copy-col {
    flex: 0 0 456px;
    max-width: 456px;
}

.game-shell__visual-col {
    flex: 0 0 456px;
    max-width: 456px;
}

.game-copy {
    max-width: 456px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.game-copy p {
    margin: 0 0 40px;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
}

.button--game {
    height: 90px;
    width: 214px;
    padding: 0;
    font-size: 52px;
    line-height: 54px;
    color: var(--primary);
    border-radius: 16px;
    font-weight: 800;
    letter-spacing: 0;
    text-align: center;
    text-transform: uppercase;
}

.game-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 456px;
    height: 432px;
    margin-left: 0;
}

.game-visual img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

.partners-note {
    margin: 26px 0 0;
    font-weight: 400;
    text-align: center;
    font-family: "CAMetro";
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0;
}

/* FAQ */
.faq-item {
    border-radius: 24px;
    background: #ffffff;
    color: var(--text-deep);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 16px 46px 16px 18px;
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 32px;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item__content {
    overflow: hidden;
    height: 0;
}

.faq-item__body {
    padding: 0 18px 18px;
}

.faq-item__body p,
.faq-list {
    margin: 0;
}

.faq-item__body p + p,
.faq-item__body p + .faq-list,
.faq-list + p,
.faq-list + .faq-list {
    margin-top: 12px;
}

.faq-item__body p,
.faq-list {
    font-size: 16px;
    line-height: 18px;
}

.faq-list {
    padding-left: 22px;
}

.faq-list--unordered {
    list-style: disc;
}

.faq-list li + li {
    margin-top: 8px;
}

.game-visual {
    width: 754px;
    height: 754px;
}

/* Responsive: <= 1199.98px */
@media (max-width: 1199.98px) {
    /* Hero */
    .hero-stage--desktop {
        min-height: 700px;
    }

    .hero-stage--desktop .hero-stage__container {
        min-height: 700px;
        padding: 36px 34px 0;
    }

    /* Hero */
    .hero-logo {
        width: 280px;
    }

    .hero-date {
        max-width: 240px;
        font-size: 20px;
        line-height: 22px;
    }

    .hero-copy--desktop {
        max-width: 456px;
        padding-top: 94px;
    }

    .hero-copy--desktop .hero-copy__title {
        font-size: 70px;
        line-height: 67px;
        color: var(--bs-white);
    }

    .hero-copy--desktop .hero-copy__body {
        width: 396px;
        margin-top: 40px;
    }

    .hero-qr {
        right: 72px;
        bottom: 72px;
        width: 168px;
    }

    .hero-qr__button {
        min-height: 64px;
        font-size: 28px;
    }

    /* Section Shell */
    .section-pill {
        min-width: 230px;
        min-height: 40px;
        height: 101px;
        margin: 0 auto 28px;
        padding: 0px 64px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(217, 217, 217, 0.2);
        color: var(--text);
        font-size: 52px;
        font-weight: 800;
        line-height: 54px;
        letter-spacing: -1px;
        text-align: center;
        text-transform: uppercase;
        box-shadow: 0 0 10px 0 rgba(164, 209, 255, 0.15),
        inset 0 2px 10px 0 rgba(0, 0, 0, 0.1);
        isolation: isolate;
        z-index: 999;
    }

    .section-copy {
        font-size: 36px;
        max-width: 900px;
        margin: 44px auto 44px;

    }

    /* Steps */
    .step-card__text {
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
    }

    .step-card__badge {
        top: -50px;
        width: 100px;
        height: 100px;
        margin-left: -50px;
        font-size: 54px;
        line-height: 16px;
    }

    /* Sliders */
    .slider--tasks,
    .slider--partners {
        max-width: 1080px;
    }

    /* Prize Cards */
    .prizes-grid {
        --prize-card-size: 230px;
        --prize-grid-gap-x: 16px;
        --prize-grid-gap-y: 16px;
        --prize-card-radius: 24px;
        --prize-card-padding-top: 16px;
        --prize-card-padding-x: 12px;
        --prize-title-size: 18px;
        --prize-title-line: 20px;
        --prize-title-min-height: 60px;
        --prize-title-max-width: 196px;
        grid-template-columns: repeat(4, minmax(0, min(var(--prize-card-size), calc((100% - var(--prize-grid-gap-x) - var(--prize-grid-gap-x) - var(--prize-grid-gap-x)) / 4))));
    }

    /* Game */
    .game-shell {
        max-width: 1040px;
    }

    .game-shell__copy-col {
        flex: 0 0 320px;
        max-width: 320px;
    }

    .game-shell__visual-col {
        flex: 0 0 520px;
        max-width: 520px;
    }

    .game-copy {
        max-width: 400px;
    }

    .game-copy p {
        margin-bottom: 28px;
        font-size: 32px;
        line-height: 1.05;
    }

    .button--game {
        height: 90px;
        width: 214px;
        padding: 0;
        font-size: 52px;
        line-height: 42px;
        color: var(--primary);
    }

    .game-visual {
        width: 520px;
        height: 520px;
    }
}

/* Responsive: <= 991.98px */
@media (max-width: 991.98px) {
    .prizes-grid {
        grid-template-columns: repeat(2, minmax(0, min(var(--prize-card-size), calc((100% - var(--prize-grid-gap-x)) / 2))));
    }

    .game-shell {
        max-width: none;
    }

    .game-shell__copy-col,
    .game-shell__visual-col {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .game-copy {
        max-width: 560px;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .game-copy p {
        margin-bottom: 26px;
        font-size: 28px;
        line-height: 1.1;
    }

    .button--game {
        height: 45px;
        width: 120px;
        padding: 0;
        border-radius: 12px;
        font-size: 30px;
        line-height: 1.1;
        color: var(--primary);
    }

    .game-visual {
        justify-content: center;
        width: min(100%, 520px);
        height: min(520px, calc(100vw - 56px));
        margin: 0 auto;
    }
}

/* Responsive: <= 767.98px */
@media (max-width: 767.98px) {
    /* Base */
    .landing-page {
        padding: 0 0 40px;
    }

    /* Prize Cards */
    .prizes-grid {
        --prize-card-size: 160px;
        --prize-grid-gap-x: 12px;
        --prize-grid-gap-y: 12px;
        --prize-card-radius: 16px;
        --prize-card-padding-top: 12px;
        --prize-card-padding-x: 8px;
        --prize-title-size: 12px;
        --prize-title-line: 14px;
        --prize-title-min-height: 42px;
        --prize-title-max-width: 144px;
        grid-template-columns: repeat(2, minmax(0, min(var(--prize-card-size), calc((100% - var(--prize-grid-gap-x)) / 2))));
    }

    .hero-block {
        margin-bottom: 0;
    }

    /* Hero */
    .hero-stage--mobile {
        min-height: 499px;
    }

    .hero-stage__container--mobile {
        min-height: 499px;
        padding-top: 19px;
        padding-bottom: 10px;
    }

    .hero-stage__topbar--mobile {
        padding: 0 15px 0 22px;
    }

    .hero-logo--mobile {
        width: 161px;
    }

    .hero-date--mobile {
        max-width: 106px;
        font-size: 12px;
        line-height: 14px;
    }

    .hero-copy--mobile {
        width: min(332px, calc(100% - 28px));
        margin: 16px auto 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-copy--mobile .hero-copy__title {
        font-size: 72px;
        line-height: 68px;
    }

    .hero-copy--mobile .hero-copy__body {
        width: min(300px, 100%);
        margin-top: 11px;
    }

    .hero-visual--mobile {
        position: relative;
        width: min(100%, 420px);
        margin: clamp(-275px, -74vw, -236px) auto 0;
        padding-bottom: clamp(78px, 22vw, 88px);
        isolation: isolate;
    }

    .hero-visual--mobile::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: clamp(136px, 40vw, 164px);
        background: linear-gradient(180deg, rgba(9, 31, 66, 0) 0%, rgba(9, 31, 66, 0.78) 58%, var(--page-bg) 100%);
        pointer-events: none;
        z-index: 2;
    }

    .button {
        min-height: 38px;
        padding: 10px 20px;
        font-size: 18px;
    }

    .hero-actions {
        position: relative;
        margin: -175px 20px 0;
        z-index: 5;
        display: block;
    }

    .landing-section--steps {
        margin-top: -85px;
    }

    .button--hero {
        width: 100%;
        height: 40px;
        padding: 0 20px 2px;
        font-size: 30px;
        font-weight: 700;
        color: var(--primary);
        text-align: center;
        line-height: 1;
    }

    .landing-section {
        margin-bottom: 30px;
    }

    /* Section Shell */
    .landing-section--main-prize {
        margin-bottom: 30px;
    }

    .landing-section--weekly-prizes {
        margin-top: clamp(-104px, -26vw, -84px);
    }

    .section-pill {
        min-width: 230px;
        min-height: 40px;
        height: 40px;
        margin-bottom: 18px;
        padding: 0 48px;
        font-size: 22px;
        line-height: 18px;
        letter-spacing: -0.2px;
    }

    .section-pill--steps {
        display: none;
    }

    .section-copy {
        max-width: 320px;
        font-size: 16px;
        line-height: 1.2;
        margin: 20px auto 20px;
    }

    .section-copy-secondary {
        font-size: 16px;
        max-width: 240px;
        line-height: 1.2;
        margin: 20px auto 20px;
        font-weight: 400;
    }

    .section-copy__link {
        gap: 10px;
        white-space: normal;
    }

    .section-copy__link-arrow {
        font-size: 15px;
        padding-left: 5px;
    }

    .step-card {
        min-height: 72px;
        padding: 26px 8px 10px;
        border-radius: 16px;
        z-index: 99;
    }

    /* Steps */
    .step-card__badge {
        top: -16px;
        width: 32px;
        height: 32px;
        margin-left: -16px;
        font-size: 14px;
        line-height: 16px;
    }

    .step-card__copy {
        gap: 0;
    }

    .step-card__title {
        font-size: 12px;
        font-weight: 800;
        line-height: 14px;
    }

    .step-card__text {
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
    }

    .prize-card__title {
        padding-top: 5px;
    }


    .slider__viewport::before,
    .slider__viewport::after {
        width: 28px;
    }

    /* Sliders */
    .slider__track {
        gap: 10px;
    }

    .slider__slide--task {
        width: 120px;
        height: 88px;
    }

    .slider__slide--partner {
        width: 86px;
        height: 100px;
    }

    .slider__control {
        width: 24px;
        height: 24px;
        margin-top: -14px;
        border-radius: 4px;
    }

    .slider__control span {
        font-size: 36px;
        padding-bottom: 10px;
    }

    .slider__control--prev {
        left: -4px;
    }

    .slider__control--next {
        right: -4px;
    }

    .landing-section--game .section-pill {
        margin-bottom: 18px;
    }

    /* Game */
    .game-shell {
        max-width: none;
    }

    .game-shell__copy-col,
    .game-shell__visual-col {
        flex: 0 0 auto;
        max-width: 100%;
    }

    .game-copy {
        max-width: 360px;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .game-copy p {
        max-width: 320px;
        margin-bottom: 24px;
        font-size: 16px;
        font-weight: 700;
        line-height: 18px;
        letter-spacing: 0;
    }

    .button--game {
        width: 84px;
        height: 38px;
        padding: 0;
        align-self: center;
        margin-inline: auto;
        border-radius: 8px;
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
        letter-spacing: 0;
        color: var(--primary);
    }

    .game-visual {
        justify-content: center;
        width: min(100%, 360px);
        height: min(350px, calc(100vw - 40px));
        margin: 0 auto;
    }

    .game-visual img {
        width: auto;
        height: 100%;
        max-width: 100%;
    }

    .partners-note {
        margin-top: 12px;
        font-family: "CAMetro";
        font-weight: 700;
        font-size: 16px;
        line-height: 18px;
        letter-spacing: 0;
        text-align: center;

    }

    .faq-item {
        border-radius: 14px;
    }

    /* FAQ */
    .faq-item summary {
        padding: 10px 30px 10px 12px;
        font-size: 12px;
        font-weight: 700;
        line-height: 14px;
    }

    .faq-item summary::after {
        right: 12px;
        font-size: 20px;
    }

    .faq-item__body {
        padding: 0 12px 12px;
    }

    .faq-item__body p,
    .faq-list {
        font-size: 10px;
        line-height: 12px;
    }

    .faq-item__body p + p,
    .faq-item__body p + .faq-list,
    .faq-list + p,
    .faq-list + .faq-list {
        margin-top: 8px;
    }

    .faq-list {
        padding-left: 16px;
    }

    .faq-list li + li {
        margin-top: 4px;
    }
}
