/* style/blog-how-to-play-popular-games-on-shbet5-app.css */

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

    /* General text colors for contrast based on body background (assuming dark from shbet5-bg-main) */
    --text-on-dark: var(--shbet5-text-main);
    --text-on-light: #333333; /* Fallback for light backgrounds */
}

.page-blog-how-to-play-popular-games-on-shbet5-app {
    font-family: 'Arial', sans-serif;
    color: var(--text-on-dark); /* Default text color for the page content */
    background-color: var(--shbet5-bg-main); /* Assuming body background is handled by shared, this is for main sections */
    line-height: 1.6;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-how-to-play-popular-games-on-shbet5-app__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--shbet5-bg-main);
    color: var(--shbet5-text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 20px;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size */
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--shbet5-gold); /* Using gold for main title */
    letter-spacing: 1px;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--shbet5-text-secondary);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: var(--shbet5-button-gradient);
    color: #ffffff; /* Ensure white text on green gradient */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__cta-button--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Sections */
.page-blog-how-to-play-popular-games-on-shbet5-app__introduction-section,
.page-blog-how-to-play-popular-games-on-shbet5-app__getting-started-section,
.page-blog-how-to-play-popular-games-on-shbet5-app__games-section,
.page-blog-how-to-play-popular-games-on-shbet5-app__optimization-section,
.page-blog-how-to-play-popular-games-on-shbet5-app__faq-section,
.page-blog-how-to-play-popular-games-on-shbet5-app__conclusion-section {
    padding: 60px 0;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__introduction-section.page-blog-how-to-play-popular-games-on-shbet5-app__light-bg,
.page-blog-how-to-play-popular-games-on-shbet5-app__games-section.page-blog-how-to-play-popular-games-on-shbet5-app__light-bg,
.page-blog-how-to-play-popular-games-on-shbet5-app__faq-section.page-blog-how-to-play-popular-games-on-shbet5-app__light-bg {
    background-color: var(--shbet5-card-bg); /* Using card bg for light sections */
    color: var(--shbet5-text-main);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__getting-started-section.page-blog-how-to-play-popular-games-on-shbet5-app__dark-bg,
.page-blog-how-to-play-popular-games-on-shbet5-app__optimization-section.page-blog-how-to-play-popular-games-on-shbet5-app__dark-bg {
    background-color: var(--shbet5-deep-green); /* Using deep green for dark sections */
    color: var(--shbet5-text-main);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__conclusion-section.page-blog-how-to-play-popular-games-on-shbet5-app__medium-bg {
    background-color: var(--shbet5-primary); /* Using primary for medium sections */
    color: var(--shbet5-text-main);
    text-align: center;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: var(--shbet5-gold);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__sub-section-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--shbet5-secondary);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__content-block p {
    margin-bottom: 1em;
    font-size: 1.05em;
    color: var(--shbet5-text-main);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--shbet5-border);
}

/* FAQ Section */
.page-blog-how-to-play-popular-games-on-shbet5-app__faq-list {
    margin-top: 30px;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-item {
    background-color: var(--shbet5-deep-green); /* Darker background for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--shbet5-border);
    color: var(--shbet5-text-main);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    background-color: var(--shbet5-deep-green);
    color: var(--shbet5-text-main);
    transition: background-color 0.3s ease;
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-question:hover {
    background-color: var(--shbet5-divider);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--shbet5-secondary);
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-item[open] .page-blog-how-to-play-popular-games-on-shbet5-app__faq-toggle {
    content: "−"; /* Changed by JS, but good to have fallback */
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-answer {
    padding: 0 20px 20px;
    font-size: 1em;
    color: var(--shbet5-text-secondary);
}

/* Details element specific styling */
.page-blog-how-to-play-popular-games-on-shbet5-app__faq-item summary {
    list-style: none; /* Remove default marker */
}

.page-blog-how-to-play-popular-games-on-shbet5-app__faq-item summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit browsers */
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-blog-how-to-play-popular-games-on-shbet5-app__container {
        padding: 0 15px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__hero-section {
        padding-bottom: 30px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__main-title {
        font-size: 2em;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__subtitle {
        font-size: 1em;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__cta-button,
    .page-blog-how-to-play-popular-games-on-shbet5-app__cta-button--large {
        padding: 12px 20px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__section-title {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__sub-section-title {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__introduction-section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__getting-started-section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__games-section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__optimization-section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__faq-section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__conclusion-section {
        padding: 40px 0;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-blog-how-to-play-popular-games-on-shbet5-app__section,
    .page-blog-how-to-play-popular-games-on-shbet5-app__card,
    .page-blog-how-to-play-popular-games-on-shbet5-app__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__hero-section {
        padding-top: 10px !important; /* body already handles --header-offset, this is for visual spacing */
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__faq-question {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-how-to-play-popular-games-on-shbet5-app__faq-answer {
        padding: 0 15px 15px;
    }
}