/* Cyber Cup CS2 «Кіберкозаки 2026» */

html, body {
    margin: 0;
    padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

#cs2-body {
    min-height: 100%;
    overflow-x: hidden;
    background: #111423;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/images/cyber_cup_cs2/fonts/WixMadeforDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/images/cyber_cup_cs2/fonts/WixMadeforDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/images/cyber_cup_cs2/fonts/WixMadeforDisplay-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/images/cyber_cup_cs2/fonts/WixMadeforDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Wix Madefor Display';
    src: url('/images/cyber_cup_cs2/fonts/WixMadeforDisplay-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('/images/cyber_cup_cs2/fonts/Geometria-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('/images/cyber_cup_cs2/fonts/Geometria-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sofia Sans Semi Condensed';
    src: url('/images/cyber_cup_cs2/fonts/SofiaSansSemiCondensed-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/images/cyber_cup_cs2/fonts/Montserrat-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

.cs2kk-main,
.cs2kk-header,
.cs2kk-footer,
.cs2kk-modal {
    --cs2kk-bg: #111423;
    --cs2kk-bg-panel: #131a2b;
    --cs2kk-bg-panel-light: #1a2338;
    --cs2kk-orange: #EE4903;
    --cs2kk-orange-hover: #FF8401;
    --cs2kk-blue: #005FC6;
    --cs2kk-blue-hover: #007AFF;
    --cs2kk-green: #4EA524;
    --cs2kk-green-hover: #5AC527;
    --cs2kk-text: #ffffff;
    --cs2kk-text-muted: #a7adbd;
    --cs2kk-border: #2a3350;
    --cs2kk-radius: 12px;
    --cs2kk-container: 1200px;
    --cs2kk-yellow: #f5c541;
    --cswkk-purple: #0C1222;
    --cswkk-purple-hover: #B57CFF;

    color: var(--cs2kk-text);
    background: var(--cs2kk-bg);
    font-family: 'Wix Madefor Display', Arial, sans-serif;
    box-sizing: border-box;
}

.cs2kk-main *,
.cs2kk-header *,
.cs2kk-footer *,
.cs2kk-modal * {
    box-sizing: border-box;
}

/* ---------- buttons ---------- */
.cs2kk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 180px;
    height: 42px;
    border: 1px solid #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease;
    font-family: 'Wix Madefor Display', Arial, sans-serif;
    border-radius: 1.5px;
}

.cs2kk-btn::after {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background-color: currentColor;
    -webkit-mask-image: url('/images/cyber_cup_cs2/img-01-btn-arrow.svg');
    mask-image: url('/images/cyber_cup_cs2/img-01-btn-arrow.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.cs2kk-btn:hover {
    color: #fff;
}

.cs2kk-btn--primary {
    background: var(--cs2kk-orange);
    color: #fff;
}
.cs2kk-btn--primary:hover {
    background: var(--cs2kk-orange-hover);
}

.cs2kk-btn--outline {
    background: transparent;
    border-color: #fff;
    color: #fff;
}
.cs2kk-btn--outline:hover {
    background: rgba(255, 255, 255, .1);
}

.cs2kk-btn--blue {
    background: var(--cs2kk-blue);
    color: #fff;
}
.cs2kk-btn--blue:hover {
    background: var(--cs2kk-blue-hover);
}

.cs2kk-btn--green {
    background: var(--cs2kk-green);
    color: #fff;
}
.cs2kk-btn--green:hover {
    background: var(--cs2kk-green-hover);
}

.cs2kk-btn--purple {
    background: var(--cswkk-purple);
    color: #fff;
}

.cs2kk-btn--purple:hover {
    color: var(--cswkk-purple-hover);
    border-color: var(--cswkk-purple-hover);
}
.cs2kk-btn--purple:hover::after {
    background-color: var(--cswkk-purple-hover);
}

/* ---------- header / nav ---------- */
.cs2kk-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(12, 15, 30, .92);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid #fff;
}

/* Хедер sticky, тож без відступу ціль якоря ховається під ним після переходу.
   [id] — щоб це враховувалось для будь-якого якоря на сторінці, а не лише для
   вручну перелічених id (легко забути додати новий сюди). */
[id] {
    scroll-margin-top: 96px;
}

.cs2kk-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.cs2kk-header__logo img{
    height: 46px;
    width: auto;
}

.cs2kk-nav {
    display: none;
    align-items: center;
    gap: 40px;
}

.cs2kk-nav__list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cs2kk-nav__link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}
.cs2kk-nav__link:hover {
    color: var(--cs2kk-orange-hover);
}

.cs2kk-burger {
    position: relative;
    width: 24px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
/* бургер -> Х, коли меню відкрите */
.cs2kk-burger[aria-expanded="true"] span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}
.cs2kk-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.cs2kk-burger[aria-expanded="true"] span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

.cs2kk-mobile-nav {
    position: fixed;
    top: 45px;
    left: 0;
    z-index: 15;
    background: var(--cs2kk-bg);
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 40px;
    transform: translateX(100%);
    transition: transform .25s ease;
    width: 100%;
    height: calc(100dvh - 44px);
    display: flex;
    padding: 60px 0;
    overflow-y: auto;
}
.cs2kk-mobile-nav::-webkit-scrollbar {
    width: 12px;
}
.cs2kk-mobile-nav::-webkit-scrollbar-track {
    background: #363F5D;
    border-radius: 8px;
}
.cs2kk-mobile-nav::-webkit-scrollbar-thumb {
    background: #EE4903;
    border-radius: 8px;
    max-height: 200px;
}
.cs2kk-mobile-nav.is-open {
    transform: translateX(0);
}
.cs2kk-mobile-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.cs2kk-mobile-nav__link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    margin: 0 auto;
}

/* ---------- hero ---------- */
.cs2kk-hero {
    position: relative;
    overflow: hidden;
    padding: 94px 0 104px;
    min-height: 1080px;
    z-index: 1;   
}
.cs2kk-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 101%;
    object-fit: cover;
    z-index: -1;
}
.cs2kk-hero__inner {
    max-width: var(--cs2kk-container);
    margin: 0 auto;
}
.cs2kk-hero__badge {
    height: 68px;
    margin-bottom: 60px;
}
.cs2kk-hero__eyebrow {
    font-size: 28px;
    font-weight: 500;
    max-width: 496px;
    line-height: 36px;
    margin: 0 0 20px;
}
.cs2kk-hero__title {
    margin: 0 0 20px;
    font-weight: 800;
    font-size: 128px;
    line-height: 104px;
    letter-spacing: 2%;
    text-transform: uppercase;
    max-width: 618px;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #A6A6A6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
}
.cs2kk-hero__dates {
    margin: 0 0 60px;
    font-size: 28px;
    line-height: 36px;
}
.cs2kk-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 63px;
}
.cs2kk-hero__actions .cs2kk-btn {
    width: 240px;
    height: 56px;
    font-weight: 500;
}
.cs2kk-hero__sponsors {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}
.cs2kk-hero__sponsor-label {
    font-size: 14px;
    margin: 0 0 18px;
    line-height: 1.2;
}
.sponsor-hp {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sponsor-hp .cs2kk-hero__sponsor-logo{
    height: 90px;
    width: 90px;
}

.sponsor-privatbank {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.sponsor-privatbank .cs2kk-hero__sponsor-label {
    margin: 0 0 34px;
}

.sponsor-privatbank .cs2kk-hero__sponsor-logo{
    height: 90px;
    width: 90px;
    width: 360px;
    height: 58px;
}

/* ---------- prize fund ---------- */
.cs2kk-prize-fund {
    text-align: center;
    padding: 0;
    width: 100%;
    height: 100%;   
    position: relative;
    min-height: 1080px;
    background-image: url('/images/cyber_cup_cs2/img-06-prize-fund-bg.jpg');
    background-size: cover;
    background-position: center;
}
.cs2kk-prize-fund__bg {
    width: 100%;
    height: 100%;   
    object-fit: cover;
}

.cs2kk-prize-fund__inner {
    position: absolute;
    top: 220px;
    margin: 0 auto;
    width: 100%;
}
.cs2kk-prize-fund__title {
    margin: 0 0 16px;
    color: var(--cs2kk-orange);
    font-weight: 800;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
    font-size: 96px;
    line-height: 104px;
    letter-spacing: 2%;
    text-transform: uppercase;
}
.cs2kk-prize-fund__label {
    color: var(--cs2kk-text);
    margin: 0 0 16px;
    font-weight: 800;
    font-size: 36px;
    line-height: 100%;
    letter-spacing: 2%;
    vertical-align: middle;
    text-transform: uppercase;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
}
.cs2kk-prize-fund__sum {
    color: var(--cs2kk-text);
    margin: 0;
    font-weight: 800;
    font-size: 128px;
    line-height: 104px;
    letter-spacing: 2%;
    vertical-align: middle;
    text-transform: uppercase;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #A6A6A6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.cs2kk-prize-fund__sum span {
    font-family: 'Wix Madefor Display';
    font-weight: 600;
    font-size: 118px;
}

/* ---------- awards ---------- */
.cs2kk-awards {
    padding: 177px 0 179px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.cs2kk-awards__bg {
    position: absolute;
    width: 100%;
    height: 100%;    
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}
.cs2kk-awards__title {
    margin: 0 0 40px;
    font-weight: 800;
    font-size: 96px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
}
.cs2kk-awards__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto;
    justify-content: center;
}
.cs2kk-award-card {
    position: relative;
    max-width: 306px;
    background: radial-gradient(100% 100% at 50% 0%, #005FC6 0%, #0A111E 100%);
    border: 1px solid #fff;
    padding: 8px 8px 22px;
    text-align: center;
}
/* вищий пріоритет за .cs2kk-reveal, щоб hover-transition не перебивала анімацію появи */
.cs2kk-awards__grid .cs2kk-award-card {
    transition: transform .2s ease;
}
.cs2kk-award-card:hover {
    transform: scale(1.05)!important;
    z-index: 1;
}
.cs2kk-award-card__image {
    width: 290px;
    height: 290px;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    margin-bottom: 28px;
}
.cs2kk-award-card__title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 8px;
    text-transform: uppercase;
}
.cs2kk-award-card__subtitle {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 14px;
}
.cs2kk-award-card__btn {
    width: 100%;
    max-width: 262px;
    height: 56px;
    margin-bottom: 15px;
}
.cs2kk-award-card__note {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
}
.cs2kk-awards__bonus {
    margin: 24px 0 0;
    font-weight: 500;
    font-size: 32px;
    line-height: 140%;
    text-align: center;
    vertical-align: middle;
}

.cs2kk-awards__bonus span {
    color: var(--cs2kk-yellow);
}

.cs2kk-awards__bonus strong {
    font-size: 40px;
}

/* ---------- katka24 blocks ---------- */
.cs2kk-katka24 {
    display: flex;
    flex-direction: column-reverse;
    padding: 220px 0 144px;
    position: relative;
    z-index: 1;
    background: #000;
    font-family: 'Geometria', Arial, sans-serif;
    border-top: 1px solid #fff;;
    border-bottom: 1px solid #fff;;
}

.cs2kk-katka24__content { 
    max-width: var(--cs2kk-container);
    margin: 0 auto;
}

.cs2kk-katka24 .cs2kk-btn {
    width: 240px;
    height: 56px;
    font-weight: 700;
    font-family: 'Geometria', Arial, sans-serif;
}
.cs2kk-katka24__visual {
    position: absolute;
    top: 46px;
    right: calc(((100% - 1200px) / 2) - 200px);
    z-index: -1;
    width: 1004px;
    height: 745px;
}
.cs2kk-katka24__logo {
    height: 57px;
}
.cs2kk-katka24__title {
    margin: 142px 0 40px;
    max-width: 667px;
    font-weight: 700;
    font-size: 64px;
    line-height: 115%;
    text-transform: none;
}
.cs2kk-katka24__title span {
    color: var(--cs2kk-yellow);
}
.cs2kk-katka24__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 140px;
}
.cs2kk-katka24__perks {
    display: flex;
    gap: 60px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.cs2kk-katka24__perk {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}
.cs2kk-katka24__perk-value {
    color: var(--cs2kk-yellow);
    position: relative;
    font-weight: 700;
    font-size: 48px;
    line-height: 160%;
    display: flex;
    align-items: center;
}
.cs2kk-katka24__perk-value strong{
    font-weight: 700;
    font-size: 14px;
    line-height: 160%;
    margin-right: 6px;
}
.cs2kk-katka24__perk:first-of-type strong {
    position: absolute;
    top: 15px;
    left: 4px;
    margin-right: 0;
}
.cs2kk-katka24__perk-label {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    max-width: 216px;
    width: max-content;
}
.cs2kk-katka24__steps {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin: 126px 0 99px;
    font-size: 24px;
    line-height: 140%;
    font-weight: 400;
    padding: 0;
}
.cs2kk-katka24__step {
    padding: 12px;
    list-style: none;
    max-width: 255px;
}
.cs2kk-katka24__step-arrow {
    list-style: none;
    height: 92px;
    width: 26px;
}
.cs2kk-katka24__legal {
    font-size: 14px;
    line-height: 18px;
    margin: 0;
    padding: 0;
}
.cs2kk-katka24__legal a {
    color: #00a6d5;
}

.cs2kk-katka24--ps5 {
    padding: 167px 0 60px;
    background-image: url('/images/cyber_cup_cs2/img-katka24-3-visual.jpg');
    background-size: cover;
    background-position: center;
}

.cs2kk-katka24--ps5 .cs2kk-katka24__visual {
    position: absolute;
    top: 100px;
    right: calc(((100% - 1200px) / 2) - -34px);
    z-index: -1;
    width: 665px;
    height: 675px;
}

.cs2kk-katka24--ps5 .cs2kk-katka24__title {
    margin: 86px 0 60px;
}

/* ---------- timeline ---------- */
.cs2kk-timeline {
    padding: 70px 0;
    background-image: url('/images/cyber_cup_cs2/img-20-timeline-bg.png');
    background-size: cover;
}
.cs2kk-timeline__list {
    display: flex;
    gap: 64px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: var(--cs2kk-container);
    text-align: center;
}
.cs2kk-timeline__item {
    max-width: 244px;
}
.cs2kk-timeline__icon-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 14px;
    position: relative;
}
.cs2kk-timeline__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}
.cs2kk-timeline__label {
    font-weight: 700;
    font-family: Wix Madefor Display;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    margin: 0;
}
.cs2kk-timelime__label--orange {
    color: var(--cs2kk-orange);
}
.cs2kk-timeline__date {
    margin: 0;
    font-weight: 500;
    font-family: Wix Madefor Display;
    font-size: 24px;
    line-height: 36px;
    text-align: center;
    z-index: 1;
    position: relative;
}
.cs2kk-timeline__date a {
    color: #00BDF2;
}

