/* style/index-review-lucky88.css */
:root {
    --primary-color: #001F3F; /* Navy Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-color-dark-bg: #ffffff;
    --text-color-light-bg: #333333;
    --background-color-body: #0a0a0a; /* From shared.css */
    --card-background: #ffffff;
    --border-color: #e0e0e0;
    --link-color: #007bff;
    --link-hover-color: #0056b3;
}

.page-index-review-lucky88 {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark-bg); /* Default text color for dark body background */
    background-color: var(--background-color-body);
}

/* Ensure page content is not hidden by fixed header */
.page-index-review-lucky88__hero-section {
    padding-top: 180px; /* Desktop: Adjust based on fixed header height */
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    overflow: hidden;
}

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

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

.page-index-review-lucky88__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

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

.page-index-review-lucky88__main-title a {
    color: var(--secondary-color);
    text-decoration: none;
}

.page-index-review-lucky88__main-title a:hover {
    text-decoration: underline;
}

.page-index-review-lucky88__hero-description {
    font-size: 1.3em;
    color: var(--text-color-dark-bg);
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-index-review-lucky88__hero-description a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-index-review-lucky88__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--secondary-color), #DAA520);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
}

.page-index-review-lucky88__cta-button:hover {
    background: linear-gradient(135deg, #DAA520, var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-index-review-lucky88__button-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content; /* Or a fixed max-width */
}

.page-index-review-lucky88__content-section {
    padding: 60px 20px;
    background: var(--background-color-body);
}

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

.page-index-review-lucky88__card {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    padding: 40px;
    color: var(--text-color-light-bg); /* Text color for light card background */
}

.page-index-review-lucky88__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.page-index-review-lucky88__section-title a,
.page-index-review-lucky88__sub-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-lucky88__section-title a:hover,
.page-index-review-lucky88__sub-title a:hover {
    text-decoration: underline;
}

.page-index-review-lucky88__sub-title {
    font-size: 1.6em;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
}

.page-index-review-lucky88__card p {
    margin-bottom: 18px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-index-review-lucky88__card p a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-lucky88__card p a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.page-index-review-lucky88__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-index-review-lucky88__list li {
    margin-bottom: 10px;
    color: var(--text-color-light-bg);
}

.page-index-review-lucky88__list li strong {
    color: var(--primary-color);
}

.page-index-review-lucky88__list li a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-lucky88__list li a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.page-index-review-lucky88__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* FAQ Styles */
.page-index-review-lucky88__faq-list {
    margin-top: 40px;
}

.page-index-review-lucky88__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-index-review-lucky88__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-index-review-lucky88__faq-item.active .page-index-review-lucky88__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: #f9f9f9;
    border-radius: 0 0 5px 5px;
    color: var(--text-color-light-bg);
}

.page-index-review-lucky88__faq-answer p {
    color: var(--text-color-light-bg);
    margin-bottom: 0;
}

.page-index-review-lucky88__faq-answer p a {
    color: var(--link-color);
    text-decoration: none;
    font-weight: bold;
}

.page-index-review-lucky88__faq-answer p a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.page-index-review-lucky88__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--card-background);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

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

.page-index-review-lucky88__faq-question:active {
    background: #eeeeee;
}

.page-index-review-lucky88__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--primary-color);
}

.page-index-review-lucky88__faq-question h3 a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-index-review-lucky88__faq-question h3 a:hover {
    text-decoration: underline;
}

.page-index-review-lucky88__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #666;
    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-lucky88__faq-item.active .page-index-review-lucky88__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg); /* Rotate to form an 'X' or 'minus' sign */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-index-review-lucky88__main-title {
        font-size: 2.5em;
    }
    .page-index-review-lucky88__hero-description {
        font-size: 1.1em;
    }
    .page-index-review-lucky88__section-title {
        font-size: 1.8em;
    }
    .page-index-review-lucky88__sub-title {
        font-size: 1.4em;
    }
    .page-index-review-lucky88__card {
        padding: 30px;
    }
    .page-index-review-lucky88__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-index-review-lucky88__hero-section {
        padding-top: 160px !important; /* Mobile: Adjust based on mobile fixed header height */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-index-review-lucky88__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-index-review-lucky88__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .page-index-review-lucky88__cta-button {
        padding: 10px 25px;
        font-size: 0.9em;
    }

    .page-index-review-lucky88__content-section {
        padding: 30px 15px;
    }

    .page-index-review-lucky88__container,
    .page-index-review-lucky88__card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-index-review-lucky88__card {
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .page-index-review-lucky88__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }

    .page-index-review-lucky88__sub-title {
        font-size: 1.2em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

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

    .page-index-review-lucky88__list {
        margin-left: 20px;
        font-size: 0.95em;
    }

    .page-index-review-lucky88__image-full-width {
        margin: 20px 0;
        border-radius: 6px;
    }

    .page-index-review-lucky88 img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-index-review-lucky88__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-index-review-lucky88__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-index-review-lucky88__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-index-review-lucky88__faq-answer {
        padding: 0 15px;
    }
    
    .page-index-review-lucky88__faq-item.active .page-index-review-lucky88__faq-answer {
        padding: 15px !important;
    }
}