/* style/blog-i9bet58-latest-promotions-revealed.css */

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-color-dark: #333333;
    --text-color-light: #FFFFFF;
    --accent-color-login: #EA7C07;
    --background-color-page: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-blog-i9bet58-latest-promotions-revealed {
    color: var(--text-color-dark); /* Default text color for light background */
    background-color: var(--background-color-page);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-i9bet58-latest-promotions-revealed__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    background-color: var(--primary-color);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-blog-i9bet58-latest-promotions-revealed__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-i9bet58-latest-promotions-revealed__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-blog-i9bet58-latest-promotions-revealed__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color-light);
}

.page-blog-i9bet58-latest-promotions-revealed__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-color-light);
}

.page-blog-i9bet58-latest-promotions-revealed__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-blog-i9bet58-latest-promotions-revealed__btn-primary,
.page-blog-i9bet58-latest-promotions-revealed__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-blog-i9bet58-latest-promotions-revealed__btn-primary {
    background-color: var(--accent-color-login);
    color: var(--text-color-light);
    border: 2px solid var(--accent-color-login);
}

.page-blog-i9bet58-latest-promotions-revealed__btn-primary:hover {
    background-color: darken(var(--accent-color-login), 10%);
    border-color: darken(var(--accent-color-login), 10%);
}

.page-blog-i9bet58-latest-promotions-revealed__btn-secondary {
    background-color: transparent;
    color: var(--text-color-light);
    border: 2px solid var(--text-color-light);
}

.page-blog-i9bet58-latest-promotions-revealed__btn-secondary:hover {
    background-color: var(--text-color-light);
    color: var(--primary-color);
}

.page-blog-i9bet58-latest-promotions-revealed__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-blog-i9bet58-latest-promotions-revealed__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-blog-i9bet58-latest-promotions-revealed__section-title {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

.page-blog-i9bet58-latest-promotions-revealed__sub-section-title {
    font-size: 1.8rem;
    color: var(--text-color-dark);
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-blog-i9bet58-latest-promotions-revealed__paragraph {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.page-blog-i9bet58-latest-promotions-revealed__card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-blog-i9bet58-latest-promotions-revealed__card {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    color: var(--text-color-dark);
}

.page-blog-i9bet58-latest-promotions-revealed__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-i9bet58-latest-promotions-revealed__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-blog-i9bet58-latest-promotions-revealed__card-title {
    font-size: 1.4rem;
    font-weight: 600;
    padding: 15px 20px 10px;
    color: var(--primary-color);
}

.page-blog-i9bet58-latest-promotions-revealed__card-description {
    font-size: 1rem;
    padding: 0 20px 15px;
    flex-grow: 1;
}

.page-blog-i9bet58-latest-promotions-revealed__card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 10px 15px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-blog-i9bet58-latest-promotions-revealed__card-button:hover {
    background-color: darken(var(--primary-color), 10%);
}

.page-blog-i9bet58-latest-promotions-revealed__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-color-dark);
}

.page-blog-i9bet58-latest-promotions-revealed__list-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.page-blog-i9bet58-latest-promotions-revealed__flex-group {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-blog-i9bet58-latest-promotions-revealed__flex-group--reverse {
    flex-direction: row-reverse;
}

.page-blog-i9bet58-latest-promotions-revealed__image-wrapper {
    flex: 1;
    min-width: 300px;
}

.page-blog-i9bet58-latest-promotions-revealed__text-wrapper {
    flex: 2;
}

.page-blog-i9bet58-latest-promotions-revealed__content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
}

/* FAQ Section */
.page-blog-i9bet58-latest-promotions-revealed__faq-section {
    margin-top: 60px;
    margin-bottom: 40px;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-list {
    margin-top: 30px;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-color-dark);
}

.page-blog-i9bet58-latest-promotions-revealed__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-item[open] > .page-blog-i9bet58-latest-promotions-revealed__faq-question {
    background-color: #f0f0f0;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-qtext {
    flex-grow: 1;
}

.page-blog-i9bet58-latest-promotions-revealed__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-blog-i9bet58-latest-promotions-revealed__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color-dark);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-i9bet58-latest-promotions-revealed {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-i9bet58-latest-promotions-revealed__hero-section {
        padding: 10px 15px 40px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__hero-content {
        padding: 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__btn-primary,
    .page-blog-i9bet58-latest-promotions-revealed__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-i9bet58-latest-promotions-revealed__content-area {
        padding: 20px 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__section-title {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__sub-section-title {
        font-size: 1.5rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__paragraph {
        font-size: 1rem;
    }

    .page-blog-i9bet58-latest-promotions-revealed__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__flex-group {
        flex-direction: column;
        gap: 20px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__flex-group--reverse {
        flex-direction: column;
    }

    .page-blog-i9bet58-latest-promotions-revealed__image-wrapper {
        min-width: unset;
        width: 100%;
    }

    .page-blog-i9bet58-latest-promotions-revealed__content-image,
    .page-blog-i9bet58-latest-promotions-revealed__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-i9bet58-latest-promotions-revealed__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-blog-i9bet58-latest-promotions-revealed__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    .page-blog-i9bet58-latest-promotions-revealed__section,
    .page-blog-i9bet58-latest-promotions-revealed__card,
    .page-blog-i9bet58-latest-promotions-revealed__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-i9bet58-latest-promotions-revealed__hero-section {
        padding-top: 10px !important; 
    }
    
    .page-blog-i9bet58-latest-promotions-revealed__cta-buttons {
        overflow: hidden !important;
    }
}

/* Ensure images do not use filter */
.page-blog-i9bet58-latest-promotions-revealed img:not(.page-blog-i9bet58-latest-promotions-revealed__hero-image) {
    filter: none; 
}