/* style/index-review-tot88.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-light: #f8f9fa;
    --bg-dark-card: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --danger-color: #dc3545;
}

.page-index-review-tot88 {
    padding-top: 180px; /* Adjusted for fixed header on desktop */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .page-index-review-tot88 {
        padding-top: 140px; /* Adjusted for fixed header on mobile */
    }
}

.page-index-review-tot88__dark-bg {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

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

.page-index-review-tot88__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

.page-index-review-tot88__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-index-review-tot88__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-index-review-tot88__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-review-tot88__hero-description {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-index-review-tot88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
}

.page-index-review-tot88__btn-primary {
    background: var(--primary-color);
    color: var(--text-light);
}

.page-index-review-tot88__btn-primary:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-tot88__btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88__section {
    padding: 60px 20px;
    text-align: center;
}

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

.page-index-review-tot88__section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-index-review-tot88__overview-section .page-index-review-tot88__section-title,
.page-index-review-tot88__games-section .page-index-review-tot88__section-title,
.page-index-review-tot88__transactions-section .page-index-review-tot88__section-title,
.page-index-review-tot88__pros-cons-section .page-index-review-tot88__section-title,
.page-index-review-tot88__conclusion-section .page-index-review-tot88__section-title {
    color: var(--secondary-color);
}

.page-index-review-tot88__reputation-section .page-index-review-tot88__section-title,
.page-index-review-tot88__promotions-section .page-index-review-tot88__section-title,
.page-index-review-tot88__support-section .page-index-review-tot88__section-title,
.page-index-review-tot88__faq-section .page-index-review-tot88__section-title {
    color: var(--primary-color);
}

.page-index-review-tot88__section-subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-index-review-tot88__content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88__content-wrapper p {
    font-size: 1.05em;
    max-width: 900px;
    margin-bottom: 15px;
}

.page-index-review-tot88__content-wrapper h3 {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-index-review-tot88__list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 800px;
    text-align: left;
}

.page-index-review-tot88__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.page-index-review-tot88__list-icon {
    margin-right: 10px;
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2em;
    flex-shrink: 0;
}

.page-index-review-tot88__list-icon--green {
    color: var(--success-color);
}

.page-index-review-tot88__list-icon--red {
    color: var(--danger-color);
}

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

.page-index-review-tot88__game-card,
.page-index-review-tot88__promo-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

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

.page-index-review-tot88__game-card-image,
.page-index-review-tot88__promo-card-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-index-review-tot88__game-card-title,
.page-index-review-tot88__promo-card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-index-review-tot88__game-card-description,
.page-index-review-tot88__promo-card-description {
    font-size: 0.95em;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-index-review-tot88__transactions-info {
    flex: 1;
}

.page-index-review-tot88__transactions-info h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-index-review-tot88__transactions-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-index-review-tot88__pros-cons-wrapper {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: 40px;
}

.page-index-review-tot88__pros-card,
.page-index-review-tot88__cons-card {
    flex: 1;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: left;
    color: var(--text-dark);
}

.page-index-review-tot88__pros-card h3 {
    color: var(--success-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-tot88__cons-card h3 {
    color: var(--danger-color);
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.page-index-review-tot88__faq-list {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.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, opacity 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: var(--bg-dark-card); /* Semi-transparent background for dark theme */
    border-radius: 0 0 5px 5px;
    color: var(--text-light);
}

.page-index-review-tot88__faq-answer p {
    margin-bottom: 0;
    font-size: 1em;
}

.page-index-review-tot88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--primary-color);
    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;
    color: var(--text-light);
}

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

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

.page-index-review-tot88__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: inherit; /* Inherit color from parent (.faq-question) */
}

.page-index-review-tot88__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--text-light);
    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: var(--text-light);
    transform: rotate(45deg);
}

.page-index-review-tot88__overall-rating {
    margin-top: 40px;
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
}

.page-index-review-tot88__stars {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-right: 10px;
}

.page-index-review-tot88__rating-text {
    color: var(--secondary-color);
}

.page-index-review-tot88__conclusion-section a {
    color: var(--secondary-color);
    font-weight: bold;
    text-decoration: underline;
}

.page-index-review-tot88__conclusion-section a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-review-tot88__hero-title {
        font-size: 2.5em;
    }
    .page-index-review-tot88__section-title {
        font-size: 2em;
    }
    .page-index-review-tot88__transactions-content {
        flex-direction: column;
        gap: 30px;
    }
    .page-index-review-tot88__transactions-image {
        max-width: 100%;
    }
    .page-index-review-tot88__pros-cons-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88__hero-section {
        padding: 40px 15px;
    }
    .page-index-review-tot88__hero-title {
        font-size: 2em;
    }
    .page-index-review-tot88__hero-description {
        font-size: 1em;
    }
    .page-index-review-tot88__cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-tot88__section {
        padding: 40px 15px;
    }
    .page-index-review-tot88__section-title {
        font-size: 1.8em;
    }
    .page-index-review-tot88__section-subtitle {
        font-size: 1em;
    }
    .page-index-review-tot88__game-grid,
    .page-index-review-tot88__promo-grid {
        gap: 20px;
    }
    .page-index-review-tot88__game-card-title,
    .page-index-review-tot88__promo-card-title {
        font-size: 1.2em;
    }
    .page-index-review-tot88__game-card-description,
    .page-index-review-tot88__promo-card-description {
        font-size: 0.9em;
    }
    .page-index-review-tot88__transactions-info h3 {
        font-size: 1.5em;
    }
    .page-index-review-tot88__pros-card h3,
    .page-index-review-tot88__cons-card h3 {
        font-size: 1.5em;
    }
    .page-index-review-tot88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-index-review-tot88__faq-question h3 {
        font-size: 1em;
        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__overall-rating {
        font-size: 1.2em;
    }
}