/* ---------- registration ---------- */
.cs2kk-registration {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1;
    padding: 252px 0 180px;
}
.cs2kk-registration__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    top: 0;
    left: 0;
}
.cs2kk-registration__panel {
    width: 100%;
    max-width: 465px;
    background: #0C0F1E;
    border: 1px solid #fff;
    padding: 32px;
}
.cs2kk-registration__title {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2%;
    margin: 0 0 18px;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #A6A6A6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: center
}
.cs2kk-registration__option {
    margin-bottom: 24px;
}
.cs2kk-registration__option:last-of-type {
    margin-bottom: 0;
}
.cs2kk-registration__hint {
    font-size: 16px;
    margin: 0 0 8px;
    text-align: left;
}
.cs2kk-registration__btn {
    width: 100%;
    height: 56px;
}

/* ---------- footer ---------- */
.cs2kk-footer {
    padding: 0;
    text-align: center;
    margin: 40px auto 0;
    background: none;
    max-width: 465px;
    width: 100%;
}
.cs2kk-footer__title {
    font-weight: 800;
    font-size: 40px;
    letter-spacing: 2%;
    margin: 0 0 20px;
    text-transform: uppercase;
    font-family: 'Sofia Sans Semi Condensed', Arial, sans-serif;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #A6A6A6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
.cs2kk-footer__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
}
.cs2kk-footer__icon {
    width: 32px;
    height: 32px;
}
.cs2kk-footer__actions .cs2kk-btn {
    width: 100%;
    height: 60px;
    background: #0C0F1E;
    color: #fff;
}
.cs2kk-footer__actions .cs2kk-btn::after {
    content: none;
}
.cs2kk-footer__actions .cs2kk-btn:hover {
    color: #1D99FF;
    border-color: #1D99FF;
}

