@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&family=Poppins:wght@400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-black: #000;
    --color-dark: #0d0d0d;
    --color-red: #fe1619;
    --color-red-dark: #441714;
    --color-white: #fff;
    --color-border: rgba(255, 255, 255, 0.3);
    --font-title: 'Titillium Web', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --max-width: 1200px;
    --px-desktop: 42px;
    --px-mobile: 12px;
    --py-section: 96px;
    --py-section-mobile: 48px;
    --section-gap: 48px;
    --card-gap: 24px;
    --card-radius: 12px;
    --card-padding: 24px;
    --card-gradient: linear-gradient(to bottom, var(--color-red-dark), var(--color-dark));
}

html, body {
    min-height: 100%;
    background-color: var(--color-black);
    color: var(--color-white);
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
}

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

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


/* ===== SITE WRAPPER ===== */
.site-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}


/* ===== HEADER ===== */
.site-header {
    background-color: var(--color-black);
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px var(--px-desktop);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.site-logo__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.site-logo__text {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 32px;
    color: var(--color-white);
    text-transform: capitalize;
    white-space: nowrap;
    line-height: 1;
}

.site-nav {
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 100px;
    padding: 12px 22px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.site-nav__link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    white-space: nowrap;
    line-height: 1.2;
    transition: color 0.2s;
}

.site-nav__link:hover {
    color: var(--color-red);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hamburger-btn img {
    width: 24px;
    height: 24px;
}


/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--color-dark);
    z-index: 200;
    flex-direction: column;
}

.mobile-menu.is-open {
    display: flex;
}

.mobile-menu__header {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.mobile-menu__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.mobile-menu__close img {
    width: 24px;
    height: 24px;
}

.mobile-menu__nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 96px;
}

.mobile-menu__link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-white);
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s;
}

.mobile-menu__link:hover {
    color: var(--color-red);
}

.mobile-menu__footer {
    padding: 12px;
    flex-shrink: 0;
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    border-radius: 32px;
    height: 48px;
    width: 100%;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    transition: background-color 0.2s;
}

.mobile-menu__cta:hover {
    background-color: #e01315;
}


/* ===== SECTION BASE ===== */
.section {
    width: 100%;
}

.section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--py-section) var(--px-desktop);
}


/* ===== SECTION LABEL + TITLE ===== */
.section-label {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 20px;
    color: var(--color-red);
    text-transform: uppercase;
    line-height: 1;
}

.section-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 48px;
    color: var(--color-white);
    line-height: 1.1;
    letter-spacing: -0.48px;
    text-transform: capitalize;
}

.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-heading--center {
    align-items: center;
    text-align: center;
    width: 100%;
}


/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--color-dark);
    overflow: hidden;
}

.hero__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--py-section) var(--px-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    align-items: flex-start;
}

.hero__row {
    display: flex;
    gap: var(--section-gap);
    align-items: flex-start;
    width: 100%;
}

.hero__image-wrap {
    flex: 1 0 0;
    min-width: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 4096 / 2731;
}

.hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--card-radius);
}

.hero__text {
    width: 546px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__description p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    border-radius: 32px;
    height: 48px;
    padding: 12px 24px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #e01315;
    transform: translateY(-2px);
}


/* ===== ADVANTAGES SECTION ===== */
.advantages {
    background-color: var(--color-black);
}

.advantages__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--py-section) var(--px-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    align-items: center;
}

.advantages__grid {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    width: 100%;
}

.advantages__row {
    display: flex;
    gap: var(--card-gap);
    align-items: flex-start;
}

.advantage-card {
    flex: 1 0 0;
    min-width: 0;
    background: var(--card-gradient);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    align-items: center;
}

.advantage-card__icon {
    width: 94px;
    height: 94px;
    flex-shrink: 0;
}

.advantage-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.advantage-card__title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
    line-height: 1.1;
    text-transform: capitalize;
    width: 100%;
}

.advantage-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
    width: 100%;
}


/* ===== TWO-COLUMN SECTION (Who We Are / Review Process) ===== */
.two-col {
    overflow: hidden;
}

.two-col--dark {
    background-color: var(--color-dark);
}

.two-col--black {
    background-color: var(--color-black);
}

.two-col__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--py-section) var(--px-desktop);
    display: flex;
    gap: var(--section-gap);
    align-items: center;
}

.two-col__text {
    width: 546px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.two-col__description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.two-col__description p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}

.two-col__image-wrap {
    flex: 1 0 0;
    min-width: 0;
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 3080 / 2320;
}

.two-col__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--card-radius);
}


/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--color-dark);
}

.testimonials__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--py-section) var(--px-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--section-gap);
    align-items: center;
}

.testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    width: 100%;
}

.testimonials__row {
    display: flex;
    gap: var(--card-gap);
    align-items: stretch;
}

