/* style/index-review-hi-88.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #2F4F4F; /* Dark Slate Gray */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f5f5f5;
    --background-dark: #1a1a1a;
    --accent-color: #DC143C; /* Crimson for highlights */
    --border-color: #e0e0e0;
}

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

.page-index-review-hi-88__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.page-index-review-hi-88__section:last-of-type {
    border-bottom: none;
}

.page-index-review-hi-88 h1,
.page-index-review-hi-88 h2,
.page-index-review-hi-88 h3,
.page-index-review-hi-88 h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-index-review-hi-88 h1 {
    font-size: 3em;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-review-hi-88 h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

.page-index-review-hi-88 h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-index-review-hi-88 p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

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

.page-index-review-hi-88__hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3a5e5e 100%);
    color: var(--text-light);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.page-index-review-hi-88__hero-content {
    max-width: 900px;
    z-index: 2;
}

.page-index-review-hi-88__hero h1 {
    color: var(--primary-color);
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.page-index-review-hi-88__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-index-review-hi-88__hero-image {
    width: 100%;
    max-width: 1000px;
    margin-top: 30px;
}

.page-index-review-hi-88__hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-index-review-hi-88__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-index-review-hi-88__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
}

.page-index-review-hi-88__cta-button:hover {
    background-color: var(--accent-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.page-index-review-hi-88__cta-button--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.page-index-review-hi-88__cta-button--secondary:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--accent-color);
}

.page-index-review-hi-88__overview {
    background-color: var(--background-light);
}

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

.page-index-review-hi-88__feature-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-review-hi-88__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-index-review-hi-88__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-index-review-hi-88__feature-item h3 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-top: 0;
}

.page-index-review-hi-88__games {
    background-color: #fcfcfc;
}

.page-index-review-hi-88__game-category {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-index-review-hi-88__game-category h3 {
    color: var(--primary-color);
    font-size: 2em;
    margin-top: 0;
}

.page-index-review-hi-88__game-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-index-review-hi-88__link-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
}

.page-index-review-hi-88__promotions {
    background-color: var(--background-light);
}

.page-index-review-hi-88__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-index-review-hi-88__promo-list li {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.page-index-review-hi-88__promo-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
    object-fit: contain;
}

.page-index-review-hi-88__promo-list h4 {
    font-size: 1.3em;
    color: var(--secondary-color);
    margin-top: 0;
}

.page-index-review-hi-88__text-center {
    text-align: center;
    margin-top: 40px;
}

.page-index-review-hi-88__promo-note {
    margin-top: 20px;
    font-style: italic;
    color: var(--text-dark);
}

.page-index-review-hi-88__promo-block {
    background-color: var(--secondary-color);
    color: var(--text-light);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
}

.page-index-review-hi-88__promo-block p {
    color: var(--text-light);
    font-size: 1.1em;
}

.page-index-review-hi-88__promo-block a {
    color: var(--primary-color);
    font-weight: bold;
}

.page-index-review-hi-88__registration, .page-index-review-hi-88__support, .page-index-review-hi-88__comparison {
    background-color: #fcfcfc;
}

.page-index-review-hi-88__step-list, .page-index-review-hi-88__payment-list, .page-index-review-hi-88__contact-list, .page-index-review-hi-88__bullet-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-index-review-hi-88__step-list li,
.page-index-review-hi-88__payment-list li,
.page-index-review-hi-88__contact-list li,
.page-index-review-hi-88__bullet-list li {
    background-color: #ffffff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-index-review-hi-88__step-list li:before,
.page-index-review-hi-88__bullet-list li:before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

.page-index-review-hi-88__payment-list li:before {
    content: '💳'; /* Credit card emoji */
    font-size: 1.2em;
}

.page-index-review-hi-88__contact-list li:before {
    content: '📞'; /* Phone emoji */
    font-size: 1.2em;
}

.page-index-review-hi-88__step-list h4 {
    color: var(--secondary-color);
    margin: 0;
    font-size: 1.2em;
}

.page-index-review-hi-88__step-list p {
    margin: 5px 0 0;
    font-size: 1em;
}

.page-index-review-hi-88__faq {
    background-color: var(--background-light);
}

.page-index-review-hi-88__faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

/* FAQ default state - answer hidden */
.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 20px;
    background: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

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

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

.page-index-review-hi-88__conclusion {
    background-color: var(--secondary-color);
    color: var(--text-light);
    text-align: center;
    padding: 80px 20px;
}

.page-index-review-hi-88__conclusion h2 {
    color: var(--primary-color);
    font-size: 2.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-review-hi-88__conclusion p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 25px;
}

.page-index-review-hi-88__conclusion a {
    color: var(--primary-color);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-hi-88__hero h1 {
        font-size: 3em;
    }
    .page-index-review-hi-88 h2 {
        font-size: 2em;
    }
    .page-index-review-hi-88 h3 {
        font-size: 1.6em;
    }
    .page-index-review-hi-88__section {
        padding: 50px 15px;
    }
}

@media (max-width: 768px) {
    .page-index-review-hi-88__hero {
        flex-direction: column;
        padding: 60px 15px;
    }
    .page-index-review-hi-88__hero h1 {
        font-size: 2.5em;
    }
    .page-index-review-hi-88__hero p {
        font-size: 1em;
    }
    .page-index-review-hi-88__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-index-review-hi-88__cta-button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }
    .page-index-review-hi-88 h2 {
        font-size: 1.8em;
    }
    .page-index-review-hi-88 h3 {
        font-size: 1.4em;
    }
    .page-index-review-hi-88 p {
        font-size: 0.95em;
    }
    .page-index-review-hi-88__features-grid,
    .page-index-review-hi-88__promo-list {
        grid-template-columns: 1fr;
    }
    .page-index-review-hi-88__game-category h3 {
        font-size: 1.8em;
    }
    .faq-question {
        padding: 12px 15px;
    }
    .faq-question h3 {
        font-size: 1em;
    }
    .faq-toggle {
        font-size: 20px;
    }
    .faq-answer {
        padding: 15px;
    }
    .page-index-review-hi-88__conclusion h2 {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-index-review-hi-88__hero h1 {
        font-size: 2em;
    }
    .page-index-review-hi-88 h2 {
        font-size: 1.6em;
    }
    .page-index-review-hi-88__section {
        padding: 30px 10px;
    }
    .page-index-review-hi-88__game-category h3 {
        font-size: 1.5em;
    }
}