/* ---------- modals ---------- */
.cs2kk-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: none;
}
.cs2kk-modal[hidden] {
    display: none;
}
.cs2kk-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    backdrop-filter: blur(10px);
}
.cs2kk-modal__dialog {
    position: relative;
    z-index: 1;
    background: #10131E;
    border: 1px solid #fff;
    padding: 28px 40px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    color: #fff;
}
.cs2kk-modal__close {
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}
.cs2kk-modal__title {
    font-size: 28px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 28px;
}
.cs2kk-modal__btn-close {
    width: 240px;
    height: 56px;
    margin: 20px auto 0;
    display: flex;
    min-height: 56px;
}
.cs2kk-modal__btn-close::after {
    content: none;
}

/* award popup */
.cs2kk-modal__dialog--award {
    max-width: 564px;
}
.cs2kk-modal--multi-product .cs2kk-modal__dialog--award {
    max-width: 99vw;
    width: auto;
}
.cs2kk-award-popup__slider {
    overflow: hidden;
}
.cs2kk-modal__dialog--award-wrap {
    overflow-x: hidden;
    padding-right: 10px;
}
.cs2kk-modal__dialog--award-wrap::-webkit-scrollbar {
    width: 6px;
}
.cs2kk-modal__dialog--award-wrap::-webkit-scrollbar-track {
    background: #363F5D;
    border-radius: 8px;
}
.cs2kk-modal__dialog--award-wrap::-webkit-scrollbar-thumb {
    background: #EE4903;
    border-radius: 8px;
    max-height: 200px;
}
.cs2kk-award-popup__track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    user-select: none;
    -webkit-user-select: none;
}
.cs2kk-award-popup__track::-webkit-scrollbar {
    display: none;
}
.cs2kk-award-popup__track img {
    -webkit-user-drag: none;
    pointer-events: none;
}
.cs2kk-award-popup__slide {
    flex: 0 0 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    text-align: center;
    padding: 20px;
    background: radial-gradient(100% 100% at 50% 0%, #EE4903 0%, #1E0A0A 100%);
    border: 1px solid #fff;
    width: 100%;
}
.cs2kk-modal--multi-product .cs2kk-award-popup__slide {
    background: radial-gradient(100% 100% at 50% 0%, #005FC6 0%, #0A111E 100%);
}
.cs2kk-award-popup__product-link {
    color: inherit;
    text-decoration: none;
}
.cs2kk-award-popup__product-image {
    max-width: 443px;
    max-height: 443px;
    object-fit: contain;
    margin-bottom: 12px;
    height: calc(100dvh - 324px);
    width: auto;
}
.cs2kk-award-popup__product-name {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}
.cs2kk-award-popup__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}
.cs2kk-modal--multi-product .cs2kk-award-popup__product-image {
    width: 222px;
    height: 222px;
}
.cs2kk-award-popup__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    border: none;
    padding: 0;
    cursor: pointer;
}
.cs2kk-award-popup__dot.is-active {
    background: var(--cs2kk-orange);
    width: 12px;
    height: 12px;
}

