/* style/blog-online-betting-safety-guide.css */
/* Body padding-top is handled by shared.css: body { padding-top: var(--header-offset); } */

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

.page-blog-online-betting-safety-guide {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--background-color);
}

/* Hero Section */
.page-blog-online-betting-safety-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
    background-color: var(--background-color);
    overflow: hidden;
}

.page-blog-online-betting-safety-guide__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 40px; /* Space between image and text content */
}

.page-blog-online-betting-safety-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px; /* Limit height for aesthetic */
    min-width: 200px;
    min-height: 200px;
}

.page-blog-online-betting-safety-guide__hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-blog-online-betting-safety-guide__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 20px;
}

.page-blog-online-betting-safety-guide__description {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.page-blog-online-betting-safety-guide__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: var(--button-gradient); /* Custom button color */
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-blog-online-betting-safety-guide__cta-button:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-blog-online-betting-safety-guide__cta-button--large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Content Area */
.page-blog-online-betting-safety-guide__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    background-color: var(--background-color);
    color: var(--text-main);
    line-height: 1.7;
}

.page-blog-online-betting-safety-guide__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 30px;
    text-align: center;
    padding-top: 40px;
}

.page-blog-online-betting-safety-guide__section-title--light {
    color: var(--text-main);
}

.page-blog-online-betting-safety-guide__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-blog-online-betting-safety-guide p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-blog-online-betting-safety-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* CTA Wrapper */
.page-blog-online-betting-safety-guide__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/* FAQ Section */
.page-blog-online-betting-safety-guide__faq-section {
    background-color: var(--card-bg); /* Custom Card BG color */
    padding: 60px 20px;
    color: var(--text-main);
    text-align: center;
}

.page-blog-online-betting-safety-guide__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}

.page-blog-online-betting-safety-guide__faq-item {
    background-color: var(--background-color); /* Use darker background for FAQ item */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color); /* Custom border color */
}

.page-blog-online-betting-safety-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    background-color: var(--background-color);
    list-style: none; /* For details/summary */
    -webkit-tap-highlight-color: transparent; /* Prevent blue highlight on tap */
}

.page-blog-online-betting-safety-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-online-betting-safety-guide__faq-qtext {
    flex-grow: 1;
}

.page-blog-online-betting-safety-guide__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-blog-online-betting-safety-guide__faq-item[open] .page-blog-online-betting-safety-guide__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to form an X or minus */
}

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

/* Conclusion Section */
.page-blog-online-betting-safety-guide__conclusion-section {
    padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-blog-online-betting-safety-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-online-betting-safety-guide__hero-section {
        padding: 10px 0 40px 0;
    }

    .page-blog-online-betting-safety-guide__hero-content {
        padding: 0 15px;
    }

    .page-blog-online-betting-safety-guide__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-blog-online-betting-safety-guide__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-blog-online-betting-safety-guide__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 1rem;
    }

    .page-blog-online-betting-safety-guide__cta-button--large {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 1.1rem;
    }

    .page-blog-online-betting-safety-guide__content-area,
    .page-blog-online-betting-safety-guide__faq-section {
        padding: 40px 15px;
    }

    .page-blog-online-betting-safety-guide__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .page-blog-online-betting-safety-guide__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-blog-online-betting-safety-guide p {
        font-size: 0.95rem;
    }

    /* Images responsiveness */
    .page-blog-online-betting-safety-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure containers for images/videos/buttons also adapt */
    .page-blog-online-betting-safety-guide__hero-image-wrapper,
    .page-blog-online-betting-safety-guide__cta-wrapper,
    .page-blog-online-betting-safety-guide__faq-list,
    .page-blog-online-betting-safety-guide__content-area,
    .page-blog-online-betting-safety-guide__faq-section,
    .page-blog-online-betting-safety-guide__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent horizontal scroll */
    }

    .page-blog-online-betting-safety-guide__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-blog-online-betting-safety-guide__faq-answer {
        padding: 0 15px 15px 15px;
    }
}