.review-card {
    flex: 1 0 0;
    min-width: 0;
    background: var(--card-gradient);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.review-card__header {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card__meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.review-card__stars {
    width: 112px;
    height: 16px;
    display: block;
}

.review-card__name {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 24px;
    color: var(--color-white);
    line-height: 1.2;
}

.review-card__quote {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
    width: 100%;
}


/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.site-footer__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 50%,
        rgba(254, 22, 25, 0.2) 0%,
        rgba(208, 22, 24, 0.2) 25%,
        rgba(161, 23, 23, 0.2) 50%,
        rgba(115, 23, 21, 0.2) 75%,
        rgba(68, 23, 20, 0.2) 100%);
}

.site-footer__inner {
    position: relative;
    z-index: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--px-desktop) 42px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-contact {
    display: flex;
    gap: 6px;
    align-items: center;
}

.footer-contact__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-contact__text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
    white-space: nowrap;
}

.footer-socials {
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-social {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    transition: opacity 0.2s, transform 0.2s;
}

.footer-social:hover {
    opacity: 0.7;
    transform: scale(1.2);
}

.footer-social img {
    width: 24px;
    height: 24px;
}

.footer-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav__link {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    line-height: 1.2;
    white-space: nowrap;
    transition: color 0.2s;
}

.footer-nav__link:hover {
    color: var(--color-red);
}

.footer-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
    border: none;
}

.footer-copyright {
    font-family: var(--font-title);
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white);
    text-align: center;
    line-height: 1.2;
    white-space: nowrap;
}


/* ===== GAME PAGE SECTION ===== */
.game-section {
    background-color: var(--color-dark);
    overflow: hidden;
}

.game-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--px-desktop);
    display: grid;
    grid-template-columns: 546px 546px;
    grid-template-areas:
        "heading image"
        "desc    image"
        "btn     image";
    column-gap: 24px;
    row-gap: 0;
    align-items: start;
}

.game-heading {
    grid-area: heading;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.game-desc {
    grid-area: desc;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 48px;
}

.game-desc p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}

.game-btn {
    grid-area: btn;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-red);
    border-radius: 32px;
    height: 48px;
    padding: 12px 24px;
    width: 146px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 24px;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.2s, transform 0.2s;
}

.game-btn:hover {
    background-color: #e01315;
    transform: translateY(-2px);
}

.game-image-card {
    grid-area: image;
    background: var(--card-gradient);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
}

.game-image-card img {
    width: 100%;
    height: 498px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}


/* ===== CATALOG SECTION ===== */
.catalog-section {
    background-color: var(--color-dark);
    overflow: hidden;
}

.catalog-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--px-desktop);
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
}

.catalog-intro {
    display: flex;
    gap: var(--card-gap);
    align-items: flex-end;
    width: 100%;
}

.catalog-intro__text {
    width: 546px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
}

.catalog-intro__description {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-intro__description p {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}

.catalog-intro__cards {
    display: flex;
    gap: var(--card-gap);
    align-items: center;
    width: 546px;
    flex-shrink: 0;
}

.catalog-featured {
    display: flex;
    gap: var(--card-gap);
    align-items: center;
    width: 100%;
}

.catalog-featured__right {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
    width: 546px;
    flex-shrink: 0;
}

.catalog-featured__subrow {
    display: flex;
    gap: var(--card-gap);
}

.catalog-info-row {
    display: flex;
    gap: var(--card-gap);
    align-items: stretch;
    width: 100%;
}

.game-card {
    background: var(--card-gradient);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
    flex-shrink: 0;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.game-card--small {
    width: 261px;
}

.game-card--large {
    width: 546px;
}

.game-card--flex {
    flex: 1 0 0;
    min-width: 0;
    width: auto;
}

.game-card__image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.game-card__image--small {
    height: 213px;
}

.game-card__image--large {
    height: 498px;
}

.catalog-info-card {
    flex: 1 0 0;
    min-width: 0;
    background: var(--card-gradient);
    border-radius: var(--card-radius);
    padding: var(--card-padding);
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    color: var(--color-white);
}

.catalog-info-card__title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 32px;
    color: var(--color-white);
    line-height: 1.1;
    text-transform: capitalize;
}

.catalog-info-card__desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.2;
}


/* ===== POLICY PAGES ===== */
.policy-section {
    background-color: var(--color-dark);
}

.policy-section__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 96px var(--px-desktop);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-title {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -0.48px;
    color: var(--color-white);
}

.policy-body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    color: var(--color-white);
}

.policy-body p {
    line-height: 1.2;
    margin: 0;
}

.policy-body ul {
    list-style: disc;
    padding-left: 27px;
    margin: 0;
}

.policy-body li {
    line-height: 1.2;
}