/* regulation popup */
.cs2kk-modal__dialog--regulation {
    max-width: 960px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    height: 100%;
    max-height: calc(100% - 160px);
}
.cs2kk-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.cs2kk-modal__header .cs2kk-modal__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    text-align: center;
    margin: 0 auto;
}
.cs2kk-modal__scroll {
    overflow-y: auto;
    padding-right: 20px;
    font-size: 18px;
    line-height: 1.5;
}
.cs2kk-modal__scroll::-webkit-scrollbar {
    width: 12px;
}
.cs2kk-modal__scroll::-webkit-scrollbar-track {
    background: #363F5D;
    border-radius: 8px;
}
.cs2kk-modal__scroll::-webkit-scrollbar-thumb {
    background: #EE4903;
    border-radius: 8px;
    max-height: 200px;
}
.cs2kk-modal__scroll a {
    color: #00BDF2;
}
.cs2kk-modal__scroll h4 {
    color: #fff;
    margin: 20px 0 8px;
    font-size: 24px;
    font-weight: 700;
}
.cs2kk-modal__scroll ul,
.cs2kk-modal__scroll ol {
    padding-left: 20px;
    margin: 0 0 12px;
}

/* ---------- scroll lock ---------- */
.cs2kk-scroll-lock {
    overflow: hidden;
}

