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

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

.page-index-review-tot88 h1, .page-index-review-tot88 h2, .page-index-review-tot88 h3, .page-index-review-tot88 h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-index-review-tot88 h1 {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
}

.page-index-review-tot88 h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.page-index-review-tot88 h3 {
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-index-review-tot88 p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

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

.page-index-review-tot88 a:hover {
    color: var(--secondary-color);
}

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

/* Hero Section */
.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-color: var(--primary-color);
    overflow: hidden;
}

.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;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    color: var(--text-light);
}

.page-index-review-tot88-hero-content p {
    font-size: 1.2em;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.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: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88-cta-button:hover {
    background: #FFD700; /* Lighter gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

.page-index-review-tot88-section:nth-of-type(even) {
    background-color: #e9ecef;
}

/* Intro Section */
.page-index-review-tot88-intro .page-index-review-tot88-content-grid {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

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

.page-index-review-tot88-intro .page-index-review-tot88-image-content {
    flex: 1;
    text-align: center;
}

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

.page-index-review-tot88-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-review-tot88-button:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.page-index-review-tot88-button-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

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

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

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

.page-index-review-tot88-game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-index-review-tot88-game-card h3 {
    font-size: 1.4em;
    margin: 15px 15px 10px;
    color: var(--primary-color);
}

.page-index-review-tot88-game-card h3 a.page-index-review-tot88-card-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-tot88-game-card h3 a.page-index-review-tot88-card-link:hover {
    color: var(--secondary-color);
}

.page-index-review-tot88-game-card p {
    padding: 0 15px 15px;
    font-size: 0.95em;
    flex-grow: 1;
}

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

.page-index-review-tot88-promo-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.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-promo-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.page-index-review-tot88-promo-card h3 {
    font-size: 1.3em;
    margin: 15px 15px 10px;
    color: var(--primary-color);
}

.page-index-review-tot88-promo-card h3 a.page-index-review-tot88-card-link {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-tot88-promo-card h3 a.page-index-review-tot88-card-link:hover {
    color: var(--secondary-color);
}

.page-index-review-tot88-promo-card p {
    padding: 0 15px;
    font-size: 0.95em;
    flex-grow: 1;
}

.page-index-review-tot88-small-button {
    display: inline-block;
    padding: 8px 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    margin: 10px 15px 0;
    transition: background-color 0.3s ease;
}

.page-index-review-tot88-small-button:hover {
    background: #FFD700;
}

/* Payments Section */
.page-index-review-tot88-payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88-feature-item {
    text-align: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-tot88-feature-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-index-review-tot88-feature-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
}

.page-index-review-tot88-feature-item p {
    font-size: 0.95em;
}

/* Security Section */
.page-index-review-tot88-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88-security-item {
    text-align: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-tot88-security-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-index-review-tot88-security-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
}

.page-index-review-tot88-security-item p {
    font-size: 0.95em;
}

/* Registration Section */
.page-index-review-tot88-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88-step-item {
    text-align: center;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-review-tot88-step-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.page-index-review-tot88-step-item h3 {
    font-size: 1.3em;
    color: var(--primary-color);
}

.page-index-review-tot88-step-item p {
    font-size: 0.95em;
}

/* Pros and Cons Section */
.page-index-review-tot88-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.page-index-review-tot88-pros, .page-index-review-tot88-cons {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-index-review-tot88-pros li, .page-index-review-tot88-cons li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    display: flex;
    align-items: flex-start;
    font-size: 1.0em;
}

.page-index-review-tot88-pros li:last-child, .page-index-review-tot88-cons li:last-child {
    border-bottom: none;
}

.page-index-review-tot88-pros li::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

.page-index-review-tot88-cons li::before {
    content: '❌';
    margin-right: 10px;
    font-size: 1.2em;
    line-height: 1;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

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

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

/* Conclusion Section */
.page-index-review-tot88-conclusion h2 {
    color: var(--primary-color);
}

.page-index-review-tot88-button-final {
    background: var(--secondary-color);
    color: var(--primary-color);
    margin-top: 30px;
    font-size: 1.2em;
    padding: 18px 45px;
}

.page-index-review-tot88-button-final:hover {
    background: #FFD700;
    color: var(--primary-color);
}

/* Copyright Info */
.page-index-review-tot88-copyright-info {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-index-review-tot88 h1 {
        font-size: 2.2em;
    }
    .page-index-review-tot88 h2 {
        font-size: 1.8em;
    }
    .page-index-review-tot88 h3 {
        font-size: 1.4em;
    }
    .page-index-review-tot88-intro .page-index-review-tot88-content-grid {
        flex-direction: column;
    }
    .page-index-review-tot88-intro .page-index-review-tot88-image-content {
        order: -1;
        margin-bottom: 20px;
    }
    .page-index-review-tot88-summary-grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-tot88-pros, .page-index-review-tot88-cons {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-index-review-tot88-hero-section {
        padding: 40px 15px;
    }
    .page-index-review-tot88-hero-content p {
        font-size: 1em;
    }
    .page-index-review-tot88-cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
    .page-index-review-tot88-section {
        padding: 40px 0;
    }
    .page-index-review-tot88-game-grid, 
    .page-index-review-tot88-promo-grid, 
    .page-index-review-tot88-payment-features, 
    .page-index-review-tot88-security-grid, 
    .page-index-review-tot88-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-index-review-tot88-game-card img, .page-index-review-tot88-promo-card img {
        height: 160px;
    }
    .faq-question h3 {
        font-size: 1.1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-review-tot88 h1 {
        font-size: 1.8em;
    }
    .page-index-review-tot88 h2 {
        font-size: 1.5em;
    }
    .page-index-review-tot88 h3 {
        font-size: 1.2em;
    }
    .page-index-review-tot88-hero-image {
        margin-bottom: 20px;
    }
    .page-index-review-tot88-cta-button {
        padding: 10px 25px;
        font-size: 14px;
    }
    .page-index-review-tot88-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-index-review-tot88-button-large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-index-review-tot88-button-final {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}