@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,800;1,400&display=swap');

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

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

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    width: 100%;
    border-bottom: 0.625px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.header__name {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 26px;
    text-transform: uppercase;
    color: #000;
    line-height: 1;
}

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

.header__nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: -0.14px;
    line-height: 16.25px;
    color: #000;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 14px 18px;
    border-radius: 18.75px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.header__burger {
    display: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 0;
    align-items: center;
    justify-content: center;
}

.section {
    width: 100%;
}

.hero {
    background: #fff;
    padding: 0 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.hero__media {
    width: 100%;
    height: 593.75px;
    overflow: hidden;
}

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

.hero__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 0.9;
    letter-spacing: -1.5px;
    text-align: center;
    text-transform: capitalize;
    color: #000;
    margin: 0;
    padding: 0 40px;
}

.hero__title .accent {
    font-weight: 700;
    color: #edbe68;
}

.hero__text {
    width: 100%;
    max-width: 1080px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 0 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 60px;
    border-radius: 100px;
    background-image: linear-gradient(-24.6983deg, #edbe68 24.667%, #e08300 60.451%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
}

.about {
    background: #000;
    padding: 80px 70px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
}

.about__text {
    width: 520px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 16.667px;
}

.eyebrow__dot {
    width: 16.667px;
    height: 16.667px;
}

.eyebrow__label {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #e08300;
    margin: 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 0.9;
    letter-spacing: -1.5px;
    text-transform: capitalize;
    margin: 0;
}

.section-title--light {
    color: #fff;
}

.section-title--dark {
    color: #000;
}

.section-title .accent {
    font-weight: 700;
    color: #edbe68;
}

.about__body {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
}

.about__body p {
    margin: 0 0 24px;
}

.about__body p:last-child {
    margin: 0;
}

.about__media {
    flex: 1 0 0;
    align-self: stretch;
    min-height: 400px;
    overflow: hidden;
}

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

.ticker {
    background: #e08300;
    width: 100%;
    height: 104px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker__track {
    display: flex;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: ticker 22s linear infinite;
}

.ticker__group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-right: 80px;
    flex-shrink: 0;
}

.ticker__item {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -2.4px;
    color: #fff;
    margin: 0;
    flex-shrink: 0;
}

.ticker__sep {
    width: 33px;
    height: 31px;
    flex-shrink: 0;
}

.ticker:hover .ticker__track {
    animation-play-state: paused;
}

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

.quote {
    background: #000;
    padding: 59px 97px;
    position: relative;
    overflow: hidden;
}

.quote__inner {
    max-width: 1002.788px;
    margin: 0 auto;
    transform: rotate(-0.48deg);
}

.quote__text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 50px;
    line-height: 0.9;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0;
}

.quote__text .accent {
    color: #edbe68;
}

.quote__dot {
    position: absolute;
    width: 42.5px;
    height: 42.5px;
    border-radius: 100px;
}

.quote__dot--white {
    background: #fff;
    right: 80px;
    top: 27px;
}

.quote__dot--gold {
    background: #edbe68;
    left: 97px;
    bottom: 27px;
}