/* ==================================================================
   BREAKPOINTS: 360 / 768 / 1024 / 1440 (по вимозі задачі)
   ================================================================== */

@media (min-width: 768px) {
    .cs2kk-katka24 {
        flex-direction: row;
        align-items: center;
    }
    .cs2kk-katka24__visual,
    .cs2kk-katka24__content {
        flex: 1 1 50%;
    }
    .cs2kk-katka24--ps5 {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1024px) {
    .cs2kk-nav {
        display: flex;
    }
    .cs2kk-burger {
        display: none;
    }

    .cs2kk-modal--multi-product .cs2kk-award-popup__track {
        flex-wrap: wrap;
        transform: none !important;
    }
    .cs2kk-modal--multi-product .cs2kk-award-popup__slide {
        max-width: 262px;
    }
    .cs2kk-modal--multi-product .cs2kk-award-popup__dots {
        display: none;
    }

    .cs2kk-prize-fund__bg-mobile {
        display: none;
    }

    section {
        border-bottom: 1px solid #fff;
    }
    
    .cs2kk-awards__bonus br {
        display: none;
    }
}

@media (max-width: 1023px) {
    .cs2kk-header__inner {
        padding: 12px 16px;
        height: 44px;
    }
    
    .cs2kk-header {
        position: fixed;
        width: 100%;
    }

    .cs2kk-header__logo {
        height: 20px;
    }

    [id] {
        scroll-margin-top: 44px;
    }

    .cs2kk-modal--multi-product .cs2kk-award-popup__slide {
        flex: 0 0 84%;
    }

    .cs2kk-header__logo img{
        height: 20px;
        width: auto;
    }

    /* ---------- hero ---------- */
    .cs2kk-hero {
        min-height: auto;
        padding: 105px 0 0;
    }
    .cs2kk-hero__bg {
        aspect-ratio: 576 / 360;
        height: auto;
        position: static;
    }
    .cs2kk-hero__inner {
        padding: 0 16px;
    }
    .cs2kk-hero__badge {
        height: 33px;
        margin: 0 auto;
        display: flex;
        justify-self: center;
    }
    .cs2kk-hero__eyebrow {
        font-size: 16px;
        line-height: 1.3;
        max-width: 100%;
        margin-bottom: 8px;
        text-align: center;
    }
    .cs2kk-hero__title {
        font-size: 48px;
        line-height: 1.05;
        max-width: 100%;
        margin-bottom: 8px;
        text-align: center;
    }
    .cs2kk-hero__dates {
        font-size: 16px;
        margin-bottom: 24px;
        text-align: center;
    }
    .cs2kk-hero__actions {
        margin-bottom: 32px;
    }
    .cs2kk-hero__actions .cs2kk-btn {
        width: 100%;
    }
    .cs2kk-hero__sponsors {
        gap: 16px;
        justify-content: space-around;
    }
    .sponsor-hp .cs2kk-hero__sponsor-logo {
        height: 38px;
        width: 38px;
    }
    .sponsor-privatbank .cs2kk-hero__sponsor-logo {
        width: 136px;
        height: auto;
    }

    /* ---------- prize fund ---------- */
    .cs2kk-prize-fund {
        min-height: auto;
        padding: 60px 16px 0;
        background-image:none;
    }
    .cs2kk-prize-fund__bg-mobile {
        width: 100%;
        height: auto;
    }
    .cs2kk-prize-fund__inner {
        position: static;
    }
    .cs2kk-prize-fund__title {
        font-size: 40px;
        line-height: 1.1;
    }
    .cs2kk-prize-fund__label {
        font-size: 18px;
    }
    .cs2kk-prize-fund__sum {
        font-size: 56px;
        line-height: 1.1;
    }
    .cs2kk-prize-fund__sum span {
        font-size: 50px;
    }

    /* ---------- awards ---------- */
    .cs2kk-awards__bg {
        display: none;
    }
    .cs2kk-awards {
        padding: 60px 16px;
        display: flex;
        flex-direction: column;
    }
    .cs2kk-awards__title {
        font-size: 40px;
        margin-bottom: 12px;
        order: 1;
    }
    .cs2kk-awards__grid {
        gap: 8px;
        order: 3;
    }
    .cs2kk-award-card {
        flex: 1 1 calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .cs2kk-award-card__image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-bottom: 16px;
    }
    .cs2kk-awards__bonus {
        font-size: 16px;
        order: 2;
        margin: 0 0 28px;
        line-height: 20px;
    }
    .cs2kk-awards__bonus strong {
        font-size: 24px;
    }

    /* ---------- katka24 blocks ---------- */
    .cs2kk-katka24 {
        padding: 32px 0;
        border-bottom: none;
    }
    .cs2kk-katka24__content {
        padding: 0 16px;
        max-width: 100vw;
    }
    .cs2kk-katka24__visual,
    .cs2kk-katka24--ps5 .cs2kk-katka24__visual {
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 8px;
    }
    .cs2kk-katka24__logo {
        height: 36px;
    }
    .cs2kk-katka24__title {
        margin: 0 0 40px;
        max-width: 100%;
        font-size: 32px;
        text-align: center;
    }
    .cs2kk-katka24 .cs2kk-btn {
        width: 100%;
    }
    .cs2kk-katka24__actions {
        margin-bottom: 32px;
    }
    .cs2kk-katka24__perks {
        flex-direction: column;
        gap: 21px;
        align-items: center;
    }
    .cs2kk-katka24__perk {
        min-width: initial;
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
    .cs2kk-katka24__perk-value {
        flex: 0 0 auto;
        width: 110px;
        font-size: 32px;
        justify-content: end;
    }
    .cs2kk-katka24__perk:first-of-type strong {
        position: absolute;
        top: 9px;
        right: 69px;
        margin-right: 0;
        left: auto;
        font-size: 10px;
    }
    .cs2kk-katka24__perk-label {
        flex: 1 1 auto;
        max-width: none;
        width: auto;
        font-size: 14px;
        line-height: 1.3;
        width: auto;
        text-align: left;
        min-width: 152px;
    }
    .cs2kk-katka24__steps {
        flex-direction: column;
        gap: 4px;
        margin: 32px 0;
        font-size: 18px;
    }
    .cs2kk-katka24__step-arrow {
        height: 26px;
        margin: 0 auto;
        transform: translate(calc(50% + 26px), 0) rotate(90deg);
    }
    .cs2kk-katka24--ps5 {
        border-top: none;
        border-bottom: 1px solid #fff;
        background: none;
    }
    .cs2kk-katka24--ps5 .cs2kk-katka24__logo {
        display: none;
    }
    .cs2kk-katka24--ps5 .cs2kk-katka24__visual {
        margin: 0;
    }
    .cs2kk-katka24--ps5 .cs2kk-katka24__title {
        margin: 32px 0 40px;
    }

    .cs2kk-katka24__step {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 12px 0;
    }

    .cs2kk-katka24__step br {
        display: none;
    }

    .cs2kk-katka24__legal {
        text-align: left;
    }

    /* ---------- timeline ---------- */
    .cs2kk-timeline {
        padding: 60px 0;
        background-image: none;
    }
    .cs2kk-timeline__list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 64px;
        padding: 0 16px;
    }
    .cs2kk-timeline__item {
        flex: 1 1 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
    .cs2kk-timeline__label,
    .cs2kk-timeline__date {
        font-size: 16px;
        line-height: 1.4;
    }

    /* ---------- registration ---------- */
    .cs2kk-registration {
        padding: 0 16px 32px;
    }
    .cs2kk-registration__bg {
        display: none;
    }
    .cs2kk-registration__title {
        font-size: 40px;
    }
    .cs2kk-registration__panel {
        max-width: 100%;
        padding: 32px 16px 16px;
    }
    
    .cs2kk-registration__hint {
        font-size: 12px;
    }

    .cs2kk-registration__option {
        margin-bottom: 16px;
    }

    .cs2kk-registration__option:last-of-type {
        margin-bottom: 0;
    }
    /* ---------- footer ---------- */
    .cs2kk-footer__title {
        font-size: 24px;
    }

    .cs2kk-footer__actions {
        flex-direction: column;
        gap: 16px;
    }

    /* ---------- modals ---------- */
    .cs2kk-modal {
        padding: 0;
        width: 100dvw;
        height: 100dvh;
    }
    .cs2kk-modal__dialog {
        padding: 24px 20px;
        max-width: initial!important;
        max-height: initial;
        width: 100dvw;
        height: 100dvh;
    }
    .cs2kk-modal__dialog--award {
        display: flex;
        justify-content: center;
        flex-direction: column;
        border: none;
        padding: 24px 10px 24px 20px;
    }
    .cs2kk-modal__title {
        font-size: 20px;
    }
    .cs2kk-modal__dialog--regulation {
        max-height: 100dvh;
        height: 100dvh;
        width: 100dvw;
        padding: 16px;
        border: none;
    }
    .cs2kk-award-popup__product-image {
        width: 100%;
        height: auto;
        max-width: 320px;
        aspect-ratio: 1 / 1;
    }

    .cs2kk-modal__close {
        display: none;
    }

    .cs2kk-modal__scroll {
        font-size: 16px;
        overflow-x: hidden;
        overflow-y: auto;
        text-align: left;
    }

    .cs2kk-modal__btn-close {
        width: 100%;
        margin: 12px auto 0;
    }
}

@media (max-width: 767px) {
    .cs2kk-hero__title {
        font-size: 40px;
    }

    /* одна картка нагороди в рядок */
    .cs2kk-award-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /* одна плитка таймлайну в рядок */
    .cs2kk-timeline__item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* ---------- легка поява блоків при скролі ---------- */
.cs2kk-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.cs2kk-reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .cs2kk-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}