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

:root {
    --primary-color: #1A202C; /* Deep Charcoal */
    --secondary-color: #FFD700; /* Gold */
    --text-light: #F0F0F0; /* Light Gray for text on dark backgrounds */
    --text-dark: #333333; /* Dark Gray for text on light backgrounds */
    --background-dark: #1A202C;
    --background-light: #FFFFFF;
    --accent-dark: #FFC107; /* Slightly darker gold for hover */
    --border-color: #3A404C;
}

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

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

.page-index-review-go88__hero {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #2D3748);
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid var(--secondary-color);
}

.page-index-review-go88__hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-light);
}

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

.page-index-review-go88__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #CCCCCC;
}

.page-index-review-go88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-review-go88__cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-review-go88__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-go88__section:last-of-type {
    border-bottom: none;
}

.page-index-review-go88__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-index-review-go88__section h3 {
    font-size: 1.8em;
    color: var(--text-light);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.page-index-review-go88__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-review-go88__section ul,
.page-index-review-go88__section ol {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-index-review-go88__section ol {
    list-style-type: decimal;
}

.page-index-review-go88__section li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-index-review-go88__section strong {
    color: var(--secondary-color);
}

.page-index-review-go88__image-full-width {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

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

.page-index-review-go88__game-card {
    background-color: #2D3748;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-index-review-go88__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-index-review-go88__game-image {
    width: 100%;
    height: 200px; /* Ensure images are not small icons */
    object-fit: cover;
    border-bottom: 3px solid var(--secondary-color);
}

.page-index-review-go88__game-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin: 20px 15px 10px 15px;
    min-height: 48px; /* Ensure consistent height for titles */
}

.page-index-review-go88__game-description {
    font-size: 0.95em;
    color: #B0B0B0;
    padding: 0 15px 20px 15px;
    flex-grow: 1;
}

.page-index-review-go88__card-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.page-index-review-go88__card-button:hover {
    background-color: var(--accent-dark);
}

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

.page-index-review-go88 a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.page-index-review-go88 .highlight {
    color: var(--secondary-color);
}

/* FAQ Section Styling */
.page-index-review-go88__faq {
    background-color: #2D3748;
    padding: 60px 0;
}

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

.page-index-review-go88__faq .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(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-index-review-go88__faq .faq-question:hover {
    background: #2D3748;
}

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

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

.page-index-review-go88__faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: #3A404C;
    color: #E0E0E0;
    border-radius: 0 0 8px 8px;
}

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

.page-index-review-go88__faq .faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-go88__hero-title {
        font-size: 2.8em;
    }
    .page-index-review-go88__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-index-review-go88__hero {
        padding: 60px 0;
    }
    .page-index-review-go88__hero-title {
        font-size: 2.2em;
    }
    .page-index-review-go88__hero-description {
        font-size: 1em;
    }
    .page-index-review-go88__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-index-review-go88__section {
        padding: 40px 0;
    }
    .page-index-review-go88__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-index-review-go88__section h3 {
        font-size: 1.5em;
    }
    .page-index-review-go88__section p,
    .page-index-review-go88__section li {
        font-size: 0.95em;
    }
    .page-index-review-go88__game-grid {
        grid-template-columns: 1fr;
    }
    .page-index-review-go88__game-image {
        height: 180px;
    }
    .page-index-review-go88__faq .faq-question {
        padding: 15px 20px;
    }
    .page-index-review-go88__faq .faq-question h3 {
        font-size: 1.1em;
    }
    .page-index-review-go88__faq .faq-toggle {
        font-size: 20px;
    }
    .page-index-review-go88__faq .faq-answer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-index-review-go88__hero-title {
        font-size: 1.8em;
    }
    .page-index-review-go88__section-title {
        font-size: 1.5em;
    }
}