/* style/index-review-saobet.css */
:root {
    --primary-color: #1A2A44;
    --secondary-color: #FFCC00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

.page-index-review-saobet {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light); /* Assuming shared.css sets --dark-bg-1, this will be overridden or used as a fallback for light sections */
}

.page-index-review-saobet__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Fixed header spacing */
.page-index-review-saobet__hero-review-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
}

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

.page-index-review-saobet__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-index-review-saobet__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #e6b800);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-saobet__cta-button:hover {
    background: linear-gradient(135deg, #e6b800, #cc9900);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-saobet__cta-button--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 300px;
}

.page-index-review-saobet__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
    margin-top: 20px;
}

/* HERO Review Section */
.page-index-review-saobet__hero-review-section {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0d1a2d); /* Darker background for hero */
}

.page-index-review-saobet__hero-review-section .page-index-review-saobet__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-index-review-saobet__hero-content {
    max-width: 800px;
}

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

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

.page-index-review-saobet__hero-review-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-saobet__hero-review-section a:hover {
    color: #ffd700;
}

.page-index-review-saobet__hero-image {
    width: 100%;
    max-width: 800px;
    margin-top: 30px;
}

.page-index-review-saobet__hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Review Summary Section */
.page-index-review-saobet__review-summary-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-index-review-saobet__rating-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-index-review-saobet__rating-score {
    flex-shrink: 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.page-index-review-saobet__rating-score .page-index-review-saobet__rating-number {
    font-size: 60px;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.page-index-review-saobet__stars {
    color: var(--secondary-color);
    font-size: 28px;
    line-height: 1;
    display: block;
    margin-top: 5px;
}

.page-index-review-saobet__rating-info p {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.page-index-review-saobet__rating-info a:hover {
    text-decoration: underline;
}

/* Review Details Section */
.page-index-review-saobet__review-details-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: var(--text-dark);
}

.page-index-review-saobet__detail-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 40px;
}

.page-index-review-saobet__detail-title {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-saobet__detail-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

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

.page-index-review-saobet__detail-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
}

.page-index-review-saobet__detail-card ul li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-index-review-saobet__detail-card ul li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-index-review-saobet__detail-image {
    width: 100%;
    height: auto;
    max-width: 700px;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

/* Pros Cons Section */
.page-index-review-saobet__pros-cons-section {
    padding: 60px 0;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-color), #0d1a2d); /* Darker background */
}

.page-index-review-saobet__pros-cons-section .page-index-review-saobet__section-title {
    color: var(--text-light);
}

.page-index-review-saobet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-index-review-saobet__card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    color: var(--text-dark);
}

.page-index-review-saobet__card--pros {
    border: 2px solid #28a745;
}

.page-index-review-saobet__card--cons {
    border: 2px solid #dc3545;
}

.page-index-review-saobet__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
}

.page-index-review-saobet__card ul {
    list-style: none;
    padding-left: 0;
}

.page-index-review-saobet__card ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-index-review-saobet__list-icon {
    font-size: 20px;
    line-height: 1;
    flex-shrink: 0;
}

.page-index-review-saobet__card--pros .page-index-review-saobet__list-icon {
    color: #28a745;
}

.page-index-review-saobet__card--cons .page-index-review-saobet__list-icon {
    color: #dc3545;
}

/* Registration Guide Section */
.page-index-review-saobet__registration-guide-section {
    padding: 60px 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.page-index-review-saobet__note {
    font-style: italic;
    text-align: center;
    margin-top: 30px;
    font-size: 16px;
    color: #555;
}

.page-index-review-saobet__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-saobet__step-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-index-review-saobet__step-number {
    font-size: 60px;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 15px;
    opacity: 0.7;
}

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

.page-index-review-saobet__step-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.page-index-review-saobet__step-image {
    width: 100%;
    height: auto;
    max-width: 350px;
    display: block;
    margin: 20px auto 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-index-review-saobet__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: var(--text-dark);
}

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

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

.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 20px;
    opacity: 0;
    background-color: var(--bg-light);
}

.page-index-review-saobet__faq-item.active .page-index-review-saobet__faq-answer {
    max-height: 2000px !important; /* Ensure content fits */
    padding: 20px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

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

.page-index-review-saobet__faq-item.active .page-index-review-saobet__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: #0d1a2d; /* Slightly darker when active */
}

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

.page-index-review-saobet__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none; /* Allows click to pass through to parent */
    color: var(--text-light);
}

