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

.page-index-review-sinbet {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

/* 智能文字颜色选择器 */
.page-index-review-sinbet__dark-bg {
    color: var(--text-light); /* Deep background, light text */
    background-color: var(--primary-color);
}

.page-index-review-sinbet__light-bg {
    color: var(--text-dark); /* Light background, dark text */
    background-color: var(--background-light);
}

.page-index-review-sinbet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-index-review-sinbet__section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-index-review-sinbet__section-title .highlight {
    color: var(--secondary-color);
}

/* HERO Section */
.page-index-review-sinbet__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 180px; /* Desktop: Adjust for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a70 100%);
    color: var(--text-light);
    overflow: hidden;
}

.page-index-review-sinbet__hero-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.page-index-review-sinbet__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-light);
}

.page-index-review-sinbet__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-index-review-sinbet__hero-image-content {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    object-fit: cover;
}

/* General Content Sections */
.page-index-review-sinbet__section h2 {
    color: var(--primary-color);
}

.page-index-review-sinbet__section h3 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-index-review-sinbet__dark-bg h2, .page-index-review-sinbet__dark-bg h3 {
    color: var(--secondary-color);
}

.page-index-review-sinbet__text-content p {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

.page-index-review-sinbet__text-content .highlight {
    font-weight: bold;
    color: var(--primary-color);
}

.page-index-review-sinbet__dark-bg .page-index-review-sinbet__text-content .highlight {
    color: var(--secondary-color);
}

.page-index-review-sinbet__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-index-review-sinbet__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-index-review-sinbet__image-left, .page-index-review-sinbet__image-right {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    max-width: 100%;
    height: auto;
}

.page-index-review-sinbet__text-content {
    flex: 2;
}

.page-index-review-sinbet__text-block {
    background: var(--background-card);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    color: var(--text-dark);
}

.page-index-review-sinbet__text-block p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-index-review-sinbet__text-block .highlight {
    font-weight: bold;
    color: var(--primary-color);
}

.page-index-review-sinbet__dark-bg .page-index-review-sinbet__text-block {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.page-index-review-sinbet__dark-bg .page-index-review-sinbet__text-block .highlight {
    color: var(--secondary-color);
}

/* CTA Buttons */
.page-index-review-sinbet__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: none;
}

.page-index-review-sinbet__btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), #e6bb00);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.page-index-review-sinbet__btn-primary:hover {
    background: linear-gradient(135deg, #e6bb00, #ccaa00);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-sinbet__btn-secondary {
    background: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.page-index-review-sinbet__btn-secondary:hover {
    background: #1a3a70;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-sinbet__text-link {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-index-review-sinbet__text-link:hover {
    color: #e6bb00;
}

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

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

.page-index-review-sinbet__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index-review-sinbet__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 25px;
    opacity: 0;
    background: var(--background-card);
    color: var(--text-dark);
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-answer {
    max-height: 2000px !important; /* Sufficiently large value */
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
    border-top: 1px solid var(--border-color);
}

.page-index-review-sinbet__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-index-review-sinbet__faq-question:hover {
    background: #f8f8f8;
    border-color: #c0c0c0;
}

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

.page-index-review-sinbet__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.page-index-review-sinbet__faq-item.active .page-index-review-sinbet__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-sinbet__hero-title {
        font-size: 40px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 16px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 28px;
    }
    .page-index-review-sinbet__content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .page-index-review-sinbet__image-left, .page-index-review-sinbet__image-right {
        min-width: unset;
        width: 100%;
    }
    .page-index-review-sinbet__text-content {
        flex: none;
        width: 100%;
    }
    .page-index-review-sinbet__hero-image-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-index-review-sinbet__hero-section {
        padding-top: 140px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-sinbet__container {
        padding: 20px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-index-review-sinbet__hero-title {
        font-size: 32px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 15px;
    }
    .page-index-review-sinbet__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        margin-top: 20px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    .page-index-review-sinbet__section h3 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-index-review-sinbet__text-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    .page-index-review-sinbet__text-block {
        padding: 20px;
    }
    .page-index-review-sinbet__text-block p {
        font-size: 15px;
    }
    .page-index-review-sinbet__faq-section {
        padding: 40px 15px;
    }
    .page-index-review-sinbet__faq-question {
        padding: 15px 20px;
    }
    .page-index-review-sinbet__faq-question h3 {
        font-size: 16px;
    }
    .page-index-review-sinbet__faq-toggle {
        font-size: 24px;
        width: 28px;
        height: 28px;
        margin-left: 15px;
    }
    /* Mobile image responsive adaptation */
    .page-index-review-sinbet img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }
}

@media (max-width: 480px) {
    .page-index-review-sinbet__hero-title {
        font-size: 28px;
    }
    .page-index-review-sinbet__hero-description {
        font-size: 14px;
    }
    .page-index-review-sinbet__section-title {
        font-size: 22px;
    }
    .page-index-review-sinbet__section h3 {
        font-size: 18px;
    }
    .page-index-review-sinbet__cta-button {
        font-size: 14px;
        padding: 10px 25px;
    }
}