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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Sora', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

:root {
    --color-bg: #000000;
    --color-bg-alt: #010101;
    --color-primary: #07abfd;
    --color-white: #ffffff;
    --color-white-60: rgba(255, 255, 255, 0.6);
    --color-white-20: rgba(255, 255, 255, 0.2);
    --color-white-10: rgba(255, 255, 255, 0.1);
    --max-width: 1200px;
    --inner-padding: 60px;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    padding: 12px 40px;
    border-radius: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn--wide {
    padding: 12px 60px;
}

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 200px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    gap: 200px;
}

.navigation {
    backdrop-filter: blur(4.15px);
    -webkit-backdrop-filter: blur(4.15px);
    background-color: var(--color-white-10);
    border-radius: 60px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

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

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

.logo__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo__text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: 0.9;
    letter-spacing: 1.92px;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 72px;
    list-style: none;
}

.nav__menu a {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-white);
    transition: color 0.3s ease;
}

.nav__menu a:hover {
    color: var(--color-primary);
}

.nav__burger {
    display: none;
    width: 25px;
    height: 18px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav__burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--color-white);
    border-radius: 2px;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    width: 100%;
}

.hero__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
}

.hero__text {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    width: 100%;
}

.section {
    background-color: var(--color-bg);
    width: 100%;
    padding: 80px 0;
}

.section--primary {
    background-color: var(--color-primary);
}

.section__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.about__top {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    width: 100%;
}

.about__intro {
    flex: 1 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
}

.about__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    white-space: nowrap;
}

.about__bottom {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.about__image {
    width: 368px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.about__text {
    flex: 1 0 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
}

.about__text p + p {
    margin-top: 1.6em;
}

.styles__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
    text-align: left;
}

.styles__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.style-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background-color: var(--color-white-20);
    border-radius: 70px;
    padding: 14px 24px;
    width: 100%;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.style-card:hover {
    transform: translateY(-2px);
}

.style-card--active {
    background-color: var(--color-white);
}

.style-card--active .style-card__title {
    color: var(--color-bg-alt);
}

.style-card__title {
    flex: 1 0 0;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    margin: 0;
}

.style-card__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.style-card--active .style-card__arrow {
    background-color: var(--color-bg-alt);
    border-color: var(--color-bg-alt);
}

.style-card__arrow img {
    width: 24px;
    height: 24px;
    transform: rotate(45deg);
}

.marquee-block {
    background-color: var(--color-bg);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    gap: 40px;
}

.marquee-block__inner {
    width: 100%;
    max-width: var(--max-width);
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.marquee {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 181px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee__row {
    position: absolute;
    width: 110vw;
    left: 50%;
    margin-left: -55vw;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 30px;
    line-height: 0.9;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
    animation: marqueeScroll 25s linear infinite;
}

.marquee__track--reverse {
    animation-name: marqueeScrollReverse;
}

.marquee__group {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-right: 40px;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes marqueeScrollReverse {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.marquee__row--blue {
    top: 50%;
    transform: translateY(-50%) rotate(6.03deg);
}

.marquee__row--white {
    background-color: var(--color-white);
    color: var(--color-bg-alt);
    top: 50%;
    transform: translateY(-50%) rotate(-5.02deg);
}

.why__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
    width: 100%;
}

.why__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
}

.why__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    width: 100%;
}

.why__text p + p {
    margin-top: 1.6em;
}

.more-games__inner {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.more-games__text {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-white);
}

.more-games__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
}

.more-games__copy {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
}

.more-games__copy p + p {
    margin-top: 1.6em;
}

.more-games__image {
    width: 368px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.site-header {
    background-color: var(--color-bg);
    width: 100%;
    padding: 14px 0;
}

.site-header__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .navigation {
    flex: 1 0 0;
}

.catalog__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

.catalog__intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

.catalog__intro p + p {
    margin-top: 1.6em;
}

.catalog__grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.catalog__row {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.catalog__row--wide {
    gap: 46px;
}

.game-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 31.8px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 40px 0 rgba(255, 255, 255, 0.4);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.game-card--lg {
    width: 258px;
    height: 258px;
}

.game-card--sm {
    width: 121px;
    height: 121px;
}

.game-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0 156px;
    margin-bottom: -100px;
}

.game-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.game-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.game-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    gap: 112px;
}

.game-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.game-hero__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
}

.game-detail {
    background-color: var(--color-bg);
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.game-detail__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.game-detail__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
}

.game-detail__row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.game-detail__image {
    width: 368px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.game-detail__copy {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.game-detail__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    width: 100%;
}

.game-detail__text p + p {
    margin-top: 1.6em;
}

.policy {
    background-color: var(--color-bg);
    padding: 80px 0;
}

.policy__inner {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--inner-padding);
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: var(--color-white);
}

.policy__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
}

.policy__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-size: 16px;
    line-height: 1.6;
}