.why {
    background: #fff;
    padding: 60px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.why__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.why__list {
    width: 825px;
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.why-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 37px 18px;
    width: 100%;
}

.why-row__divider {
    height: 1.25px;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.why-row__text {
    width: 543.75px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.why-card__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 30px;
    text-transform: uppercase;
    color: #000;
    width: 262.5px;
    margin: 0;
}

.why-card__title--narrow {
    width: 211.25px;
}

.why-card__title .italic {
    font-style: italic;
    font-weight: 400;
}

.why-card__body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #000;
    width: 281.25px;
    margin: 0;
}

.why-card__inner-divider {
    height: 1.25px;
    width: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.why-row__media {
    width: 262.5px;
    height: 262.5px;
    border-radius: 140.625px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.why__gallery {
    width: 100%;
    height: 593.75px;
    overflow: hidden;
}

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

.faq {
    background: #000;
    padding: 80px 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.faq__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.faq__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.faq__item {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq__row {
    display: flex;
    align-items: center;
    gap: 21px;
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.faq__icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq__row:hover .faq__icon {
    transform: scale(1.2) rotate(90deg);
}

.faq__question {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 0.2px;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
}

.faq__row:hover .faq__question {
    color: #edbe68;
}

.faq__answer {
    border-left: 2px solid #e08300;
    padding: 0 0 0 10px;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.35s ease, padding 0.35s ease, margin 0.35s ease;
}

.faq__item--open .faq__answer {
    max-height: 400px;
    opacity: 1;
    padding: 6px 0 6px 10px;
    margin-top: 24px;
}

.faq__answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #fff;
    margin: 0;
}

.footer {
    background: #000;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.footer__top {
    width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer__brand-group {
    display: flex;
    align-items: flex-end;
    gap: 60px;
}

.footer__brand {
    width: 543.75px;
    display: flex;
    flex-direction: column;
    gap: 27.5px;
}

.footer__brand-row {
    display: flex;
    align-items: center;
    gap: 17.5px;
}

.footer__arrow {
    width: 171.284px;
    height: 16.25px;
    object-fit: contain;
}

.footer__brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 17.5px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

.footer__headline {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 90px;
    line-height: 100px;
    text-transform: capitalize;
    color: #fff;
    margin: 0;
}

.footer__btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13.75px 17.5px;
    border: 1.25px solid #fff;
    border-radius: 18.75px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
    background: transparent;
    text-decoration: none;
}

.footer__dots {
    display: inline-grid;
    grid-template-columns: max-content;
    grid-template-rows: max-content;
    place-items: start;
    line-height: 0;
    flex-shrink: 0;
}

.footer__dot {
    width: 42.5px;
    height: 42.5px;
    border-radius: 100px;
    grid-column: 1;
    grid-row: 1;
}

.footer__dot--white {
    background: #fff;
    margin: 25px 0 0 0;
}

.footer__dot--gold {
    background: #edbe68;
    margin: 0 0 0 25px;
}

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

.footer__social {
    width: 60.798px;
    height: 60.798px;
    display: inline-block;
}

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

.footer__contacts {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #edbe68;
    color: #000;
    padding: 13.75px 17.5px;
    border-radius: 18.75px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-transform: capitalize;
}

.footer__divider {
    width: 1120px;
    height: 1.25px;
    background: rgba(255, 255, 255, 0.2);
}

.footer__bottom {
    width: 1120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}

.footer__legal {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.footer__legal a {
    color: #fff;
    line-height: 1.2;
}

@media (max-width: 1199px) {
    .footer__top,
    .footer__divider,
    .footer__bottom {
        width: 100%;
        padding: 0 40px;
    }

    .footer__divider {
        padding: 0;
        margin: 0 40px;
        width: calc(100% - 80px);
    }

    .footer__brand-group {
        gap: 30px;
    }

    .footer__brand {
        width: auto;
        flex: 1;
    }

    .footer__headline {
        font-size: 64px;
        line-height: 1;
    }
}

@media (max-width: 1023px) {
    .header__inner {
        padding: 14px 24px;
    }

    .header__nav {
        gap: 20px;
    }

    .hero__title {
        font-size: 40px;
    }

    .about {
        padding: 60px 40px;
        flex-direction: column;
    }

    .about__text {
        width: 100%;
    }

    .about__media {
        width: 100%;
        height: 360px;
    }

    .why__list {
        width: 100%;
        padding: 0 40px;
        max-width: 825px;
    }

    .why-row {
        justify-content: center;
    }

    .why-row__text {
        width: 100%;
        max-width: 543.75px;
    }

    .faq {
        padding: 60px 40px;
    }

    .footer__top {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer__brand-group {
        width: 100%;
    }

    .quote__text {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .header__inner {
        padding: 14px 20px;
    }

    .header__name {
        font-size: 20px;
    }

    .header__nav,
    .header__cta {
        display: none;
    }

    .header__burger {
        display: inline-flex;
    }

    .header__burger img {
        width: 24px;
        height: 8px;
    }

    .hero {
        padding-bottom: 40px;
        gap: 20px;
    }

    .hero__media {
        height: 300px;
    }

    .hero__title {
        font-size: 32px;
        letter-spacing: -0.96px;
        padding: 0 20px;
        max-width: 430px;
    }

    .hero__text {
        padding: 0 20px;
        max-width: 430px;
    }

    .about {
        padding: 40px 20px;
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .about__media {
        order: -1;
        width: 100%;
        max-width: 390px;
        height: 300px;
        align-self: center;
        min-height: auto;
        flex: none;
    }

    .about__text {
        width: 100%;
        max-width: 390px;
    }

    .about__text .section-title {
        font-size: 32px;
        letter-spacing: -0.96px;
    }

    .ticker {
        height: 71px;
    }

    .ticker__group {
        gap: 40px;
        padding-right: 40px;
    }

    .ticker__item {
        font-size: 30px;
        letter-spacing: -1.2px;
        line-height: 1;
    }

    .quote {
        padding: 40px 20px;
    }

    .quote__text {
        font-size: 30px;
    }

    .quote__dot--white {
        right: 20px;
        top: 17px;
        width: 23px;
        height: 23px;
    }

    .quote__dot--gold {
        left: 20px;
        bottom: 20px;
        width: 29px;
        height: 29px;
    }

    .why {
        padding-top: 40px;
        gap: 20px;
    }

    .why__header {
        max-width: 430px;
        padding: 0 20px;
    }

    .why__header .section-title {
        font-size: 32px;
        letter-spacing: -0.96px;
    }

    .why__list {
        width: 100%;
        max-width: 430px;
        padding: 0 20px;
        gap: 38px;
    }

    .why-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .why-row__text {
        width: 100%;
        order: 3;
    }

    .why-row__media {
        order: 2;
        align-self: flex-start;
    }

    .why-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .why-card__title,
    .why-card__title--narrow,
    .why-card__body {
        width: 100%;
    }

    .why__gallery {
        height: 300px;
    }

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

    .faq__header .section-title {
        font-size: 32px;
        letter-spacing: -0.96px;
    }

    .faq__list {
        gap: 10px;
    }

    .faq__question {
        font-size: 18px;
        line-height: 24px;
    }

    .footer {
        padding: 40px 20px;
        gap: 30px;
    }

    .footer__top {
        width: 100%;
        padding: 0;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .footer__brand-group {
        width: 100%;
        gap: 30px;
        align-items: flex-end;
        flex-direction: row;
    }

    .footer__brand {
        width: auto;
        flex: 1;
        gap: 20px;
    }

    .footer__headline {
        font-size: 40px;
        line-height: 1;
    }

    .footer__arrow {
        width: 120px;
        height: 12px;
    }

    .footer__contacts {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer__divider {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .footer__bottom {
        width: 100%;
        padding: 0;
        flex-direction: column-reverse;
        gap: 20px;
        text-align: center;
    }

    .footer__legal {
        text-align: center;
    }
}

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

    .footer__brand-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer__brand {
        width: 100%;
    }
}

.catalog {
    background: #fff;
    padding: 60px 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    overflow: hidden;
}

.catalog__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #000;
    margin: 0;
    text-transform: capitalize;
    width: 100%;
}

.catalog__title .bold {
    font-weight: 800;
}

.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 356px);
    column-gap: 24px;
    width: 100%;
    max-width: 1116px;
}

.catalog__grid--row1 {
    grid-template-areas:
        "title yarn beecoins"
        "sling yarn beecoins";
    row-gap: 24px;
}

.catalog__grid--row1 .catalog__title {
    grid-area: title;
    align-self: end;
}

.catalog__grid--row2 {
    grid-template-areas: "chicky idle super";
}

.game-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: inherit;
    width: 100%;
}

.game-card--sling-kong {
    grid-area: sling;
}

.game-card--yarn-untangle {
    grid-area: yarn;
    align-self: end;
}

.game-card--beecoins-inc {
    grid-area: beecoins;
    align-self: end;
}

.game-card--chicky-farm {
    grid-area: chicky;
}

.game-card--idle-pet-business {
    grid-area: idle;
}

.game-card--super-fowlst-2 {
    grid-area: super;
}

.game-card__media {
    position: relative;
    width: 100%;
    height: 444px;
    border: 1px solid #e08300;
    overflow: hidden;
}

.game-card--square .game-card__media {
    height: 356px;
}

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

.game-card__corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 57px;
    height: 51px;
    background-color: #e08300;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    display: block;
}

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

.game-card__arrow {
    width: 11px;
    height: 11px;
}

.game-card__name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: #000;
    margin: 0;
    line-height: 1;
}

@media (max-width: 1199px) {
    .catalog {
        padding: 60px 24px;
    }

    .catalog__grid {
        grid-template-columns: repeat(3, 1fr);
        column-gap: 18px;
    }
}

@media (max-width: 1023px) {
    .catalog__title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .catalog {
        padding: 40px 20px;
        gap: 20px;
    }

    .catalog__title {
        font-size: 32px;
        max-width: 390px;
        order: 0;
    }

    .catalog__grid,
    .catalog__grid--row1,
    .catalog__grid--row2 {
        display: contents;
    }

    .catalog {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .game-card {
        width: 100%;
        max-width: 390px;
        gap: 20px;
        align-self: auto;
    }

    .game-card__media,
    .game-card--square .game-card__media {
        height: 390px;
    }

    .game-card--wide .game-card__media {
        height: 300px;
    }

    .game-card--chicky-farm { order: 1; }
    .game-card--idle-pet-business { order: 2; }
    .game-card--super-fowlst-2 { order: 3; }
    .game-card--sling-kong { order: 4; }
    .game-card--yarn-untangle { order: 5; }
    .game-card--beecoins-inc { order: 6; }
}

.game-page {
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
}

.game-page__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: #000;
    margin: 0;
    width: 100%;
    max-width: 1080px;
}

.game-page__title .bold {
    font-weight: 700;
}

.game-page__layout {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1080px;
}

.game-page__media {
    position: relative;
    width: 356px;
    height: 356px;
    border: 1px solid #e08300;
    overflow: hidden;
    flex-shrink: 0;
}

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

.game-page__corner {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 57px;
    height: 51px;
    background-color: #e08300;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    display: block;
}

.game-page__info {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.game-page__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #000;
    width: 100%;
}

.game-page__text p {
    margin: 0 0 24px;
}

.game-page__text p:last-child {
    margin: 0;
}

.game-page__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 60px;
    border-radius: 100px;
    background-image: linear-gradient(-32.2787deg, #edbe68 24.667%, #e08300 60.451%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
}

@media (max-width: 1023px) {
    .game-page {
        padding: 60px 40px;
    }

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

    .game-page__layout {
        gap: 30px;
    }

    .game-page__media {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 767px) {
    .game-page {
        padding: 40px 20px;
        gap: 20px;
    }

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

    .game-page__layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        max-width: 390px;
    }

    .game-page__media {
        width: 100%;
        max-width: 356px;
        height: auto;
        aspect-ratio: 1 / 1;
        align-self: center;
    }

    .game-page__info {
        width: 100%;
        min-width: 0;
        flex: 0 0 auto;
    }

    .game-page__text {
        width: 100%;
        min-width: 0;
        overflow-wrap: break-word;
    }
}

.policy {
    background: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    overflow: hidden;
    color: #000;
}

.policy__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 0.9;
    letter-spacing: -1.5px;
    text-align: center;
    text-transform: capitalize;
    color: #000;
    margin: 0;
    width: 100%;
    max-width: 1080px;
}

.policy__title .accent {
    font-weight: 700;
    color: #edbe68;
}

.policy__body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.2px;
    color: #000;
    width: 100%;
    max-width: 1080px;
}

.policy__body p {
    margin: 0 0 10px;
}

.policy__body ul {
    list-style: disc;
    margin: 0 0 10px;
    padding: 0 0 0 21px;
}

.policy__body ul li {
    line-height: 24px;
    margin: 0;
}

.policy__body a {
    color: inherit;
    text-decoration: underline;
}

@media (max-width: 1023px) {
    .policy {
        padding: 60px 40px;
    }
}

@media (max-width: 767px) {
    .policy {
        padding: 40px 20px;
        gap: 20px;
    }

    .policy__title {
        font-size: 32px;
        letter-spacing: -0.96px;
        max-width: 390px;
    }

    .policy__body {
        max-width: 390px;
    }
}

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 540px;
    background: #0c0c0c;
    border: 1px solid rgba(224, 131, 0, 0.35);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.cookie[hidden] {
    display: none;
}

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

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

.cookie__title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 1;
    color: #fff;
    margin: 0;
}

.cookie__accent {
    font-weight: 700;
    color: #edbe68;
}

.cookie__text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cookie__actions {
    display: flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.cookie__btn {
    flex: 1 1 0;
    min-width: 120px;
    border: 0;
    border-radius: 8px;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1a1a;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.cookie__btn--accept {
    background: #e7c98a;
}

.cookie__btn--decline {
    background: #d9831f;
}

.cookie__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    filter: brightness(1.06);
}

.cookie__btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .cookie {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        padding: 24px;
    }

    .cookie__title {
        font-size: 30px;
    }
}

/* ============================================================
   Hover effects & micro-interactions
   ============================================================ */
.btn-primary,
.header__cta,
.footer__btn-outline,
.footer__pill,
.game-page__cta {
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn-primary:hover,
.game-page__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(224, 131, 0, 0.4);
    filter: brightness(1.05);
}

.header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.footer__btn-outline:hover {
    background: #fff;
    color: #000;
}

.footer__pill:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.header__brand,
.header__logo {
    transition: transform 0.3s ease;
}

.header__brand:hover .header__logo {
    transform: rotate(-8deg) scale(1.08);
}

.header__nav a {
    position: relative;
    transition: color 0.25s ease;
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #e08300;
    transition: width 0.3s ease;
}

.header__nav a:hover {
    color: #e08300;
}

.header__nav a:hover::after {
    width: 100%;
}

.footer__legal a {
    transition: color 0.25s ease;
}

.footer__legal a:hover {
    color: #edbe68;
}

.footer__social {
    transition: transform 0.3s ease;
}

.footer__social:hover {
    transform: translateY(-4px) scale(1.08);
}

/* Image zoom on hover for media frames */
.hero__media img,
.about__media img,
.why-row__media img,
.why__gallery img {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.hero__media:hover img,
.about__media:hover img,
.why-row__media:hover img,
.why__gallery:hover img {
    transform: scale(1.05);
}

/* Game cards */
.game-card__media img {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.game-card:hover .game-card__media img {
    transform: scale(1.07);
}

.game-card__media {
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover .game-card__media {
    box-shadow: 0 16px 36px rgba(224, 131, 0, 0.28);
}

.game-card__name,
.game-card__arrow {
    transition: color 0.25s ease, transform 0.25s ease;
}

.game-card:hover .game-card__name {
    color: #e08300;
}

.game-card:hover .game-card__arrow {
    transform: translate(3px, -3px);
}

/* Game detail image */
.game-page__media img {
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.game-page__media:hover img {
    transform: scale(1.05);
}

/* ============================================================
   Entrance animations
   ============================================================ */
.hero__media {
    animation: fade-up 0.8s ease both;
}

.hero__title {
    animation: fade-up 0.8s 0.12s ease both;
}

.hero__text {
    animation: fade-up 0.8s 0.24s ease both;
}

.hero .btn-primary {
    animation: fade-up 0.8s 0.36s ease both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

/* Scroll reveal (activated by JS) */
.js-reveal .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
    .ticker__track,
    .hero__media,
    .hero__title,
    .hero__text,
    .hero .btn-primary {
        animation: none !important;
    }

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