/* style/index-review-tot88.css */
:root {
    --primary-color: #002060; /* Deep Blue */
    --secondary-color: #FFD700; /* Bright Gold */
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-paragraph: #e0e0e0;
    --text-paragraph-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #0a1f44; /* Slightly lighter than primary for contrast */
    --card-background: #ffffff;
    --border-color: #e0e0e0;
}

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

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

.page-index-review-tot88 h1, .page-index-review-tot88 h2, .page-index-review-tot88 h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

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

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

.page-index-review-tot88 h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.page-index-review-tot88 p {
    margin-bottom: 15px;
    color: var(--text-paragraph-dark);
}

.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);
    text-decoration: underline;
}

.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;
    border: none;
    cursor: pointer;
}

.page-index-review-tot88 .cta-button:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-review-tot88 .btn-small {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-index-review-tot88 .btn-promo {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-index-review-tot88 .btn-promo:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* 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: linear-gradient(135deg, var(--primary-color), #0a1f44);
    color: var(--text-light);
    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;
    z-index: 1;
}

.page-index-review-tot88 .hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-review-tot88 .hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.8); /* Slightly darken image for text contrast */
}

.page-index-review-tot88 .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text readability */
    border-radius: 8px;
    margin-top: -80px; /* Overlap with image */
}

.page-index-review-tot88 .hero-content h1 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 3.5em;
}