.policy__block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy__heading {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-primary);
}

.policy__body p + p {
    margin-top: 1em;
}

.banner {
    background-color: var(--color-primary);
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

.faq__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    width: 100%;
    text-align: left;
}

.faq__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.faq__item {
    width: 100%;
    border-radius: 100px;
    padding: 20px 40px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.faq__item--open {
    background-color: rgba(0, 0, 0, 0.15);
    border-radius: 40px;
}

.faq__main {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__question {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 30px;
    line-height: 0.9;
    color: var(--color-white);
}

.faq__answer {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
    display: none;
}

.faq__item--open .faq__answer {
    display: block;
}

.faq__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-top: 4px;
}

.faq__toggle img {
    width: 12px;
    height: 24px;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
}

.faq__item--open .faq__toggle img {
    transform: rotate(-90deg);
}

.footer {
    background-color: var(--color-bg);
    padding: 60px;
    overflow: hidden;
    width: 100%;
}

.footer__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.footer__contacts {
    width: 500px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-white);
}

.footer__contacts a {
    transition: color 0.3s ease;
}

.footer__contacts a:hover {
    color: var(--color-primary);
}

.footer__links {
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    list-style: none;
    font-size: 16px;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--color-white);
    text-align: center;
}

.footer__links a {
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: var(--color-primary);
}

.footer__image {
    width: 368px;
    height: 126px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.footer__copy {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-white-60);
}

.footer__socials {
    display: flex;
    gap: 22.875px;
    align-items: center;
}

.footer__socials a {
    display: block;
    width: 61px;
    height: 61px;
    transition: transform 0.3s ease;
}

.footer__socials a:hover {
    transform: translateY(-3px);
}

.footer__socials img {
    width: 100%;
    height: 100%;
}

