@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;600;700;800;900&display=swap');

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

html,
body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #000000;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

p {
    margin: 0;
}

:root {
    --color-primary: #2000ae;
    --color-primary-dark: #14007b;
    --color-primary-darker: #070048;
    --color-accent: #5233ff;
    --color-white: #ffffff;
    --color-black: #000000;
    --gradient-radial: radial-gradient(ellipse at center, rgba(32, 0, 174, 1) 0%, rgba(20, 0, 123, 1) 35.35%, rgba(7, 0, 72, 1) 70.71%);
}

.site-header {
    background: var(--gradient-radial);
    padding: 18px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    overflow: hidden;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.site-header__logo-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #ffffff;
    line-height: 1.1;
    text-transform: capitalize;
    white-space: nowrap;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-header__nav a {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.site-header__burger {
    display: none;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.site-header__burger span,
.site-header__burger span::before,
.site-header__burger span::after {
    display: block;
    width: 28px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
}

.site-header__burger span {
    top: 50%;
    transform: translateY(-50%);
}

.site-header__burger span::before,
.site-header__burger span::after {
    content: '';
}

.site-header__burger span::before {
    top: -8px;
}

.site-header__burger span::after {
    top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    padding: 18px 50px;
    border-radius: 10px;
    line-height: normal;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.btn:hover {
    opacity: 0.9;
}

.hero {
    background: #ffffff;
    padding: 20px 60px;
}

.hero__inner {
    background: var(--gradient-radial);
    border-radius: 40px;
    padding: 57px 90px 0 40px;
    height: 530px;
    position: relative;
    overflow: hidden;
}

.hero__row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.hero__col {
    width: 451px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
}

.hero__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.hero__text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #ffffff;
    line-height: normal;
    width: 451px;
    flex-shrink: 0;
}

.hero__image {
    position: absolute;
    bottom: 0;
    left: 459px;
    width: 582px;
    height: 329px;
    object-fit: contain;
    pointer-events: none;
}

.section-split {
    background: #ffffff;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 60px;
}

.section-split__image {
    width: 437px;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 40px;
    overflow: hidden;
}

.section-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-split__content {
    width: 584px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.section-split__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #000000;
    line-height: 1.1;
    margin: 0;
}

.section-split__text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #000000;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.categories {
    background: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.categories__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #000000;
    line-height: 1.1;
    text-align: center;
    margin: 0;
}

.categories__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.categories__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    background: var(--color-primary);
    border-radius: 40px;
    padding: 30px 16px 0 16px;
    height: 340px;
    position: relative;
    overflow: hidden;
}

.category-card__title {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 10px 0;
}

.category-card__text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: normal;
}

.category-card__icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 121px;
    height: 121px;
    object-fit: contain;
    pointer-events: none;
}

.categories__banner {
    width: 100%;
    height: 300px;
    border-radius: 40px;
    overflow: hidden;
}

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

.faq {
    background: #ffffff;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.faq__inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 780px;
}

.faq__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #000000;
    line-height: 1.1;
    margin: 0;
}

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

.faq-item {
    background: var(--color-primary);
    border-radius: 20px;
    padding: 24px;
    color: #ffffff;
}

.faq-item__question {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 4px 0;
}

.faq-item__answer {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: normal;
}

.faq__image {
    position: absolute;
    left: 816px;
    top: 230px;
    width: 512px;
    height: 467px;
    object-fit: contain;
    pointer-events: none;
}

