/* style/blog-lucky8882-safety-responsible-gaming.css */

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

.page-blog-lucky8882-safety-responsible-gaming {
    font-family: Arial, sans-serif;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: var(--background-color); /* Body background from shared */
    line-height: 1.6;
}

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

.page-blog-lucky8882-safety-responsible-gaming__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
    padding-top: 10px; /* Small top padding, body handles header-offset */
    background-color: var(--deep-green-color);
    overflow: hidden;
}

.page-blog-lucky8882-safety-responsible-gaming__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Max height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-blog-lucky8882-safety-responsible-gaming__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-blog-lucky8882-safety-responsible-gaming__hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 40px 20px;
    margin-top: -100px; /* Overlap slightly for design */
    background: rgba(17, 39, 27, 0.85); /* Card BG with transparency */
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

.page-blog-lucky8882-safety-responsible-gaming__main-title {
    color: var(--gold-color);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem); /* clamp for h1 font size */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-blog-lucky8882-safety-responsible-gaming__hero-description {
    color: var(--text-secondary-color);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-blog-lucky8882-safety-responsible-gaming__btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: var(--button-gradient);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-blog-lucky8882-safety-responsible-gaming__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-lucky8882-safety-responsible-gaming__section-title {
    color: var(--gold-color);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-blog-lucky8882-safety-responsible-gaming__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-blog-lucky8882-safety-responsible-gaming__introduction-section,
.page-blog-lucky8882-safety-responsible-gaming__safety-measures-section,
.page-blog-lucky8882-safety-responsible-gaming__tools-resources-section,
.page-blog-lucky8882-safety-responsible-gaming__faq-section {
    padding: 60px 0;
    background-color: var(--background-color);
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__introduction-section p {
    font-size: 1.05rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: var(--text-secondary-color);
}

.page-blog-lucky8882-safety-responsible-gaming__features-grid,
.page-blog-lucky8882-safety-responsible-gaming__policy-grid,
.page-blog-lucky8882-safety-responsible-gaming__resource-grid,
.page-blog-lucky8882-safety-responsible-gaming__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-lucky8882-safety-responsible-gaming__feature-card,
.page-blog-lucky8882-safety-responsible-gaming__policy-item,
.page-blog-lucky8882-safety-responsible-gaming__resource-card,
.page-blog-lucky8882-safety-responsible-gaming__benefit-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__feature-card:hover,
.page-blog-lucky8882-safety-responsible-gaming__policy-item:hover,
.page-blog-lucky8882-safety-responsible-gaming__resource-card:hover,
.page-blog-lucky8882-safety-responsible-gaming__benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-lucky8882-safety-responsible-gaming__feature-icon,
.page-blog-lucky8882-safety-responsible-gaming__resource-icon {
    width: 100%;
    height: auto;
    max-height: 200px; /* Ensure images are not too tall */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-blog-lucky8882-safety-responsible-gaming__feature-title,
.page-blog-lucky8882-safety-responsible-gaming__policy-title,
.page-blog-lucky8882-safety-responsible-gaming__resource-title,
.page-blog-lucky8882-safety-responsible-gaming__benefit-title {
    color: var(--gold-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-blog-lucky8882-safety-responsible-gaming__feature-card p,
.page-blog-lucky8882-safety-responsible-gaming__policy-item p,
.page-blog-lucky8882-safety-responsible-gaming__resource-card p,
.page-blog-lucky8882-safety-responsible-gaming__benefit-item p {
    color: var(--text-secondary-color);
    font-size: 1rem;
}

.page-blog-lucky8882-safety-responsible-gaming__responsible-gaming-policy-section,
.page-blog-lucky8882-safety-responsible-gaming__call-to-action-section {
    padding: 60px 0;
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__dark-section {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__dark-bg {
    background-color: var(--deep-green-color);
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: none;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
}

.page-blog-lucky8882-safety-responsible-gaming__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-lucky8882-safety-responsible-gaming__cta-block {
    text-align: center;
    margin-top: 50px;
}

.page-blog-lucky8882-safety-responsible-gaming__cta-block p {
    font-size: 1.2rem;
    color: var(--text-main-color);
    margin-bottom: 25px;
}

.page-blog-lucky8882-safety-responsible-gaming__btn-text {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-blog-lucky8882-safety-responsible-gaming__btn-text:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-blog-lucky8882-safety-responsible-gaming__benefits-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-lucky8882-safety-responsible-gaming__faq-list {
    margin-top: 30px;
}

.page-blog-lucky8882-safety-responsible-gaming__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main-color);
}

.page-blog-lucky8882-safety-responsible-gaming__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-color);
    cursor: pointer;
    background-color: var(--card-bg);
    position: relative;
    list-style: none; /* For details/summary */
}

.page-blog-lucky8882-safety-responsible-gaming__faq-question::-webkit-details-marker {
    display: none;
}

.page-blog-lucky8882-safety-responsible-gaming__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-blog-lucky8882-safety-responsible-gaming__faq-item[open] .page-blog-lucky8882-safety-responsible-gaming__faq-toggle {
    transform: rotate(45deg);
}

.page-blog-lucky8882-safety-responsible-gaming__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: var(--text-secondary-color);
    line-height: 1.7;
}

.page-blog-lucky8882-safety-responsible-gaming__call-to-action-section {
    text-align: center;
    padding: 80px 0;
}

.page-blog-lucky8882-safety-responsible-gaming__cta-description {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: var(--text-secondary-color);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-blog-lucky8882-safety-responsible-gaming {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-blog-lucky8882-safety-responsible-gaming__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-blog-lucky8882-safety-responsible-gaming__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
        padding-bottom: 40px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__hero-content {
        margin-top: -60px;
        padding: 25px 15px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__main-title {
        font-size: 1.8rem;
    }

    .page-blog-lucky8882-safety-responsible-gaming__hero-description {
        font-size: 1rem;
    }

    .page-blog-lucky8882-safety-responsible-gaming__btn-primary,
    .page-blog-lucky8882-safety-responsible-gaming__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-blog-lucky8882-safety-responsible-gaming__cta-block .page-blog-lucky8882-safety-responsible-gaming__btn-secondary {
        margin-top: 20px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__introduction-section,
    .page-blog-lucky8882-safety-responsible-gaming__safety-measures-section,
    .page-blog-lucky8882-safety-responsible-gaming__responsible-gaming-policy-section,
    .page-blog-lucky8882-safety-responsible-gaming__tools-resources-section,
    .page-blog-lucky8882-safety-responsible-gaming__benefits-section,
    .page-blog-lucky8882-safety-responsible-gaming__faq-section,
    .page-blog-lucky8882-safety-responsible-gaming__call-to-action-section {
        padding: 40px 0;
    }

    .page-blog-lucky8882-safety-responsible-gaming__features-grid,
    .page-blog-lucky8882-safety-responsible-gaming__policy-grid,
    .page-blog-lucky8882-safety-responsible-gaming__resource-grid,
    .page-blog-lucky8882-safety-responsible-gaming__benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__feature-card,
    .page-blog-lucky8882-safety-responsible-gaming__policy-item,
    .page-blog-lucky8882-safety-responsible-gaming__resource-card,
    .page-blog-lucky8882-safety-responsible-gaming__benefit-item {
        padding: 20px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__feature-title,
    .page-blog-lucky8882-safety-responsible-gaming__policy-title,
    .page-blog-lucky8882-safety-responsible-gaming__resource-title,
    .page-blog-lucky8882-safety-responsible-gaming__benefit-title {
        font-size: 1.2rem;
    }

    .page-blog-lucky8882-safety-responsible-gaming__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__faq-answer {
        padding: 0 20px 15px 20px;
    }

    .page-blog-lucky8882-safety-responsible-gaming__cta-description {
        font-size: 1.1rem;
    }

    /* Ensure all images are responsive */
    .page-blog-lucky8882-safety-responsible-gaming img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All image containers must be responsive */
    .page-blog-lucky8882-safety-responsible-gaming__hero-image-wrapper,
    .page-blog-lucky8882-safety-responsible-gaming__feature-card,
    .page-blog-lucky8882-safety-responsible-gaming__resource-card,
    .page-blog-lucky8882-safety-responsible-gaming__benefits-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* All sections and containers for content */
    .page-blog-lucky8882-safety-responsible-gaming__introduction-section,
    .page-blog-lucky8882-safety-responsible-gaming__safety-measures-section,
    .page-blog-lucky8882-safety-responsible-gaming__responsible-gaming-policy-section,
    .page-blog-lucky8882-safety-responsible-gaming__tools-resources-section,
    .page-blog-lucky8882-safety-responsible-gaming__benefits-section,
    .page-blog-lucky8882-safety-responsible-gaming__faq-section,
    .page-blog-lucky8882-safety-responsible-gaming__call-to-action-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}