.page-index-review-tot88 .hero-content p {
    color: var(--text-light);
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Module 1: Introduction */
.page-index-review-tot88 .section-intro {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-index-review-tot88 .intro-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88 .intro-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-review-tot88 .intro-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 15px;
}

.page-index-review-tot88 .intro-item p {
    color: var(--text-paragraph-dark);
    font-size: 0.95em;
}

.page-index-review-tot88 .feature-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

/* Module 2: Quick Links */
.page-index-review-tot88 .section-quick-links {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-index-review-tot88 .section-quick-links h2 {
    color: var(--secondary-color);
}

.page-index-review-tot88 .section-quick-links p {
    color: var(--text-paragraph);
    text-align: center;
    margin-bottom: 40px;
}

.page-index-review-tot88 .link-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.page-index-review-tot88 .quick-link-card {
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-decoration: none;
}

.page-index-review-tot88 .quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background-color: #002e80; /* Slightly lighter primary */
}

.page-index-review-tot88 .quick-link-card h3 {
    color: var(--secondary-color);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-index-review-tot88 .quick-link-card p {
    color: var(--text-paragraph);
    font-size: 0.9em;
}

.page-index-review-tot88 .link-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: brightness(1.2); /* Make icon slightly brighter on dark background */
}

/* Module 3: Games */
.page-index-review-tot88 .section-games {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-index-review-tot88 .game-card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-review-tot88 .game-card h3 {
    color: var(--primary-color);
    font-size: 1.6em;
    padding: 0 15px;
}

.page-index-review-tot88 .game-card p {
    color: var(--text-paragraph-dark);
    font-size: 0.95em;
    padding: 0 15px;
}

/* Module 4: Promotions */
.page-index-review-tot88 .section-promotions {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-index-review-tot88 .section-promotions h2 {
    color: var(--secondary-color);
}

.page-index-review-tot88 .section-promotions p {
    color: var(--text-paragraph);
    text-align: center;
    margin-bottom: 40px;
}

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

.page-index-review-tot88 .promo-card {
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

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

.page-index-review-tot88 .promo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2); /* Make icon slightly brighter on dark background */
}

.page-index-review-tot88 .promo-card h3 {
    color: var(--secondary-color);
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-index-review-tot88 .promo-card p {
    color: var(--text-paragraph);
    font-size: 0.95em;
    flex-grow: 1;
}

/* Module 5: Security & Customer Service */
.page-index-review-tot88 .section-security-support {
    padding: 60px 0;
    background-color: var(--background-light);
}

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

.page-index-review-tot88 .security-item {
    background-color: var(--card-background);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-tot88 .security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index-review-tot88 .security-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.page-index-review-tot88 .security-item h3 {
    color: var(--primary-color);
    font-size: 1.5em;
    margin-top: 15px;
}

.page-index-review-tot88 .security-item p {
    color: var(--text-paragraph-dark);
    font-size: 0.95em;
}

.page-index-review-tot88 .contact-info {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-index-review-tot88 .contact-info p {
    font-size: 1.1em;
    margin-bottom: 0;
    color: var(--text-light);
}

.page-index-review-tot88 .contact-info a {
    color: var(--secondary-color);
    font-weight: bold;
}

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

/* Module 6: FAQ */
.page-index-review-tot88 .section-faq {
    padding: 60px 0;
    background-color: var(--background-dark);
    color: var(--text-light);
}

.page-index-review-tot88 .section-faq h2 {
    color: var(--secondary-color);
}

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

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

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

.page-index-review-tot88 .faq-question:hover {
    background: #002e80; /* Slightly lighter primary */
    border-color: #002e80;
}

.page-index-review-tot88 .faq-question h3 {
    margin: 0;
    font-size: 1.3em;
    color: var(--text-light);
}

.page-index-review-tot88 .faq-toggle {
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.page-index-review-tot88 .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.page-index-review-tot88 .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    background: var(--background-light);
    color: var(--text-paragraph-dark);
    padding: 0 25px;
}

.page-index-review-tot88 .faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed for content */
    padding: 20px 25px;
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index-review-tot88 .faq-answer p {
    margin-bottom: 0;
    color: var(--text-paragraph-dark);
}

.page-index-review-tot88 .faq-answer a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Module 7: Blog */
.page-index-review-tot88 .section-blog {
    padding: 60px 0;
    background-color: var(--background-light);
}

.page-index-review-tot88 .section-blog p {
    text-align: center;
    margin-bottom: 40px;
}

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

.page-index-review-tot88 .blog-card {
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-index-review-tot88 .blog-card p {
    color: var(--text-paragraph-dark);
    font-size: 0.9em;
    padding: 0 15px 10px;
}

.page-index-review-tot88 .blog-date {
    display: block;
    font-size: 0.8em;
    color: #666;
    padding: 0 15px 15px;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-tot88 h1 {
        font-size: 2.8em;
    }
    .page-index-review-tot88 h2 {
        font-size: 2em;
    }
    .page-index-review-tot88 .hero-content {
        margin-top: -60px;
        padding: 15px;
    }
    .page-index-review-tot88 .hero-content p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .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.3em;
    }
    .page-index-review-tot88 .hero-section {
        padding: 40px 15px;
    }
    .page-index-review-tot88 .hero-content {
        margin-top: -40px;
        padding: 10px;
    }
    .page-index-review-tot88 .hero-image {
        margin-bottom: 20px;
    }
    .page-index-review-tot88 .cta-button {
        padding: 12px 30px;
        font-size: 16px;
        margin-top: 20px;
    }
    .page-index-review-tot88 .intro-grid, .page-index-review-tot88 .link-grid, .page-index-review-tot88 .games-carousel, .page-index-review-tot88 .promo-grid, .page-index-review-tot88 .security-grid, .page-index-review-tot88 .blog-grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-tot88 .quick-link-card {
        min-height: auto;
    }
    .page-index-review-tot88 .faq-question {
        padding: 15px 20px;
    }
    .page-index-review-tot88 .faq-question h3 {
        font-size: 1.1em;
    }
    .page-index-review-tot88 .faq-toggle {
        font-size: 20px;
    }
    .page-index-review-tot88 .faq-answer {
        padding: 0 20px;
    }
    .page-index-review-tot88 .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-index-review-tot88 .feature-img, .page-index-review-tot88 .link-img, .page-index-review-tot88 .promo-img, .page-index-review-tot88 .security-img {
        width: 80px;
        height: 80px;
    }
    .page-index-review-tot88 .contact-info {
        padding: 20px;
    }
    .page-index-review-tot88 .contact-info p {
        font-size: 1em;
    }
}

@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 .hero-content h1 {
        font-size: 2.5em;
    }
    .page-index-review-tot88 .hero-content p {
        font-size: 1em;
    }
    .page-index-review-tot88 .cta-button {
        padding: 10px 25px;
        font-size: 15px;
    }
    .page-index-review-tot88 .game-img {
        height: 160px;
    }
}