/* style/blog-omo88-official-homepage-features.css */

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

.page-blog-omo88-official-homepage-features {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color-page);
}

.page-blog-omo88-official-homepage-features__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding for first section */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-blog-omo88-official-homepage-features__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-omo88-official-homepage-features__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.page-blog-omo88-official-homepage-features__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

.page-blog-omo88-official-homepage-features__main-title {
    font-size: clamp(2em, 4vw, 3.5em);
    font-weight: 700;
    color: var(--text-color-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-blog-omo88-official-homepage-features__description {
    font-size: 1.1em;
    color: var(--text-color-light);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-blog-omo88-official-homepage-features__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-blog-omo88-official-homepage-features__cta-buttons--center {
    justify-content: center;
}

.page-blog-omo88-official-homepage-features__btn-primary,
.page-blog-omo88-official-homepage-features__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    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;
    max-width: 100%;
}

.page-blog-omo88-official-homepage-features__btn-primary {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--primary-color);
}

.page-blog-omo88-official-homepage-features__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-blog-omo88-official-homepage-features__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-blog-omo88-official-homepage-features__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-blog-omo88-official-homepage-features__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-blog-omo88-official-homepage-features__section {
    padding: 60px 0;
    width: 100%;
    box-sizing: border-box;
}

.page-blog-omo88-official-homepage-features__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-omo88-official-homepage-features__section-title {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.page-blog-omo88-official-homepage-features__subsection-title {
    font-size: 1.8em;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-blog-omo88-official-homepage-features__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-blog-omo88-official-homepage-features__feature-grid,
.page-blog-omo88-official-homepage-features__game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-omo88-official-homepage-features__feature-card,
.page-blog-omo88-official-homepage-features__game-card {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-blog-omo88-official-homepage-features__feature-card:hover,
.page-blog-omo88-official-homepage-features__game-card:hover {
    transform: translateY(-5px);
}

.page-blog-omo88-official-homepage-features__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-blog-omo88-official-homepage-features__card-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-blog-omo88-official-homepage-features__card-title a:hover {
    text-decoration: underline;
}

.page-blog-omo88-official-homepage-features__promo-list,
.page-blog-omo88-official-homepage-features__step-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 30px;
    padding: 0;
}

.page-blog-omo88-official-homepage-features__promo-list li,
.page-blog-omo88-official-homepage-features__step-list li {
    margin-bottom: 10px;
}

.page-blog-omo88-official-homepage-features__text-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-blog-omo88-official-homepage-features__text-link:hover {
    text-decoration: underline;
}

.page-blog-omo88-official-homepage-features__faq-list {
    margin-top: 40px;
}

.page-blog-omo88-official-homepage-features__faq-item {
    background-color: var(--secondary-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-omo88-official-homepage-features__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: var(--text-color-dark);
    transition: background-color 0.3s ease;
    list-style: none;
}

.page-blog-omo88-official-homepage-features__faq-question:hover {
    background-color: #f0f0f0;
}

.page-blog-omo88-official-homepage-features__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--primary-color);
    margin-left: 15px;
}

.page-blog-omo88-official-homepage-features__faq-item[open] > .page-blog-omo88-official-homepage-features__faq-question {
    background-color: #f0f0f0;
}

.page-blog-omo88-official-homepage-features__faq-item[open] > .page-blog-omo88-official-homepage-features__faq-question .page-blog-omo88-official-homepage-features__faq-toggle {
    content: '−';
}

.page-blog-omo88-official-homepage-features__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1em;
    color: var(--text-color-dark);
}

.page-blog-omo88-official-homepage-features__faq-answer p {
    margin-bottom: 0;
}

/* Color Contrast System */
.page-blog-omo88-official-homepage-features__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-color-light);
}

.page-blog-omo88-official-homepage-features__dark-bg .page-blog-omo88-official-homepage-features__section-title,
.page-blog-omo88-official-homepage-features__dark-bg .page-blog-omo88-official-homepage-features__subsection-title {
    color: var(--text-color-light);
}

.page-blog-omo88-official-homepage-features__dark-bg .page-blog-omo88-official-homepage-features__text-link {
    color: var(--secondary-color);
}

.page-blog-omo88-official-homepage-features__light-bg {
    background-color: var(--background-color-page);
    color: var(--text-color-dark);
}

.page-blog-omo88-official-homepage-features__light-bg .page-blog-omo88-official-homepage-features__card-title a {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-omo88-official-homepage-features__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
}

@media (max-width: 768px) {
    .page-blog-omo88-official-homepage-features {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-omo88-official-homepage-features__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-omo88-official-homepage-features__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-blog-omo88-official-homepage-features__main-title {
        font-size: 2.2em;
        margin-top: 20px;
    }

    .page-blog-omo88-official-homepage-features__description {
        font-size: 1em;
    }

    .page-blog-omo88-official-homepage-features__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-omo88-official-homepage-features__btn-primary,
    .page-blog-omo88-official-homepage-features__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-omo88-official-homepage-features__section {
        padding: 40px 0;
    }

    .page-blog-omo88-official-homepage-features__content-area {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-omo88-official-homepage-features__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .page-blog-omo88-official-homepage-features__subsection-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-omo88-official-homepage-features__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto !important;
    }

    .page-blog-omo88-official-homepage-features__feature-grid,
    .page-blog-omo88-official-homepage-features__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-omo88-official-homepage-features__feature-card,
    .page-blog-omo88-official-homepage-features__game-card {
        padding: 25px;
    }

    .page-blog-omo88-official-homepage-features__card-title {
        font-size: 1.2em;
    }

    .page-blog-omo88-official-homepage-features__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-omo88-official-homepage-features__faq-answer {
        padding: 0 15px 15px 15px;
    }
    .page-blog-omo88-official-homepage-features img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-blog-omo88-official-homepage-features__section,
    .page-blog-omo88-official-homepage-features__card,
    .page-blog-omo88-official-homepage-features__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Ensure summary marker is hidden */
.page-blog-omo88-official-homepage-features__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-blog-omo88-official-homepage-features__faq-item summary {
    list-style: none;
}