.page-index-review-saobet__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    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: 30px;
    height: 30px;
}

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

.page-index-review-saobet__faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

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

/* Conclusion Section */
.page-index-review-saobet__conclusion-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d1a2d, var(--primary-color)); /* Darker background */
    color: var(--text-light);
    text-align: center;
}

.page-index-review-saobet__conclusion-section .page-index-review-saobet__section-title {
    color: var(--text-light);
}

.page-index-review-saobet__conclusion-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-index-review-saobet__conclusion-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-saobet__conclusion-section a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-saobet__main-title {
        font-size: 40px;
    }
    .page-index-review-saobet__section-title {
        font-size: 30px;
    }
    .page-index-review-saobet__rating-score .page-index-review-saobet__rating-number {
        font-size: 50px;
    }
    .page-index-review-saobet__stars {
        font-size: 24px;
    }
    .page-index-review-saobet__detail-title {
        font-size: 24px;
    }
    .page-index-review-saobet__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-review-saobet__hero-review-section {
        padding-top: 160px !important; /* Mobile: Adjust based on fixed header height */
        padding-bottom: 40px;
    }
    .page-index-review-saobet__hero-review-section .page-index-review-saobet__container {
        gap: 20px;
    }
    .page-index-review-saobet__main-title {
        font-size: 32px;
    }
    .page-index-review-saobet__hero-description {
        font-size: 16px;
    }
    .page-index-review-saobet__section-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
    .page-index-review-saobet__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        margin-top: 20px;
    }
    .page-index-review-saobet__review-summary-section,
    .page-index-review-saobet__review-details-section,
    .page-index-review-saobet__pros-cons-section,
    .page-index-review-saobet__registration-guide-section,
    .page-index-review-saobet__faq-section,
    .page-index-review-saobet__conclusion-section {
        padding: 40px 0;
    }
    .page-index-review-saobet__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-saobet__rating-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 20px;
    }
    .page-index-review-saobet__rating-score .page-index-review-saobet__rating-number {
        font-size: 48px;
    }
    .page-index-review-saobet__stars {
        font-size: 22px;
    }
    .page-index-review-saobet__rating-info p {
        font-size: 15px;
    }
    .page-index-review-saobet__detail-title {
        font-size: 22px;
    }
    .page-index-review-saobet__detail-card p,
    .page-index-review-saobet__detail-card ul li {
        font-size: 15px;
    }
    .page-index-review-saobet__card-title {
        font-size: 20px;
    }
    .page-index-review-saobet__card ul li {
        font-size: 15px;
    }
    .page-index-review-saobet__step-number {
        font-size: 50px;
    }
    .page-index-review-saobet__step-title {
        font-size: 20px;
    }
    .page-index-review-saobet__step-card p {
        font-size: 15px;
    }
    .page-index-review-saobet__faq-question h3 {
        font-size: 16px;
    }
    .page-index-review-saobet__faq-toggle {
        font-size: 24px;
        width: 26px;
        height: 26px;
    }
    .page-index-review-saobet__faq-answer p {
        font-size: 15px;
    }
    .page-index-review-saobet__conclusion-section p {
        font-size: 16px;
    }

    /* Ensure all images are responsive and do not overflow */
    .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,
    .page-index-review-saobet__detail-card,
    .page-index-review-saobet__step-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-index-review-saobet__review-details-section .page-index-review-saobet__container,
    .page-index-review-saobet__registration-guide-section .page-index-review-saobet__container,
    .page-index-review-saobet__pros-cons-section .page-index-review-saobet__container,
    .page-index-review-saobet__faq-section .page-index-review-saobet__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-index-review-saobet__main-title {
        font-size: 28px;
    }
    .page-index-review-saobet__section-title {
        font-size: 22px;
    }
    .page-index-review-saobet__cta-button {
        font-size: 15px;
        padding: 10px 25px;
    }
    .page-index-review-saobet__rating-score .page-index-review-saobet__rating-number {
        font-size: 40px;
    }
    .page-index-review-saobet__stars {
        font-size: 20px;
    }
    .page-index-review-saobet__detail-title {
        font-size: 20px;
    }
    .page-index-review-saobet__card-title {
        font-size: 18px;
    }
    .page-index-review-saobet__step-number {
        font-size: 45px;
    }
    .page-index-review-saobet__step-title {
        font-size: 18px;
    }
    .page-index-review-saobet__faq-question h3 {
        font-size: 15px;
    }
}