/* ===== MOBILE ≤768px ===== */
@media (max-width: 768px) {
    :root {
        --py-section: var(--py-section-mobile);
    }

    .site-header__inner {
        padding: 12px var(--px-mobile);
    }

    .site-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .section-title {
        font-size: 40px;
    }

    .hero__inner {
        padding: var(--py-section-mobile) var(--px-mobile);
        gap: var(--card-gap);
    }

    .hero__row {
        flex-direction: column;
        gap: var(--card-gap);
    }

    .hero__image-wrap {
        width: 100%;
        flex: none;
    }

    .hero__text {
        width: 100%;
        flex-shrink: 1;
    }

    .btn-primary {
        width: 100%;
    }

    .advantages__inner {
        padding: var(--py-section-mobile) var(--px-mobile);
        gap: var(--card-gap);
    }

    .advantages__row {
        flex-direction: column;
    }

    .advantage-card {
        flex: none;
        width: 100%;
    }

    .two-col__inner {
        padding: var(--py-section-mobile) var(--px-mobile);
        flex-direction: column;
        gap: var(--card-gap);
    }

    .two-col__text {
        width: 100%;
        flex-shrink: 1;
    }

    .two-col__image-wrap {
        width: 100%;
        flex: none;
    }

    .two-col--black .two-col__text {
        order: -1;
    }

    .testimonials__inner {
        padding: var(--py-section-mobile) var(--px-mobile);
        gap: var(--card-gap);
    }

    .testimonials__row {
        flex-direction: column;
    }

    .review-card {
        flex: none;
        width: 100%;
    }

    .advantages__grid {
        gap: 12px;
    }

    .advantages__row {
        gap: 12px;
    }

    .testimonials__grid {
        gap: 12px;
    }

    .testimonials__row {
        gap: 12px;
    }

    .game-section__inner {
        padding: 48px var(--px-mobile);
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .game-heading {
        order: 1;
        margin-bottom: 0;
    }

    .game-image-card {
        order: 2;
    }

    .game-image-card img {
        height: 358px;
    }

    .game-btn {
        order: 3;
        width: 100%;
    }

    .game-desc {
        order: 4;
        margin-bottom: 0;
    }

    .catalog-section__inner {
        padding: 48px var(--px-mobile);
        gap: var(--card-gap);
    }

    .catalog-intro {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-intro__text {
        width: 100%;
    }

    .catalog-intro__cards {
        width: 100%;
        gap: 12px;
    }

    .catalog-intro__cards .game-card {
        flex: 1 0 0;
        width: auto;
        flex-shrink: 1;
    }

    .catalog-intro__cards .game-card__image--small {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .catalog-featured {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-featured .game-card--large {
        width: 100%;
    }

    .catalog-featured .game-card__image--large {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .catalog-featured__right {
        width: 100%;
        gap: 12px;
    }

    .catalog-featured__subrow {
        gap: 12px;
    }

    .catalog-featured__subrow .game-card {
        flex: 1 0 0;
        width: auto;
        flex-shrink: 1;
    }

    .catalog-featured__subrow .game-card__image--small {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .catalog-info-row {
        flex-direction: column;
    }

    .catalog-info-card {
        flex: none;
        width: 100%;
    }

    .site-footer__inner {
        padding: 48px var(--px-mobile) 42px;
    }

    .footer-contact__text {
        font-size: 16px;
        white-space: normal;
    }

    .footer-copyright {
        white-space: normal;
    }

    .policy-section__inner {
        padding: 48px var(--px-mobile);
    }

    .cookie-banner {
        bottom: 12px;
        width: calc(100% - 24px);
        padding: 24px;
        gap: 16px;
    }

    .cookie-banner__title {
        font-size: 32px;
    }

    .cookie-banner__desc {
        font-size: 16px;
    }

    .cookie-banner__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cookieSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes menuFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mobile-menu.is-open {
    animation: menuFadeIn 0.25s ease forwards;
}

.advantage-card {
    transition: transform 0.25s, box-shadow 0.25s;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.review-card {
    transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.two-col__image-wrap img {
    transition: transform 0.4s;
}

.two-col__image-wrap:hover img {
    transform: scale(1.02);
}

.hero__image-wrap img {
    transition: transform 0.4s;
}

.hero__image-wrap:hover img {
    transform: scale(1.02);
}


/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 500;
    width: calc(100% - 84px);
    max-width: 1116px;
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: cookieSlideUp 0.4s ease forwards;
}

.cookie-banner.is-hidden {
    display: none;
}

.cookie-banner__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 48px;
    color: var(--color-white);
    line-height: 1.1;
}

.cookie-banner__desc {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--color-white);
    line-height: 1.4;
}

.cookie-banner__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 12px 28px;
    border-radius: 32px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s, border-color 0.2s;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}

.cookie-btn--accept {
    background-color: var(--color-red);
    color: var(--color-white);
    border: 2px solid var(--color-red);
}

.cookie-btn--accept:hover {
    background-color: #e01315;
    border-color: #e01315;
    transform: translateY(-1px);
}

.cookie-btn--decline {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.cookie-btn--decline:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    transform: translateY(-1px);
}

.cookie-btn--settings {
    background-color: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.cookie-btn--settings:hover {
    border-color: var(--color-red);
    color: var(--color-red);
    transform: translateY(-1px);
}
