/* style/resources-xin88-platform-review.css */

:root {
    --page-primary-color: #007BFF;
    --page-accent-color: #FFD700;
    --page-text-color-dark: #333333;
    --page-text-color-light: #ffffff;
    --page-background-light: #f8f9fa;
    --page-background-dark: #0056b3;
    --page-border-color: #e0e0e0;
}

.page-resources-xin88-platform-review {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-dark);
    background-color: var(--page-background-light);
}

.page-resources-xin88-platform-review__section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-resources-xin88-platform-review__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-xin88-platform-review__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--page-accent-color);
    border-radius: 2px;
}

.page-resources-xin88-platform-review__sub-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-xin88-platform-review__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: var(--page-text-color-dark);
    text-align: left;
    padding: 0 20px;
}

.page-resources-xin88-platform-review__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 1.05em;
}

.page-resources-xin88-platform-review__btn--primary {
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
}

.page-resources-xin88-platform-review__btn--primary:hover {
    background-color: var(--page-background-dark);
    transform: translateY(-2px);
}

.page-resources-xin88-platform-review__btn--accent {
    background-color: var(--page-accent-color);
    color: var(--page-text-color-dark);
}

.page-resources-xin88-platform-review__btn--accent:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-resources-xin88-platform-review__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-resources-xin88-platform-review__hero {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, var(--page-background-dark) 100%);
    color: var(--page-text-color-light);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    min-height: 500px;
    text-align: left;
}

.page-resources-xin88-platform-review__hero-content {
    max-width: 600px;
}

.page-resources-xin88-platform-review__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--page-text-color-light);
}

.page-resources-xin88-platform-review__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources-xin88-platform-review__hero-image-wrapper {
    flex-shrink: 0;
}

.page-resources-xin88-platform-review__hero-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Overview Section */
.page-resources-xin88-platform-review__overview {
    background-color: var(--page-background-light);
}

.page-resources-xin88-platform-review__image-with-text {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
    padding: 0 20px;
}

.page-resources-xin88-platform-review__image-with-text--reverse {
    flex-direction: row-reverse;
}

.page-resources-xin88-platform-review__image--small {
    max-width: 400px;
    flex-shrink: 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-xin88-platform-review__text-content {
    flex-grow: 1;
}

/* Games Section */
.page-resources-xin88-platform-review__games {
    background-color: #f0f2f5;
}

.page-resources-xin88-platform-review__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
}

.page-resources-xin88-platform-review__game-item {
    background-color: var(--page-text-color-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.page-resources-xin88-platform-review__game-item:hover {
    transform: translateY(-5px);
}

.page-resources-xin88-platform-review__game-image {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.page-resources-xin88-platform-review__game-title {
    font-size: 1.5em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-resources-xin88-platform-review__game-description {
    font-size: 0.95em;
    color: var(--page-text-color-dark);
    text-align: left;
}

.page-resources-xin88-platform-review__cta-inline {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-xin88-platform-review__cta-inline .page-resources-xin88-platform-review__text {
    color: var(--page-text-color-light);
    margin-bottom: 15px;
    text-align: center;
}

/* Payments Section */
.page-resources-xin88-platform-review__payments {
    background-color: var(--page-text-color-light);
}

.page-resources-xin88-platform-review__payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.page-resources-xin88-platform-review__payment-item {
    flex: 1;
    min-width: 300px;
    max-width: 45%;
    background-color: #f0f2f5;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-resources-xin88-platform-review__payment-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

/* Promotions Section */
.page-resources-xin88-platform-review__promotions {
    background-color: #f0f2f5;
}

.page-resources-xin88-platform-review__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-xin88-platform-review__promo-list li {
    background-color: var(--page-text-color-light);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--page-accent-color);
}

.page-resources-xin88-platform-review__promo-list li .page-resources-xin88-platform-review__sub-title {
    margin-top: 0;
    font-size: 1.6em;
}

.page-resources-xin88-platform-review__promo-list li .page-resources-xin88-platform-review__text {
    padding: 0;
}

/* Customer Service Section */
.page-resources-xin88-platform-review__customer-service {
    background-color: var(--page-text-color-light);
}

.page-resources-xin88-platform-review__image--full-width {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Registration & App Section */
.page-resources-xin88-platform-review__registration-app {
    background-color: #f0f2f5;
}

.page-resources-xin88-platform-review__flex-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 0 20px;
}

.page-resources-xin88-platform-review__card {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    background-color: var(--page-text-color-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-resources-xin88-platform-review__list {
    list-style: decimal;
    padding-left: 25px;
    margin-top: 20px;
    margin-bottom: 20px;
    color: var(--page-text-color-dark);
}

.page-resources-xin88-platform-review__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-resources-xin88-platform-review__app-qr {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 20px auto;
    border: 5px solid var(--page-accent-color);
    border-radius: 5px;
}

/* Responsible Gambling Section */
.page-resources-xin88-platform-review__responsible-gambling {
    background-color: var(--page-text-color-light);
    border-top: 1px solid var(--page-border-color);
}

/* Conclusion Section */
.page-resources-xin88-platform-review__conclusion {
    background-color: var(--page-background-dark);
    color: var(--page-text-color-light);
    padding: 80px 20px;
}

.page-resources-xin88-platform-review__conclusion .page-resources-xin88-platform-review__section-title {
    color: var(--page-text-color-light);
}

.page-resources-xin88-platform-review__conclusion .page-resources-xin88-platform-review__section-title::after {
    background-color: var(--page-accent-color);
}

.page-resources-xin88-platform-review__conclusion .page-resources-xin88-platform-review__text {
    color: #e0e0e0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-xin88-platform-review__hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .page-resources-xin88-platform-review__hero-content,
    .page-resources-xin88-platform-review__image-with-text .page-resources-xin88-platform-review__text-content {
        max-width: 100%;
    }

    .page-resources-xin88-platform-review__hero-title {
        font-size: 2.8em;
    }

    .page-resources-xin88-platform-review__hero-image {
        max-width: 80%;
        margin-top: 30px;
    }

    .page-resources-xin88-platform-review__image-with-text,
    .page-resources-xin88-platform-review__image-with-text--reverse {
        flex-direction: column;
    }

    .page-resources-xin88-platform-review__image--small {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .page-resources-xin88-platform-review__payment-item {
        max-width: 80%;
    }

    .page-resources-xin88-platform-review__section-title {
        font-size: 2em;
    }

    .page-resources-xin88-platform-review__sub-title {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-xin88-platform-review__section {
        padding: 40px 0;
    }

    .page-resources-xin88-platform-review__hero {
        padding: 60px 15px;
    }

    .page-resources-xin88-platform-review__hero-title {
        font-size: 2.2em;
    }

    .page-resources-xin88-platform-review__hero-description {
        font-size: 1em;
    }

    .page-resources-xin88-platform-review__game-grid,
    .page-resources-xin88-platform-review__flex-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .page-resources-xin88-platform-review__payment-item,
    .page-resources-xin88-platform-review__card {
        min-width: unset;
        max-width: 100%;
    }

    .page-resources-xin88-platform-review__cta-inline {
        padding: 20px;
    }

    .page-resources-xin88-platform-review__text {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .page-resources-xin88-platform-review__section-title {
        font-size: 1.8em;
    }

    .page-resources-xin88-platform-review__sub-title {
        font-size: 1.3em;
    }

    .page-resources-xin88-platform-review__btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-resources-xin88-platform-review__btn--large {
        padding: 12px 25px;
        font-size: 1.05em;
    }

    .page-resources-xin88-platform-review__hero-image {
        max-width: 95%;
    }
}