/* style/blog-shbet5-latest-features-overview.css */

/* Variables for colors */
:root {
    --shbet5-primary-color: #11A84E;
    --shbet5-secondary-color: #22C768;
    --shbet5-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --shbet5-card-bg: #11271B;
    --shbet5-background: #08160F;
    --shbet5-text-main: #F2FFF6;
    --shbet5-text-secondary: #A7D9B8;
    --shbet5-border-color: #2E7A4E;
    --shbet5-glow-color: #57E38D;
    --shbet5-gold-color: #F2C14E;
    --shbet5-divider-color: #1E3A2A;
    --shbet5-deep-green: #0A4B2C;
}

.page-blog-shbet5-latest-features-overview {
    background-color: var(--shbet5-background);
    color: var(--shbet5-text-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-shbet5-latest-features-overview__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px;
    text-align: center;
    background-color: var(--shbet5-deep-green);
    overflow: hidden;
}

.page-blog-shbet5-latest-features-overview__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
    display: block;
    margin-bottom: 30px;
}

.page-blog-shbet5-latest-features-overview__hero-content {
    max-width: 900px;
    z-index: 1;
    color: var(--shbet5-text-main);
}

.page-blog-shbet5-latest-features-overview__main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--shbet5-gold-color);
}

.page-blog-shbet5-latest-features-overview__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--shbet5-text-secondary);
}

.page-blog-shbet5-latest-features-overview__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--shbet5-button-gradient);
    color: var(--shbet5-text-main);
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-blog-shbet5-latest-features-overview__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-shbet5-latest-features-overview__cta-button--centered {
    margin: 30px auto 0 auto;
    display: block;
    width: fit-content;
}

.page-blog-shbet5-latest-features-overview__content-area {
    background-color: var(--shbet5-card-bg);
    padding: 60px 20px;
    color: var(--shbet5-text-main);
}

.page-blog-shbet5-latest-features-overview__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-blog-shbet5-latest-features-overview__section-title {
    font-size: 2.5rem;
    color: var(--shbet5-gold-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-blog-shbet5-latest-features-overview__sub-title {
    font-size: 1.8rem;
    color: var(--shbet5-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-blog-shbet5-latest-features-overview__paragraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--shbet5-text-secondary);
}

.page-blog-shbet5-latest-features-overview__keyword {
    color: var(--shbet5-glow-color);
    font-weight: bold;
}

.page-blog-shbet5-latest-features-overview__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-blog-shbet5-latest-features-overview__benefits-list,
.page-blog-shbet5-latest-features-overview__step-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-blog-shbet5-latest-features-overview__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: var(--shbet5-text-secondary);
}

.page-blog-shbet5-latest-features-overview__benefits-list .page-blog-shbet5-latest-features-overview__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--shbet5-glow-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.page-blog-shbet5-latest-features-overview__step-list .page-blog-shbet5-latest-features-overview__list-item::before {
    counter-increment: step-counter;
    content: counter(step-counter) '. ';
    position: absolute;
    left: 0;
    color: var(--shbet5-gold-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.page-blog-shbet5-latest-features-overview__faq-section {
    background-color: var(--shbet5-background);
    padding: 60px 20px;
    color: var(--shbet5-text-main);
}

.page-blog-shbet5-latest-features-overview__faq-list {
    margin-top: 40px;
}

.page-blog-shbet5-latest-features-overview__faq-item {
    background-color: var(--shbet5-card-bg);
    border: 1px solid var(--shbet5-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-shbet5-latest-features-overview__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--shbet5-text-main);
    background-color: var(--shbet5-deep-green);
    border-bottom: 1px solid var(--shbet5-divider-color);
    list-style: none;
}

.page-blog-shbet5-latest-features-overview__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-shbet5-latest-features-overview__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--shbet5-gold-color);
    margin-left: 15px;
}

.page-blog-shbet5-latest-features-overview__faq-answer {
    padding: 20px;
    font-size: 1rem;
    color: var(--shbet5-text-secondary);
    line-height: 1.7;
}

.page-blog-shbet5-latest-features-overview__cta-final-section {
    background-color: var(--shbet5-deep-green);
    padding: 60px 20px;
    text-align: center;
    color: var(--shbet5-text-main);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-shbet5-latest-features-overview__main-title {
        font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    }
    .page-blog-shbet5-latest-features-overview__section-title {
        font-size: 2rem;
    }
    .page-blog-shbet5-latest-features-overview__sub-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-blog-shbet5-latest-features-overview {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-blog-shbet5-latest-features-overview__hero-section {
        padding: 10px 15px 40px;
    }
    .page-blog-shbet5-latest-features-overview__hero-image {
        max-height: 300px;
        margin-bottom: 20px;
    }
    .page-blog-shbet5-latest-features-overview__main-title {
        font-size: clamp(1.5rem, 6vw, 2.5rem) !important;
        margin-bottom: 15px;
    }
    .page-blog-shbet5-latest-features-overview__intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-blog-shbet5-latest-features-overview__cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-blog-shbet5-latest-features-overview__cta-button--centered {
        margin: 20px auto 0 auto;
    }
    .page-blog-shbet5-latest-features-overview__content-area,
    .page-blog-shbet5-latest-features-overview__faq-section,
    .page-blog-shbet5-latest-features-overview__cta-final-section {
        padding: 40px 15px;
    }
    .page-blog-shbet5-latest-features-overview__container {
        padding: 0;
    }
    .page-blog-shbet5-latest-features-overview__section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    .page-blog-shbet5-latest-features-overview__sub-title {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-blog-shbet5-latest-features-overview__paragraph,
    .page-blog-shbet5-latest-features-overview__list-item,
    .page-blog-shbet5-latest-features-overview__faq-question,
    .page-blog-shbet5-latest-features-overview__faq-answer {
        font-size: 1rem;
    }
    .page-blog-shbet5-latest-features-overview__image-inline {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px auto !important;
    }
    .page-blog-shbet5-latest-features-overview__faq-question {
        padding: 15px;
    }
    .page-blog-shbet5-latest-features-overview__faq-toggle {
        font-size: 1.3rem;
    }
    .page-blog-shbet5-latest-features-overview__faq-answer {
        padding: 15px;
    }
    /* Mobile button group adaptation */
    .page-blog-shbet5-latest-features-overview__cta-buttons,
    .page-blog-shbet5-latest-features-overview__button-group,
    .page-blog-shbet5-latest-features-overview__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

/* Ensure images within content areas do not go below 200px */
.page-blog-shbet5-latest-features-overview__image-inline {
    min-width: 200px;
    min-height: 200px;
}

/* Contrast Fixes */
.page-blog-shbet5-latest-features-overview__dark-bg {
    color: var(--shbet5-text-main);
}

.page-blog-shbet5-latest-features-overview__light-bg {
    color: #333333; /* Ensuring contrast on light background */
    background-color: #ffffff; /* Example light background */
}

/* Ensure all text in content area is readable */
.page-blog-shbet5-latest-features-overview p,
.page-blog-shbet5-latest-features-overview li {
    color: var(--shbet5-text-secondary);
}

.page-blog-shbet5-latest-features-overview__section-title,
.page-blog-shbet5-latest-features-overview__main-title {
    color: var(--shbet5-gold-color);
}

.page-blog-shbet5-latest-features-overview__sub-title {
    color: var(--shbet5-secondary-color);
}