.footer__brand {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 90px;
    line-height: 0.9;
    text-transform: uppercase;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

@media (max-width: 1024px) {
    :root {
        --inner-padding: 30px;
    }

    .hero__title { font-size: 56px; }
    .about__title,
    .styles__title,
    .why__title,
    .more-games__title,
    .faq__title,
    .catalog__title,
    .policy__title,
    .game-hero__title,
    .game-detail__title { font-size: 44px; }
    .footer__brand { font-size: 64px; }
    .style-card__title { font-size: 24px; }
    .faq__question { font-size: 22px; }
    .marquee__row { font-size: 24px; }
    .nav__menu { gap: 40px; }
    .footer { padding: 40px 30px; }
    .game-card--lg { width: 220px; height: 220px; }
    .game-card--sm { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
    :root {
        --inner-padding: 20px;
    }

    .hero {
        padding: 20px 0 80px;
    }

    .hero__inner {
        gap: 100px;
    }

    .navigation {
        min-height: 54px;
        padding: 12px 30px;
        flex-wrap: wrap;
        row-gap: 14px;
    }

    .logo__icon {
        width: 30px;
        height: 30px;
    }

    .logo__text {
        font-size: 20px;
        letter-spacing: 1.6px;
    }

    .nav__menu,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .navigation--open .nav__menu {
        display: flex;
        order: 3;
        flex-basis: 100%;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding-top: 14px;
        border-top: 1px solid var(--color-white-20);
    }

    .navigation--open .nav__cta {
        display: inline-flex;
        order: 4;
        flex-basis: 100%;
        align-self: center;
        width: auto;
    }

    .nav__burger span {
        transition: transform 0.3s ease, opacity 0.3s ease;
        transform-origin: center;
    }

    .navigation--open .nav__burger span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .navigation--open .nav__burger span:nth-child(2) {
        opacity: 0;
    }

    .navigation--open .nav__burger span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

    .hero__title {
        font-size: 50px;
    }

    .section {
        padding: 40px 0;
    }

    .section__inner {
        gap: 20px;
    }

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

    .about__title {
        white-space: normal;
        font-size: 32px;
        text-align: left;
        width: 100%;
    }

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

    .about__image {
        width: 100%;
        height: 240px;
    }

    .styles__title,
    .why__title,
    .more-games__title,
    .faq__title,
    .catalog__title,
    .policy__title,
    .game-hero__title,
    .game-detail__title {
        font-size: 32px;
    }

    .game-hero {
        padding: 20px 0 80px;
        margin-bottom: 0;
    }

    .game-hero__inner {
        gap: 60px;
    }

    .game-hero__content {
        align-items: flex-start;
    }

    .game-detail {
        padding: 40px 0;
    }

    .game-detail__inner {
        gap: 20px;
    }

    .game-detail__row {
        flex-direction: column;
        gap: 20px;
    }

    .game-detail__image {
        width: 100%;
        max-width: 390px;
        height: 240px;
    }

    .policy {
        padding: 40px 0;
    }

    .policy__inner {
        gap: 24px;
    }

    .policy__heading {
        font-size: 20px;
    }

    .site-header {
        padding: 14px 0;
    }

    .catalog__grid {
        gap: 10px;
        width: 100%;
    }

    .catalog__row,
    .catalog__row--wide {
        gap: 10px;
        width: 100%;
    }

    .game-card {
        flex: 1 1 0;
        min-width: 0;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .game-card--lg,
    .game-card--sm {
        width: auto;
        height: auto;
    }

    .style-card {
        padding: 14px 24px;
    }

    .style-card__title {
        font-size: 20px;
    }

    .style-card__arrow {
        width: 50px;
        height: 50px;
    }

    .marquee {
        height: 71px;
    }

    .marquee__row {
        font-size: 11.755px;
        letter-spacing: 0.94px;
        padding: 4px 0;
    }

    .marquee__group {
        gap: 15.674px;
        margin-right: 15.674px;
    }

    .why__content {
        gap: 20px;
    }

    .why__title {
        max-width: 390px;
    }

    .more-games__inner {
        flex-direction: column;
        gap: 20px;
    }

    .more-games__image {
        width: 100%;
        height: 240px;
        order: -1;
    }

    .banner {
        height: 450px;
    }

    .faq__item {
        padding: 20px 10px;
        border-radius: 24px;
    }

    .faq__question {
        font-size: 20px;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer__top {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .footer__contacts {
        width: 100%;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer__links {
        gap: 10px;
    }

    .footer__image {
        width: 100%;
        max-width: 368px;
        height: 126px;
    }

    .footer__brand {
        font-size: 34px;
    }
}

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

    .nav__menu {
        gap: 24px;
    }

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

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.cookie {
    position: fixed;
    left: 50%;
    bottom: 30px;
    z-index: 1000;
    width: calc(100% - 40px);
    max-width: 640px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(24px);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.cookie--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie__card {
    background-color: var(--color-white);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.cookie__title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 6vw, 56px);
    line-height: 0.9;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-bg-alt);
}

.cookie__text {
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
}

.cookie__link {
    color: var(--color-primary);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.cookie__link:hover {
    opacity: 0.8;
}

.cookie__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cookie__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4d9de8;
    color: var(--color-white);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    padding: 14px 44px;
    border-radius: 30px;
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.cookie__btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(77, 157, 232, 0.4);
}

@media (max-width: 768px) {
    .cookie {
        bottom: 20px;
    }

    .cookie__card {
        padding: 28px 24px;
        gap: 18px;
        border-radius: 24px;
    }

    .cookie__btn {
        padding: 12px 36px;
    }
}

/* ==========================================================================
   Entrance & scroll-reveal animations
   ========================================================================== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: none; }
}

.navigation {
    animation: fadeDown 0.6s ease both;
}

.hero__title,
.hero__text,
.hero__content .btn,
.game-hero__title,
.game-hero__content .btn {
    animation: fadeUp 0.8s ease both;
}

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

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ==========================================================================
   Extra hover effects
   ========================================================================== */
.logo__text {
    transition: color 0.3s ease;
}

.logo:hover .logo__text {
    color: var(--color-primary);
}

.logo__icon img {
    transition: transform 0.4s ease;
}

.logo:hover .logo__icon img {
    transform: rotate(-8deg) scale(1.05);
}

.style-card__arrow {
    transition: transform 0.3s ease;
}

.style-card__arrow img {
    transition: transform 0.3s ease;
}

.style-card:hover .style-card__arrow {
    transform: scale(1.08);
}

.style-card:hover .style-card__arrow img {
    transform: rotate(45deg) scale(1.12);
}

.about__image img,
.more-games__image img,
.game-detail__image img,
.footer__image img {
    transition: transform 0.6s ease;
}

.about__image:hover img,
.more-games__image:hover img,
.game-detail__image:hover img,
.footer__image:hover img {
    transform: scale(1.06);
}

.faq__item:not(.faq__item--open):hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.faq__item:hover .faq__toggle {
    transform: scale(1.1);
}

.policy__heading {
    transition: color 0.3s ease;
}

.banner img {
    transition: transform 0.8s ease;
}

.banner:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

.inline-link{color:#7cf2c7;text-decoration:underline;text-underline-offset:3px;font-weight:500}
.inline-link:hover{opacity:.85}
.editorial-meta{display:block;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6;margin:6px 0 14px;letter-spacing:.02em}
.editorial-note{border-left:2px solid #7cf2c7;padding:6px 0 6px 16px;margin:18px 0;font-size:14px;line-height:1.6;color:rgba(255,255,255,.85)}
.source-line{font-size:14px;line-height:1.7;color:rgba(255,255,255,.85);margin:14px 0 0}
.dev-notice{display:block;margin:14px 0 0;font-size:12px;line-height:1.5;color:rgba(255,255,255,.65);text-align:center}
.byline{margin-bottom:8px;color:rgba(255,255,255,.78);font-size:13px;line-height:1.6}
