.game-hero {
    background: #000;
    padding: 80px 30px;
}

.game-hero__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

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

.game-hero__title {
    font-weight: 700;
    font-size: 70px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    width: 100%;
}

.game-hero__text {
    font-size: 20px;
    line-height: 1.32;
    color: #fff;
    margin: 0;
    width: 100%;
}

.game-hero__image {
    width: 400px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 23px;
    overflow: hidden;
}

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

.features {
    background: #000;
    padding: 80px 30px;
}

.features__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: stretch;
    justify-content: center;
}

.feature-card {
    flex: 1;
    background: var(--purple-light);
    border-radius: 23px;
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
    text-align: justify;
}

.feature-card__title {
    font-weight: 500;
    font-size: 20px;
    color: #000;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
    width: 100%;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.feature-card__text {
    font-weight: 300;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
    margin: 0;
    width: 100%;
}

.game-detail {
    background: #000;
    padding: 80px 30px;
}

.game-detail__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.game-detail__title {
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    margin: 0;
    width: 100%;
}

.game-detail__image {
    width: 400px;
    height: 200px;
    border-radius: 23px;
    overflow: hidden;
}

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

.game-detail__text {
    font-size: 20px;
    line-height: 1.32;
    color: #fff;
    text-align: center;
    margin: 0;
    width: 100%;
}

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

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

    .game-hero__content {
        gap: 20px;
        align-items: center;
        text-align: left;
    }

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

    .game-hero__text {
        font-size: 16px;
    }

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

    .features {
        padding: 40px 20px;
    }

    .features__inner {
        flex-direction: column;
        gap: 14px;
    }

    .feature-card {
        width: 100%;
    }

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

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

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

    .game-detail__text {
        font-size: 16px;
    }
}

/* ============ Game animations & hover effects ============ */
.game-hero__image img,
.game-detail__image img {
    transition: transform 0.6s ease;
}

.game-hero__image:hover img,
.game-detail__image:hover img {
    transform: scale(1.06);
}

.feature-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #fff;
    box-shadow: 0 16px 32px rgba(112, 62, 227, 0.4);
}

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

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