* {
	transition: none;
}
/*-- product page --*/

/* Container Styles */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 15px;
    width: 100%;
    box-sizing: border-box;
}

/* Section Styles */
.product-intro {
    background: #ffffff;
    padding: 2rem 0;
}

.product-text-wrapper {
    margin-top: 2rem;
    width: 100%;
}

/* 图片容器 - 使用 flexbox */
.product-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    width: 100%;
}

.product-images-container img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    flex: 0 1 auto;
}

/* 桌面端图片大小 */
@media (min-width: 992px) {
    .product-images-container {
        gap: 15px;
    }

    .product-images-container img {
        max-height: 300px;
        max-width: 30%;
    }
}

/* 平板端图片大小 */
@media (min-width: 768px) and (max-width: 991px) {
    .product-images-container {
        gap: 12px;
    }

    .product-images-container img {
        max-height: 250px;
        max-width: 30%;
    }
}

/* 手机端图片大小 - 一行显示并等比缩小 */
@media (max-width: 767px) {
    .product-images-container {
        gap: 5px;
    }

    .product-images-container img {
        max-height: 150px;
        max-width: 32%;
    }
}

.product-section {
    background: #ffffff;
    padding: 3rem 0;
}

.product-section.alt-bg {
    background: #f5f5f5;
}

/* Section Header */
.section-header {
    width: 100%;
    margin-bottom: 1rem;
}

/* Content Row Layout */
.product-content-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 2rem;
    align-items: flex-start;
}

.product-content-reverse {
    flex-direction: row-reverse;
}

.product-content-col {
    flex: 1 1 0;
    min-width: 0;
}

.product-content-text {
    flex: 1 1 45%;
}

.product-content-image {
    flex: 1 1 45%;
}

.product-content-full {
    width: 100%;
}

/* Vertical Content Layout */
.product-content-vertical {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
}

/* Monetization Images Container */
.monetization-images-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 1rem;
}

.monetization-image-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.monetization-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Intro Text */
.intro-text {
    font-size: 18px;
    color: #4c4c4c;
    line-height: 1.9;
    /*text-align: center;*/
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
}

/* Section Title */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    font-family: 'Lato', sans-serif;
}

/* Section Text */
.section-text {
    color: #4c4c4c;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

/* Benefits Title */
.benefits-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin: 1.5rem 0 1rem 0;
}

/* Product List */
.product-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
}

.product-list li {
    color: #4c4c4c;
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Montserrat', sans-serif;
}

.product-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #F87B9D;
    font-weight: bold;
    font-size: 18px;
}

/* Image Placeholder */
.product-image-placeholder {
    background: #f5f5f5;
    border: 2px dashed #ddd;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.image-placeholder-text {
    color: #999;
    font-size: 14px;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* GameBox SDK Image */
.gamebox-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gamebox-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* PC端样式 */
@media (min-width: 992px) {
    .gamebox-image {
        max-width: 100%;
        max-height: 500px;
    }

    .monetization-images-container {
        flex-direction: row;
        gap: 2rem;
    }

    .monetization-image-wrapper {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .monetization-image {
        max-height: 400px;
    }
}

/* 平板端样式 */
@media (min-width: 768px) and (max-width: 991px) {
    .gamebox-image {
        max-width: 100%;
        max-height: 400px;
    }

    .monetization-images-container {
        flex-direction: row;
        gap: 1.5rem;
    }

    .monetization-image-wrapper {
        flex: 1 1 45%;
        max-width: 45%;
    }

    .monetization-image {
        max-height: 350px;
    }
}

/* 手机端样式 */
@media (max-width: 767px) {
    .gamebox-image-wrapper {
        margin-top: 1rem;
    }

    .gamebox-image {
        max-width: 100%;
        max-height: 300px;
    }

    .monetization-images-container {
        flex-direction: row;
        gap: 0.5rem;
    }

    .monetization-image-wrapper {
        flex: 1 1 48%;
        max-width: 48%;
    }

    .monetization-image {
        max-height: 200px;
    }

    .product-content-vertical {
        gap: 1.5rem;
    }
}

/* Contact Box */
.contact-box {
    background: #fbfbfb;
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid #F87B9D;
    margin-top: 2rem;
}

.contact-text {
    font-size: 16px;
    color: #4c4c4c;
    margin: 0;
}

.contact-text strong {
    color: #000;
}

.contact-text a {
    color: #F87B9D;
    text-decoration: none;
}

.contact-text a:hover {
    color: #ff759a;
    text-decoration: underline;
}

.contact-text .check-link {
    text-decoration: underline;
}

.contact-text .check-link:hover {
    color: #ff759a;
    text-decoration: underline;
}


/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .product-container {
        padding: 2rem 15px;
    }

    .product-section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .product-image-placeholder {
        min-height: 250px;
    }

    .product-content-row {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .product-container {
        padding: 1.5rem 15px;
    }

    .product-section {
        padding: 1.5rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .intro-text {
        font-size: 16px;
    }

    .product-image-placeholder {
        min-height: 200px;
        margin-top: 1rem;
    }

    /* 手机端：内容垂直堆叠 */
    .product-content-row {
        flex-direction: column;
        gap: 1rem;
    }

    .product-content-reverse {
        flex-direction: column;
    }

    .product-content-col {
        flex: 1 1 100%;
        width: 100%;
    }

    /* 手机端：图片显示在文案上面 */
    .product-content-text {
        order: 2;
    }

    .product-content-image {
        order: 1;
        margin-top: 0;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .product-container {
        padding: 1rem;
    }

    .product-section {
        padding: 1rem 0;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-text {
        font-size: 15px;
    }

    .product-list li {
        font-size: 15px;
    }

    .contact-box {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }

    .product-text-wrapper {
        margin-top: 1rem;
    }
}

/*-- /product page--*/