.catalog-intro {
    background: #ffffff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.catalog-intro__box {
    width: 1080px;
    max-width: calc(100% - 120px);
    background: var(--gradient-radial);
    border-radius: 40px;
    padding: 20px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.catalog-intro__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.catalog-intro__text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.catalog-grid {
    width: 100%;
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.catalog-card {
    height: 190px;
    width: 164px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.catalog-card:hover {
    transform: translateY(-4px);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-card--large {
    height: 361px;
    width: 312px;
}

.catalog-mood {
    background: #ffffff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.catalog-mood__box {
    width: 1080px;
    max-width: calc(100% - 120px);
    background: var(--gradient-radial);
    border-radius: 40px;
    padding: 20px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.catalog-mood__image {
    width: 312px;
    height: 361px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.catalog-mood__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-mood__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #ffffff;
}

.catalog-mood__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.catalog-mood__text {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.catalog-features {
    width: 1080px;
    max-width: calc(100% - 120px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    background: var(--color-primary);
    border-radius: 40px;
    padding: 30px 16px 0;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.feature-card__title {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #ffffff;
    line-height: normal;
    margin: 0 0 10px 0;
}

.feature-card__text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: normal;
}

.feature-card__icon {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 121px;
    height: 121px;
    object-fit: contain;
    pointer-events: none;
}

.game-page {
    background: #ffffff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.game-page__hero {
    width: 1080px;
    max-width: calc(100% - 120px);
    background: var(--gradient-radial);
    border-radius: 40px;
    padding: 20px 40px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.game-page__hero-image {
    width: 312px;
    height: 361px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.game-page__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-page__hero-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    color: #ffffff;
}

.game-page__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.game-page__desc {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

.game-page__features {
    width: 1080px;
    max-width: calc(100% - 120px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.policy {
    background: #ffffff;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.policy__box {
    width: 1080px;
    max-width: calc(100% - 120px);
    background: var(--gradient-radial);
    border-radius: 40px;
    padding: 20px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.policy__title {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    font-size: 60px;
    color: #ffffff;
    line-height: 1.1;
    margin: 0;
}

.policy__body {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: normal;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy__body p {
    margin: 0;
}

.site-footer {
    background: #ffffff;
    padding-top: 20px;
    display: flex;
    justify-content: center;
}

.site-footer__inner {
    background: var(--gradient-radial);
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    padding: 60px 47px 40px;
    width: 1200px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.site-footer__brand {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 120px;
    color: #ffffff;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.site-footer__content {
    width: 100%;
    max-width: 1105px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__row {
    width: 739px;
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__links {
    display: flex;
    flex-direction: column;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 1;
}

.site-footer__links a {
    display: block;
    line-height: 1;
}

.site-footer__contacts {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 1;
}

.site-footer__bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.site-footer__copy {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1;
}

.site-footer__social {
    display: flex;
    align-items: center;
    gap: 5px;
}

.site-footer__social a {
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.site-footer__social a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 1280px) {
    .hero__inner {
        padding: 40px;
        height: auto;
    }

    .hero__row {
        align-items: center;
    }

    .hero__image {
        position: static;
        margin: 20px auto 0;
        width: 100%;
        max-width: 582px;
        height: auto;
    }

    .faq__image {
        position: static;
        margin: 30px 0 0;
        width: 100%;
        max-width: 512px;
        height: auto;
    }

    .faq__inner {
        max-width: 100%;
    }

    .site-footer__brand {
        font-size: 80px;
    }
}

@media (max-width: 1200px) {
    .catalog-intro__box,
    .catalog-mood__box,
    .catalog-features,
    .game-page__hero,
    .game-page__features,
    .policy__box {
        max-width: calc(100% - 60px);
    }
}

@media (max-width: 1024px) {
    .catalog-intro__title,
    .catalog-mood__title,
    .game-page__title,
    .policy__title {
        font-size: 48px;
    }

    .catalog-mood__box,
    .game-page__hero {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-mood__image,
    .game-page__hero-image {
        width: 100%;
        height: 220px;
    }

    .catalog-features,
    .game-page__features {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-header {
        padding: 18px 30px;
    }

    .hero {
        padding: 20px 30px;
    }

    .hero__title {
        font-size: 48px;
    }

    .section-split {
        padding: 60px 30px;
        gap: 30px;
    }

    .section-split__image {
        width: 40%;
    }

    .section-split__content {
        width: 60%;
    }

    .section-split__title {
        font-size: 48px;
    }

    .categories {
        padding: 60px 30px;
    }

    .categories__title {
        font-size: 48px;
    }

    .categories__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq {
        padding: 60px 30px;
    }

    .faq__title {
        font-size: 48px;
    }

    .site-footer__brand {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 20px;
    }

    .site-header__logo-text {
        font-size: 24px;
    }

    .site-header__logo-img {
        width: 40px;
        height: 40px;
    }

    .site-header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gradient-radial);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 20px 20px;
        z-index: 50;
    }

    .site-header__nav.is-open {
        display: flex;
    }

    .site-header__nav a {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-header {
        position: relative;
    }

    .site-header__burger {
        display: block;
    }

    .hero {
        padding: 20px;
    }

    .hero__inner {
        padding: 40px 20px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero__row {
        display: contents;
    }

    .hero__col {
        width: 100%;
        order: 1;
        gap: 20px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__text {
        width: 100%;
        order: 3;
    }

    .hero__image {
        position: static;
        margin: 0 auto;
        width: 100%;
        max-width: 334px;
        height: auto;
        order: 2;
    }

    .section-split {
        flex-direction: column !important;
        padding: 40px 20px;
        gap: 20px;
        align-items: stretch;
    }

    .section-split--reverse {
        flex-direction: column-reverse !important;
    }

    .section-split__image {
        width: 100%;
        height: 310px;
        align-self: stretch;
    }

    .section-split__content {
        width: 100%;
        gap: 20px;
    }

    .section-split__title {
        font-size: 36px;
    }

    .section-split__text {
        font-size: 20px;
    }

    .categories {
        padding: 40px 20px;
        gap: 20px;
    }

    .categories__title {
        font-size: 36px;
        text-align: left;
    }

    .categories__list {
        gap: 20px;
    }

    .categories__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-card {
        height: auto;
        min-height: 280px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .category-card__icon {
        position: relative;
        margin-left: auto;
        margin-top: auto;
    }

    .categories__banner {
        height: 300px;
    }

    .faq {
        padding: 40px 20px;
    }

    .faq__inner {
        gap: 20px;
    }

    .faq__title {
        font-size: 36px;
    }

    .faq__image {
        position: static;
        margin: 0 auto;
        width: 219px;
        height: 200px;
        max-width: 219px;
    }

    .faq__items {
        width: 100%;
    }

    .faq-item {
        padding: 20px;
    }

    .site-footer__inner {
        padding: 40px 20px 20px;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        gap: 20px;
    }

    .site-footer__brand {
        font-size: 40px;
        white-space: nowrap;
    }

    .site-footer__content {
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .site-footer__row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        text-align: center;
    }

    .site-footer__contacts {
        text-align: center;
        order: 1;
    }

    .site-footer__links {
        text-align: center;
        align-items: center;
        order: 2;
    }

    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .catalog-intro {
        padding: 40px 0;
        gap: 20px;
    }

    .catalog-intro__box {
        max-width: calc(100% - 40px);
        padding: 20px;
        gap: 20px;
    }

    .catalog-intro__title {
        font-size: 36px;
    }

    .catalog-grid {
        gap: 10px;
        padding: 0 20px;
    }

    .catalog-mood {
        padding: 40px 20px;
        gap: 20px;
    }

    .catalog-mood__box {
        max-width: 100%;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }

    .catalog-mood__image {
        width: 100%;
        height: 220px;
    }

    .catalog-mood__title {
        font-size: 36px;
    }

    .catalog-mood__content {
        gap: 20px;
    }

    .catalog-features,
    .game-page__features {
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .game-page {
        padding: 40px 20px;
        gap: 20px;
    }

    .game-page__hero {
        max-width: 100%;
        padding: 20px;
        gap: 20px;
        flex-direction: column;
    }

    .game-page__hero-image {
        width: 100%;
        height: 240px;
    }

    .game-page__hero-content {
        gap: 20px;
    }

    .game-page__title {
        font-size: 32px;
    }

    .feature-card {
        height: auto;
        min-height: 280px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
    }

    .feature-card__icon {
        position: relative;
        margin-left: auto;
        margin-top: auto;
    }

    .policy {
        padding: 40px 0;
    }

    .policy__box {
        max-width: calc(100% - 40px);
        padding: 20px;
        gap: 20px;
    }

    .policy__title {
        font-size: 36px;
    }

    .policy__body {
        font-size: 18px;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 32px;
    padding: 36px 40px;
    box-shadow: 0 20px 60px rgba(7, 0, 72, 0.35);
    z-index: 1000;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-banner__title {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 36px;
    color: #000000;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.cookie-banner__text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #000000;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

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

.cookie-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 36px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    line-height: normal;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cookie-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(82, 51, 255, 0.4);
    opacity: 0.95;
}

.cookie-banner__btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 24px 24px;
        border-radius: 24px;
    }

    .cookie-banner__title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .cookie-banner__text {
        font-size: 16px;
        gap: 12px;
        margin-bottom: 20px;
    }

    .cookie-banner__btn {
        padding: 12px 28px;
        font-size: 16px;
        border-radius: 12px;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero__title,
.hero__text,
.hero__col .btn {
    animation: fadeUp 0.8s ease both;
}

.hero__text { animation-delay: 0.15s; }
.hero__col .btn { animation-delay: 0.3s; }

.hero__image {
    animation: floatY 6s ease-in-out infinite;
}

.section-split__title,
.section-split__text,
.categories__title,
.faq__title,
.catalog-intro__title,
.catalog-mood__title,
.game-page__title,
.policy__title {
    animation: fadeUp 0.7s ease both;
}

/* Hover effects */
.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(82, 51, 255, 0.4);
    opacity: 1;
}

.btn:active {
    transform: translateY(-1px);
}

.site-header__nav a {
    position: relative;
    transition: color 0.2s ease;
}

.site-header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 2px;
    background: #ffffff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-header__nav a:hover::after {
    transform: scaleX(1);
}

.site-header__logo {
    transition: transform 0.25s ease;
}

.site-header__logo:hover {
    transform: scale(1.03);
}

.category-card,
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(7, 0, 72, 0.25);
}

.category-card__icon,
.feature-card__icon {
    transition: transform 0.4s ease;
}

.category-card:hover .category-card__icon,
.feature-card:hover .feature-card__icon {
    transform: rotate(-6deg) scale(1.08);
}

.faq-item {
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    transform: translateX(6px);
    background: var(--color-primary-dark);
}

.catalog-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.catalog-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 36px rgba(7, 0, 72, 0.35);
}

.catalog-card img {
    transition: transform 0.5s ease;
}

.catalog-card:hover img {
    transform: scale(1.06);
}

.site-footer__links a {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.site-footer__links a:hover {
    color: rgba(255, 255, 255, 0.75);
    transform: translateX(4px);
}

.site-footer__social a {
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.site-footer__social a:hover {
    transform: translateY(-3px) scale(1.1);
    opacity: 0.85;
}

.section-split__image img,
.catalog-mood__image img,
.game-page__hero-image img {
    transition: transform 0.5s ease;
}

.section-split__image:hover img,
.catalog-mood__image:hover img,
.game-page__hero-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 32px;
    }

    .section-split__title,
    .categories__title,
    .faq__title,
    .policy__title {
        font-size: 32px;
    }

    .site-footer__brand {
        font-size: 32px;
    }
}
