.product {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(36px, 6vw, 88px);
    margin: 0 auto;
}

.product .game {
    width: min(58%, 640px);
    height: auto;
    display: flex;
    align-items: center;
}

.product .game .img {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: clamp(16px, 3vw, 32px);
    border-radius: 28px;
    background: rgba(12, 20, 36, 0.78);
    border: 1px solid rgba(116, 167, 255, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
}

.product .game .img .banner {
    width: 100%;
    aspect-ratio: 1024 / 500;
    object-fit: contain;
    display: block;
    border-radius: 18px;
}

.product .game .img .Decoration {
    width: 100%;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product .game .img .Decoration img:nth-child(1) {
    width: calc(100% - 42px);
    height: 59px;
}

.product .game .img .Decoration img:nth-child(2) {
    width: 37px;
    height: 59px;
}

.product .game .img .icon {
    width: 80%;
    background: url(../img/product/iconbg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 5px;
    padding: 5px 5px 5px 0;
    box-sizing: border-box;
    margin-top: 10px;
}

.product .game .img .icon .act {
    border: 2px solid #5c7ed5;
    border-radius: 15px;
    padding: 2px;
}

.product .text {
    width: min(42%, 460px);
    height: auto;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.product .text h2 {
    width: 100%;
    display: block;
    font-family: 'PHT';
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.08;
    text-align: left;
    color: #f4f8ff;
    letter-spacing: 0;
}

.product .text>p {
    width: 100%;
    height: auto;
    padding-top: 24px;
    display: block;
    font-family: 'FYT';
    font-size: 17px;
    line-height: 1.75;
    color: #b6c3d8;
    position: relative;
    white-space: pre-wrap;
    text-indent: 0;
}

.product .text>p span {
    width: 2em;
    display: inline-block;
}

.product .download-buttons {
    width: 100%;
    min-height: 69px;
    margin-top: clamp(18px, 2.4vw, 28px);
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.product .download-buttons a {
    width: 237px;
    height: 69px;
    background: url(../img/product/load.png);
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.product .download-buttons a:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.product .download-buttons a img {
    padding-left: 20px;
}

.product .download-buttons a p {
    font-size: 12px;
    color: #f2f6f7;
    font-family: 'FYT';
    padding-right: 20px;
    padding-top: 9px;

}

@media screen and (orientation: portrait) {
    .view {
        width: min(92vw, 620px);
        height: auto;
        min-height: calc(100vh - 52px);
        margin-top: 52px;
        padding: 28px 0;
    }

    .product {
        width: 100%;
        min-height: calc(100vh - 108px);
        flex-direction: column;
        gap: 24px;
        justify-content: center;
    }

    .product .game,
    .product .text {
        width: 100%;
        height: auto;
    }

    .product .game .img {
        padding: 12px;
        border-radius: 18px;
    }

    .product .game .img .banner {
        border-radius: 12px;
    }

    .product .game .img .icon img {
        width: 30px;
        border-radius: 5px;
    }

    .product .game .img .icon .act {
        border-radius: 5px;
    }

    .product .text h2 {
        font-size: 28px;
        padding-top: 0;
        text-align: center;
    }

    .product .text>p {
        padding-top: 14px;
        font-size: 14px;
        line-height: 1.65;
        height: auto;
        text-align: center;
    }

    .product .download-buttons {
        margin-top: 16px;
        min-height: 52px;
    }

    .product .download-buttons a {
        width: min(237px, 80vw);
        height: auto;
        aspect-ratio: 237 / 69;
    }
}
