/* style/blog-responsible-gambling-guide.css */

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

/* Base styles for the page content, assuming a dark body background from shared.css */
.page-blog-responsible-gambling-guide {
    background-color: var(--sinlebet-background); /* Override for specific sections if needed, but body background is handled by shared */
    color: var(--sinlebet-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-blog-responsible-gambling-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-responsible-gambling-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px; /* Space for content below image */
    padding-top: 10px; /* Small top padding as body handles header offset */
    background-color: var(--sinlebet-deep-green); /* A darker green for the hero section background */
}

.page-blog-responsible-gambling-guide__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 40px;
}

.page-blog-responsible-gambling-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-blog-responsible-gambling-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-blog-responsible-gambling-guide__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--sinlebet-text-main);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-blog-responsible-gambling-guide__hero-description {
    font-size: 1.2rem;
    color: var(--sinlebet-text-secondary);
    margin-bottom: 30px;
}

.page-blog-responsible-gambling-guide__cta-button {
    display: inline-block;
    background: var(--sinlebet-button-gradient);
    color: var(--sinlebet-text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-blog-responsible-gambling-guide__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-responsible-gambling-guide__section {
    padding: 60px 0;
    background-color: var(--sinlebet-background); /* Default section background */
    color: var(--sinlebet-text-main);
}

.page-blog-responsible-gambling-guide__dark-section {
    background-color: var(--sinlebet-card-bg); /* A darker background for contrast */
}

.page-blog-responsible-gambling-guide__section-title {
    font-size: 2.5rem;
    color: var(--sinlebet-text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-blog-responsible-gambling-guide__sub-title {
    font-size: 1.8rem;
    color: var(--sinlebet-text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-blog-responsible-gambling-guide__text-block p {
    margin-bottom: 15px;
    color: var(--sinlebet-text-secondary);
}

.page-blog-responsible-gambling-guide__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-blog-responsible-gambling-guide__list-item {
    margin-bottom: 10px;
    color: var(--sinlebet-text-secondary);
}

.page-blog-responsible-gambling-guide__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

.page-blog-responsible-gambling-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.page-blog-responsible-gambling-guide__faq-section {
    background-color: var(--sinlebet-deep-green); /* Darker background for FAQ */
}

.page-blog-responsible-gambling-guide__faq-list {
    margin-top: 40px;
}

.page-blog-responsible-gambling-guide__faq-item {
    background-color: var(--sinlebet-card-bg);
    border: 1px solid var(--sinlebet-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-blog-responsible-gambling-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--sinlebet-text-main);
    cursor: pointer;
    background-color: var(--sinlebet-card-bg);
    list-style: none; /* For details summary */
}

.page-blog-responsible-gambling-guide__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome */
}

.page-blog-responsible-gambling-guide__faq-toggle {
    font-size: 1.5rem;
    color: var(--sinlebet-secondary);
    transition: transform 0.3s ease;
}

.page-blog-responsible-gambling-guide__faq-item[open] .page-blog-responsible-gambling-guide__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
}
.page-blog-responsible-gambling-guide__faq-item[open] .page-blog-responsible-gambling-guide__faq-question .page-blog-responsible-gambling-guide__faq-toggle {
    content: '−'; /* Change to minus sign */
}

.page-blog-responsible-gambling-guide__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: var(--sinlebet-text-secondary);
    line-height: 1.6;
}

/* Final CTA Section */
.page-blog-responsible-gambling-guide__final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--sinlebet-primary); /* Use primary brand color */
    color: #ffffff; /* White text for contrast */
}

.page-blog-responsible-gambling-guide__final-cta .page-blog-responsible-gambling-guide__section-title {
    color: #ffffff;
}

.page-blog-responsible-gambling-guide__final-cta .page-blog-responsible-gambling-guide__description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.page-blog-responsible-gambling-guide__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-blog-responsible-gambling-guide__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-blog-responsible-gambling-guide__section-title {
        font-size: 2rem;
    }
    .page-blog-responsible-gambling-guide__sub-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .page-blog-responsible-gambling-guide__hero-section {
        padding-bottom: 40px;
    }
    .page-blog-responsible-gambling-guide__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-blog-responsible-gambling-guide__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-blog-responsible-gambling-guide__hero-description {
        font-size: 1rem;
    }
    .page-blog-responsible-gambling-guide__section {
        padding: 40px 0;
    }
    .page-blog-responsible-gambling-guide__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-blog-responsible-gambling-guide__sub-title {
        font-size: 1.3rem;
    }
    .page-blog-responsible-gambling-guide__list {
        padding-left: 20px;
    }
    .page-blog-responsible-gambling-guide__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-blog-responsible-gambling-guide__faq-answer {
        font-size: 0.95rem;
        padding: 0 15px 15px;
    }
    .page-blog-responsible-gambling-guide__final-cta {
        padding: 60px 0;
    }
    .page-blog-responsible-gambling-guide__final-cta .page-blog-responsible-gambling-guide__description {
        font-size: 1rem;
    }
    .page-blog-responsible-gambling-guide__cta-button--large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Mobile specific overrides for images, videos, buttons, and containers */
    .page-blog-responsible-gambling-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-blog-responsible-gambling-guide__section,
    .page-blog-responsible-gambling-guide__container,
    .page-blog-responsible-gambling-guide__faq-list,
    .page-blog-responsible-gambling-guide__hero-content,
    .page-blog-responsible-gambling-guide__text-block,
    .page-blog-responsible-gambling-guide__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

    /* Buttons */
    .page-blog-responsible-gambling-guide__cta-button,
    .page-blog-responsible-gambling-guide__cta-button--large {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px; /* Add padding for text inside button */
        padding-right: 15px;
    }
    /* If multiple buttons were in a row, they should stack or wrap */
    .page-blog-responsible-gambling-guide__hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Space between description and button */
    }
    .page-blog-responsible-gambling-guide__final-cta .page-blog-responsible-gambling-guide__text-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

/* Color Contrast Check */
/* Assuming body background is dark (var(--sinlebet-background) or from shared.css) */
.page-blog-responsible-gambling-guide p,
.page-blog-responsible-gambling-guide li {
    color: var(--sinlebet-text-secondary); /* Ensure good contrast on dark backgrounds */
}

.page-blog-responsible-gambling-guide__cta-button {
    color: var(--sinlebet-text-main); /* Ensure button text is light on dark gradient */
}