/* style/index-review-saobet.css */
:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f1f3f5;
    --background-white: #ffffff;
    --border-light: #e0e0e0;
}

.page-index-review-saobet {
    font-family: 'Arial', sans-serif;
    color: var(--text-dark);
    background: var(--background-light);
}

/* --- General Section & Container Styles --- */
.page-index-review-saobet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-index-review-saobet__main-title,
.page-index-review-saobet__sub-title,
.page-index-review-saobet__intro-title,
.page-index-review-saobet__games-title,
.page-index-review-saobet__promotions-title,
.page-index-review-saobet__news-title,
.page-index-review-saobet__faq-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.3;
}

.page-index-review-saobet__main-title {
    font-size: 36px;
    color: var(--text-dark);
}

.page-index-review-saobet__main-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__main-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__sub-title {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: left;
}

.page-index-review-saobet__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-index-review-saobet__cta-button--primary {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-index-review-saobet__cta-button--primary:hover {
    background: #071a47;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-index-review-saobet__cta-button--secondary {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index-review-saobet__cta-button--secondary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* --- Module 1.5: Review Content Body --- */
.page-index-review-saobet__review-content-section {
    padding: 40px 20px;
    background: var(--background-light);
    /* Fixed header spacing */
    padding-top: 120px; /* Desktop: Adjust based on shared header height */
}

.page-index-review-saobet__review-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.page-index-review-saobet__review-content-card {
    background: var(--background-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

.page-index-review-saobet__review-body {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

.page-index-review-saobet__review-body p {
    margin-bottom: 16px;
}

.page-index-review-saobet__review-body p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__review-body p a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__review-banner-image,
.page-index-review-saobet__content-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    object-fit: cover;
}

/* --- Module 2: Homepage Introduction --- */
.page-index-review-saobet__intro-section {
    padding: 60px 20px;
    background: var(--background-white);
    text-align: center;
}

.page-index-review-saobet__intro-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-index-review-saobet__intro-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__intro-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__intro-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-index-review-saobet__feature-item {
    flex: 1;
    min-width: 280px;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.page-index-review-saobet__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-review-saobet__feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-saobet__feature-item p {
    font-size: 15px;
    line-height: 1.5;
    color: #666666;
}

.page-index-review-saobet__intro-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

/* --- Module 3: Core Game/Service Introduction --- */
.page-index-review-saobet__games-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f8f8, #e0e0e0);
    text-align: center;
}

.page-index-review-saobet__games-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-index-review-saobet__games-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__games-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__games-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-index-review-saobet__games-description a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__games-description a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__game-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-index-review-saobet__game-item {
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.page-index-review-saobet__game-item:hover {
    transform: translateY(-5px);
}

.page-index-review-saobet__game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-saobet__game-item-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-saobet__game-item p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-index-review-saobet__games-note {
    font-size: 16px;
    margin-top: 40px;
    color: #555555;
    line-height: 1.6;
}

.page-index-review-saobet__games-note a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__games-note a:hover {
    text-decoration: underline;
}

/* --- Module 4: Promotions --- */
.page-index-review-saobet__promotions-section {
    padding: 60px 20px;
    background: var(--primary-color);
    text-align: center;
    color: var(--text-light);
}

.page-index-review-saobet__promotions-title {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-index-review-saobet__promotions-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

.page-index-review-saobet__promotions-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__promotions-description a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__promotion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-index-review-saobet__promotion-card {
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.page-index-review-saobet__promotion-card:hover {
    transform: translateY(-5px);
}

.page-index-review-saobet__promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-saobet__promotion-card-title {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-index-review-saobet__promotion-card p {
    font-size: 16px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 25px;
}

.page-index-review-saobet__promotion-card p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__promotion-card p a:hover {
    text-decoration: underline;
}

/* --- Module 5: Latest News Content --- */
.page-index-review-saobet__news-section {
    padding: 60px 20px;
    background: var(--background-light);
    text-align: center;
}

.page-index-review-saobet__news-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.page-index-review-saobet__news-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__news-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__news-description {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-index-review-saobet__news-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-index-review-saobet__news-item {
    background: var(--background-white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    transition: transform 0.3s ease;
}

.page-index-review-saobet__news-item:hover {
    transform: translateY(-5px);
}

.page-index-review-saobet__news-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-saobet__news-item-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-index-review-saobet__news-item-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__news-item-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__news-item p {
    font-size: 15px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.page-index-review-saobet__news-date {
    font-size: 14px;
    color: #999999;
}

/* --- FAQ Section --- */
.page-index-review-saobet__faq-section {
    padding: 60px 20px;
    background: var(--background-white);
}

.page-index-review-saobet__faq-title {
    font-size: 32px;
    margin-bottom: 40px;
}

.page-index-review-saobet__faq-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__faq-title a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-index-review-saobet__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-index-review-saobet__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-index-review-saobet__faq-item.active .page-index-review-saobet__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
}

.page-index-review-saobet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-index-review-saobet__faq-question:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.page-index-review-saobet__faq-question:active {
    background: #eeeeee;
}

.page-index-review-saobet__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-dark);
}

.page-index-review-saobet__faq-question h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-saobet__faq-question h3 a:hover {
    text-decoration: underline;
}

.page-index-review-saobet__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-index-review-saobet__faq-item.active .page-index-review-saobet__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Change + to X */
}

.page-index-review-saobet__faq-answer p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.page-index-review-saobet__faq-answer p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-saobet__faq-answer p a:hover {
    text-decoration: underline;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-index-review-saobet__main-title {
        font-size: 32px;
    }
    .page-index-review-saobet__sub-title {
        font-size: 24px;
    }
    .page-index-review-saobet__intro-title,
    .page-index-review-saobet__games-title,
    .page-index-review-saobet__promotions-title,
    .page-index-review-saobet__news-title,
    .page-index-review-saobet__faq-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .page-index-review-saobet__review-content-section {
        padding-top: 100px !important; /* Mobile: Adjust based on mobile shared header height */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-saobet__review-content-card {
        padding: 25px;
    }
    .page-index-review-saobet__main-title {
        font-size: 28px;
    }
    .page-index-review-saobet__sub-title {
        font-size: 22px;
    }
    .page-index-review-saobet__review-body,
    .page-index-review-saobet__review-body p {
        font-size: 15px;
        line-height: 1.6;
    }
    .page-index-review-saobet__container {
        padding: 0 15px;
    }
    .page-index-review-saobet__intro-section,
    .page-index-review-saobet__games-section,
    .page-index-review-saobet__promotions-section,
    .page-index-review-saobet__news-section,
    .page-index-review-saobet__faq-section {
        padding: 40px 15px;
    }
    .page-index-review-saobet__intro-title,
    .page-index-review-saobet__games-title,
    .page-index-review-saobet__promotions-title,
    .page-index-review-saobet__news-title,
    .page-index-review-saobet__faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .page-index-review-saobet__intro-description,
    .page-index-review-saobet__games-description,
    .page-index-review-saobet__promotions-description,
    .page-index-review-saobet__news-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .page-index-review-saobet__feature-item,
    .page-index-review-saobet__game-item,
    .page-index-review-saobet__promotion-card,
    .page-index-review-saobet__news-item {
        min-width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    .page-index-review-saobet__feature-icon {
        width: 80px;
        height: 80px;
    }
    .page-index-review-saobet__feature-title,
    .page-index-review-saobet__game-item-title,
    .page-index-review-saobet__promotion-card-title {
        font-size: 20px;
    }
    .page-index-review-saobet__game-image,
    .page-index-review-saobet__promotion-image,
    .page-index-review-saobet__news-image {
        height: 180px;
    }
    .page-index-review-saobet__cta-button {
        padding: 12px 20px;
        font-size: 16px;
    }
    .page-index-review-saobet__faq-question {
        padding: 15px;
    }
    .page-index-review-saobet__faq-question h3 {
        font-size: 15px;
    }
    .page-index-review-saobet__faq-toggle {
        font-size: 20px;
        width: 24px;
        height: 24px;
    }
    .page-index-review-saobet__faq-answer {
        padding: 0 15px;
    }
    .page-index-review-saobet__faq-item.active .page-index-review-saobet__faq-answer {
        padding: 15px !important;
    }
    .page-index-review-saobet img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-index-review-saobet__section,
    .page-index-review-saobet__card,
    .page-index-review-saobet__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}