/* style/index-review-tot88.css */

:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --dark-section-bg: #000;
    --light-section-bg: #f1f3f5;
}

.page-index-review-tot88 {
    color: var(--text-color-dark-bg); /* Default text color for body background #000 */
    background-color: var(--dark-section-bg); /* Body background is #000 */
}

/* Ensure main content is not hidden by fixed header */
.page-index-review-tot88__hero-banner {
    padding-top: 180px; /* Desktop: Adjust based on actual header height */
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    text-align: center;
    position: relative;
    color: var(--text-color-dark-bg);
}

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

.page-index-review-tot88__card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 40px;
    margin-bottom: 30px;
    color: var(--text-color-light-bg);
}

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

.page-index-review-tot88__section-title--light {
    color: var(--text-color-dark-bg);
}

.page-index-review-tot88__section-description {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-color-light-bg);
}

.page-index-review-tot88__section-description--light {
    color: var(--text-color-dark-bg);
}

.page-index-review-tot88__hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-dark-bg);
}

.page-index-review-tot88__hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--text-color-dark-bg);
}

.page-index-review-tot88__hero-subtitle a {
    color: var(--text-color-dark-bg);
    text-decoration: underline;
}

.page-index-review-tot88__cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-color-dark-bg);
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-tot88__cta-button:hover {
    background: darken(var(--secondary-color), 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__cta-button--small {
    padding: 10px 25px;
    font-size: 16px;
}

/* Introduction Section */
.page-index-review-tot88__introduction-section {
    padding: 60px 0;
    background-color: var(--light-section-bg);
    color: var(--text-color-light-bg);
}

.page-index-review-tot88__content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.page-index-review-tot88__intro-image {
    width: 40%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.page-index-review-tot88__introduction-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    flex-grow: 1;
}

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

.page-index-review-tot88__introduction-section p a:hover {
    text-decoration: underline;
}

/* Review Criteria Section */
.page-index-review-tot88__review-criteria-section {
    padding: 60px 0;
    background-color: var(--dark-section-bg);
    color: var(--text-color-dark-bg);
}

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

.page-index-review-tot88__criteria-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--text-color-light-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88__criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-index-review-tot88__criteria-card p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

/* Featured Games Section */
.page-index-review-tot88__featured-games-section {
    padding: 60px 0;
    background-color: var(--light-section-bg);
    color: var(--text-color-light-bg);
}

.page-index-review-tot88__game-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-index-review-tot88__game-card {
    background: var(--card-bg);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow-color);
    padding: 25px;
    text-align: center;
    color: var(--text-color-light-bg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88__game-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-index-review-tot88__game-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.page-index-review-tot88__game-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.page-index-review-tot88__game-desc a:hover {
    text-decoration: underline;
}

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

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

.page-index-review-tot88__step-item {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--text-color-light-bg);
}

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

.page-index-review-tot88__step-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.page-index-review-tot88__step-item p a:hover {
    text-decoration: underline;
}

.page-index-review-tot88__guide-tip {
    font-size: 17px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-color-dark-bg);
}

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

.page-index-review-tot88__guide-tip a:hover {
    text-decoration: underline;
}

/* Pros and Cons Section */
.page-index-review-tot88__pros-cons-section {
    padding: 60px 0;
    background-color: var(--light-section-bg);
    color: var(--text-color-light-bg);
}

.page-index-review-tot88__pros-cons-wrapper {
    display: flex;
    gap: 30px;
}

.page-index-review-tot88__pros, .page-index-review-tot88__cons {
    flex: 1;
    padding: 30px;
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: 0 4px 10px var(--shadow-color);
}

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

.page-index-review-tot88__pros .page-index-review-tot88__sub-title {
    color: var(--secondary-color);
}

.page-index-review-tot88__list {
    list-style: none;
    padding: 0;
}

.page-index-review-tot88__list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-index-review-tot88__pros .page-index-review-tot88__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.page-index-review-tot88__cons .page-index-review-tot88__list li::before {
    content: '❌';
    position: absolute;
    left: 0;
    color: #dc3545; /* Red for cons */
}

.page-index-review-tot88__list-highlight {
    color: var(--primary-color);
}

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

.page-index-review-tot88__list li a:hover {
    text-decoration: underline;
}

/* Comparison Section */
.page-index-review-tot88__comparison-section {
    padding: 60px 0;
    background-color: var(--dark-section-bg);
    color: var(--text-color-dark-bg);
}

.page-index-review-tot88__comparison-content {
    padding: 40px;
}

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

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

.page-index-review-tot88__comparison-content p a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.page-index-review-tot88__faq-section {
    padding: 60px 0;
    background-color: var(--light-section-bg);
    color: var(--text-color-light-bg);
}

.page-index-review-tot88__faq-list {
    margin-top: 30px;
}

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

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

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

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

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

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

.page-index-review-tot88__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-color-light-bg);
}

.page-index-review-tot88__faq-question h3 a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    pointer-events: auto;
}

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

.page-index-review-tot88__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-tot88__faq-item.active .page-index-review-tot88__faq-toggle {
    color: #333;
    transform: rotate(45deg); /* Change + to X or similar */
}

/* Global image responsive styles */
.page-index-review-tot88 img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-tot88__hero-title {
        font-size: 40px;
    }

    .page-index-review-tot88__hero-subtitle {
        font-size: 20px;
    }

    .page-index-review-tot88__section-title {
        font-size: 30px;
    }

    .page-index-review-tot88__content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .page-index-review-tot88__intro-image {
        width: 80%;
        margin-bottom: 30px;
    }

    .page-index-review-tot88__pros-cons-wrapper {
        flex-direction: column;
    }

    .page-index-review-tot88__pros, .page-index-review-tot88__cons {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88__hero-banner {
        padding-top: 160px !important; /* Mobile: Adjust based on actual header height */
        padding-bottom: 40px;
    }

    .page-index-review-tot88__container {
        padding: 0 15px;
    }

    .page-index-review-tot88__card {
        padding: 25px;
    }

    .page-index-review-tot88__hero-title {
        font-size: 32px;
    }

    .page-index-review-tot88__hero-subtitle {
        font-size: 18px;
    }

    .page-index-review-tot88__cta-button {
        padding: 12px 30px;
        font-size: 18px;
    }

    .page-index-review-tot88__section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .page-index-review-tot88__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-index-review-tot88__intro-image {
        width: 100%;
    }

    .page-index-review-tot88__criteria-card {
        padding: 20px;
    }

    .page-index-review-tot88__card-title {
        font-size: 20px;
    }

    .page-index-review-tot88__game-image {
        height: 180px;
    }

    .page-index-review-tot88__game-name {
        font-size: 20px;
    }

    .page-index-review-tot88__step-title {
        font-size: 20px;
    }

    .page-index-review-tot88__sub-title {
        font-size: 24px;
    }

    .page-index-review-tot88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }

    .page-index-review-tot88__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }

    .page-index-review-tot88__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }

    .page-index-review-tot88__faq-answer {
        padding: 0 15px;
    }

    .page-index-review-tot88__faq-item.active .page-index-review-tot88__faq-answer {
        padding: 15px !important;
    }

    .page-index-review-tot88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-index-review-tot88__section, .page-index-review-tot88__card, .page-index-review-tot88__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}