.page-live-sicbo {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-live-sicbo__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background-color: #000000; /* Dark background for hero content overlay */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden;
}

.page-live-sicbo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly darken image to make text pop */
}

.page-live-sicbo__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    padding: 20px;
    z-index: 10;
}

.page-live-sicbo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-live-sicbo__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #FFFFFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-live-sicbo__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-live-sicbo__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-live-sicbo__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-live-sicbo__btn--register:hover {
    background-color: #F0F0F0;
    color: #000000;
}

.page-live-sicbo__btn--login {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-live-sicbo__btn--login:hover {
    background-color: #E0A030;
    color: #000000;
}

.page-live-sicbo__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-live-sicbo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-live-sicbo__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    margin: 10px auto 0;
}

.page-live-sicbo__subsection-title {
    font-size: 1.8em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-live-sicbo__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-live-sicbo__image-block {
    text-align: center;
    margin: 40px 0;
}

.page-live-sicbo__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-live-sicbo__image-caption {
    font-style: italic;
    color: #555555;
    margin-top: 10px;
    font-size: 0.9em;
}

.page-live-sicbo__feature-list,
.page-live-sicbo__steps-list,
.page-live-sicbo__bet-list,
.page-live-sicbo__tip-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-live-sicbo__feature-item,
.page-live-sicbo__step-item,
.page-live-sicbo__bet-item,
.page-live-sicbo__tip-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
}

.page-live-sicbo__feature-item strong,
.page-live-sicbo__step-item strong,
.page-live-sicbo__bet-item strong,
.page-live-sicbo__tip-item strong {
    color: #000000;
}

.page-live-sicbo__feature-item a,
.page-live-sicbo__step-item a,
.page-live-sicbo__faq-item a {
    color: #FCBC45;
    text-decoration: none;
}

.page-live-sicbo__feature-item a:hover,
.page-live-sicbo__step-item a:hover,
.page-live-sicbo__faq-item a:hover {
    text-decoration: underline;
}

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

.page-live-sicbo__advantage-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-live-sicbo__advantage-card:hover {
    transform: translateY(-5px);
}

.page-live-sicbo__advantage-icon {
    width: 200px; /* Enforce minimum size */
    height: 200px; /* Enforce minimum size */
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-live-sicbo__advantage-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 10px;
}

.page-live-sicbo__advantage-description {
    font-size: 1em;
    color: #555555;
}

.page-live-sicbo__cta-block {
    text-align: center;
    margin-top: 50px;
}

.page-live-sicbo__btn--join-now {
    background-color: #FCBC45;
    color: #000000;
    padding: 18px 40px;
    font-size: 1.2em;
    border: 2px solid #FCBC45;
}

.page-live-sicbo__btn--join-now:hover {
    background-color: #E0A030;
    color: #000000;
}

.page-live-sicbo__faq-list {
    margin-top: 30px;
}

.page-live-sicbo__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-live-sicbo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-live-sicbo__faq-question::after {
    content: '+';
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-live-sicbo__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-live-sicbo__faq-answer {
    font-size: 1em;
    color: #555555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-live-sicbo__faq-answer.active {
    max-height: 200px; /* Adjust as needed for content */
    margin-top: 10px;
}

.page-live-sicbo__cta-final-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-live-sicbo__cta-final-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-live-sicbo__cta-final-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.page-live-sicbo__btn--register-large {
    background-color: #FCBC45;
    color: #000000;
    padding: 20px 45px;
    font-size: 1.3em;
    border: 2px solid #FCBC45;
}

.page-live-sicbo__btn--register-large:hover {
    background-color: #E0A030;
    color: #000000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-live-sicbo__hero-title {
        font-size: 2.8em;
    }
    .page-live-sicbo__hero-description {
        font-size: 1.1em;
    }
    .page-live-sicbo__section-title {
        font-size: 2em;
    }
    .page-live-sicbo__subsection-title {
        font-size: 1.6em;
    }
    .page-live-sicbo__advantage-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-live-sicbo__hero-section {
        padding-top: var(--header-offset, 100px); /* Adjust for mobile header */
    }
    .page-live-sicbo__hero-content {
        padding: 15px;
    }
    .page-live-sicbo__hero-title {
        font-size: 2.2em;
    }
    .page-live-sicbo__hero-description {
        font-size: 1em;
    }
    .page-live-sicbo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-live-sicbo__btn {
        width: 100%;
        padding: 12px 20px;
    }
    .page-live-sicbo__container {
        padding: 30px 15px;
    }
    .page-live-sicbo__section-title {
        font-size: 1.8em;
    }
    .page-live-sicbo__subsection-title {
        font-size: 1.4em;
    }
    .page-live-sicbo__text-content,
    .page-live-sicbo__feature-item,
    .page-live-sicbo__step-item,
    .page-live-sicbo__bet-item,
    .page-live-sicbo__tip-item,
    .page-live-sicbo__advantage-description,
    .page-live-sicbo__faq-answer {
        font-size: 0.95em;
    }
    .page-live-sicbo__advantage-grid {
        grid-template-columns: 1fr;
    }
    .page-live-sicbo__cta-final-section {
        padding: 60px 15px;
    }
    .page-live-sicbo__cta-final-title {
        font-size: 2em;
    }
    .page-live-sicbo__cta-final-description {
        font-size: 1em;
    }

    /* Ensure content images do not overflow on mobile */
    .page-live-sicbo__content-image, .page-live-sicbo__advantage-icon {
        max-width: 100%;
        height: auto;
    }
}