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

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

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

.page-index-review-tot88-section {
    padding: 60px 0;
    margin-bottom: 20px;
    background-color: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-index-review-tot88-section:nth-child(even) {
    background-color: #fcfcfc;
}

.page-index-review-tot88 h1,
.page-index-review-tot88 h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    line-height: 1.2;
}

.page-index-review-tot88 h1 {
    font-size: 3em;
}

.page-index-review-tot88 h2 {
    font-size: 2.5em;
}

.page-index-review-tot88 h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-index-review-tot88 p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-index-review-tot88-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

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

.page-index-review-tot88-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.page-index-review-tot88-hero-content h1 {
    color: var(--secondary-color);
    font-size: 3.8em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88-hero-content p {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-tot88-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-review-tot88-cta-button:hover {
    background: #ffc400;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-index-review-tot88-game-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-index-review-tot88-game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88-game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-tot88-game-card h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    padding: 15px 20px 0;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-index-review-tot88-game-card p {
    font-size: 1em;
    padding: 0 20px 20px;
    color: var(--text-dark);
    flex-grow: 1;
}

.page-index-review-tot88-card-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-index-review-tot88-card-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-tot88-list {
    list-style: disc inside;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-index-review-tot88-list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-index-review-tot88-list li strong {
    color: var(--primary-color);
}

.page-index-review-tot88-call-to-action-text {
    text-align: center;
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--primary-color);
}

.page-index-review-tot88-content-flex {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-index-review-tot88-content-flex-reverse {
    flex-direction: row-reverse;
}

.page-index-review-tot88-text-content {
    flex: 1;
}

.page-index-review-tot88-image-content {
    flex: 1;
    min-width: 300px;
}

.page-index-review-tot88-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88-pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-tot88-pros,
.page-index-review-tot88-cons {
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-tot88-pros h3 {
    color: #28a745; /* Green for pros */
    text-align: center;
    margin-top: 0;
}

.page-index-review-tot88-cons h3 {
    color: #dc3545; /* Red for cons */
    text-align: center;
    margin-top: 0;
}

.page-index-review-tot88-pros ul,
.page-index-review-tot88-cons ul {
    list-style: none;
    padding: 0;
}

.page-index-review-tot88-pros li::before {
    content: '✅';
    margin-right: 10px;
}

.page-index-review-tot88-cons li::before {
    content: '❌';
    margin-right: 10px;
}

/* FAQ Styles */
.page-index-review-tot88-faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--card-bg);
    transition: all 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #fdfdfd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background: #f9f9f9;
    color: var(--text-dark);
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    margin: 0;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-review-tot88-hero-image {
        height: 350px;
    }

    .page-index-review-tot88-hero-content h1 {
        font-size: 3em;
    }

    .page-index-review-tot88 h2 {
        font-size: 2em;
    }

    .page-index-review-tot88 h3 {
        font-size: 1.6em;
    }

    .page-index-review-tot88-content-flex {
        flex-direction: column;
        gap: 30px;
    }

    .page-index-review-tot88-content-flex-reverse {
        flex-direction: column;
    }

    .page-index-review-tot88-pros-cons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88-hero-image {
        height: 250px;
    }

    .page-index-review-tot88-hero-content h1 {
        font-size: 2.5em;
    }

    .page-index-review-tot88-hero-content p {
        font-size: 1.1em;
    }

    .page-index-review-tot88 h1 {
        font-size: 2.5em;
    }

    .page-index-review-tot88 h2 {
        font-size: 1.8em;
    }

    .page-index-review-tot88 h3 {
        font-size: 1.4em;
    }

    .page-index-review-tot88 p {
        font-size: 1em;
    }

    .page-index-review-tot88-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }

    .page-index-review-tot88-game-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 15px 20px;
    }

    .faq-question h3 {
        font-size: 1.1em;
    }

    .faq-toggle {
        font-size: 1.8em;
    }

    .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-index-review-tot88-hero-image {
        height: 180px;
    }

    .page-index-review-tot88-hero-content h1 {
        font-size: 2em;
    }

    .page-index-review-tot88-hero-content p {
        font-size: 0.9em;
    }

    .page-index-review-tot88 h1 {
        font-size: 2em;
    }

    .page-index-review-tot88 h2 {
        font-size: 1.5em;
    }

    .page-index-review-tot88 h3 {
        font-size: 1.2em;
    }

    .page-index-review-tot88-section {
        padding: 40px 0;
    }

    .page-index-review-tot88-container {
        padding: 15px;
    }

    .faq-question h3 {
        font-size: 1em;
    }

    .faq-toggle {
        font-size: 1.5em;
    }
}