/* style/responsible-gaming-minor-protection.css */
.page-responsible-gaming-minor-protection {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-responsible-gaming-minor-protection__hero {
    background: linear-gradient(135deg, #0A246A 0%, #1A3A7A 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gaming-minor-protection__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-responsible-gaming-minor-protection__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-responsible-gaming-minor-protection__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-responsible-gaming-minor-protection__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-responsible-gaming-minor-protection__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-responsible-gaming-minor-protection__section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    color: #333333;
    border-bottom: 1px solid #eee;
}

.page-responsible-gaming-minor-protection__section--dark {
    background-color: #F0F2F5;
    color: #333333;
}

.page-responsible-gaming-minor-protection__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-responsible-gaming-minor-protection__section-title {
    font-size: 2.5em;
    color: #0A246A;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

.page-responsible-gaming-minor-protection__section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-responsible-gaming-minor-protection__sub-title {
    font-size: 1.8em;
    color: #0A246A;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-responsible-gaming-minor-protection p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-responsible-gaming-minor-protection .highlight {
    color: #FFD700;
}

.page-responsible-gaming-minor-protection__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-responsible-gaming-minor-protection__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-responsible-gaming-minor-protection__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
}

.page-responsible-gaming-minor-protection__btn--primary {
    background-color: #FFD700;
    color: #0A246A;
    border: 2px solid #FFD700;
}

.page-responsible-gaming-minor-protection__btn--primary:hover {
    background-color: #E6C200;
    color: #0A246A;
    transform: translateY(-2px);
}

.page-responsible-gaming-minor-protection__btn--secondary {
    background-color: #0A246A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gaming-minor-protection__btn--secondary:hover {
    background-color: #1A3A7A;
    color: #FFD700;
    transform: translateY(-2px);
}

.page-responsible-gaming-minor-protection__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-responsible-gaming-minor-protection__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-responsible-gaming-minor-protection__cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #0A246A;
    border-radius: 10px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-responsible-gaming-minor-protection__cta-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-responsible-gaming-minor-protection__cta-text {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gaming-minor-protection__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gaming-minor-protection__hero-subtitle {
        font-size: 1.2em;
    }

    .page-responsible-gaming-minor-protection__section-title {
        font-size: 2em;
    }

    .page-responsible-gaming-minor-protection__sub-title {
        font-size: 1.5em;
    }

    .page-responsible-gaming-minor-protection p,
    .page-responsible-gaming-minor-protection__list li {
        font-size: 1em;
    }

    .page-responsible-gaming-minor-protection__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-responsible-gaming-minor-protection__cta {
        padding: 30px;
    }

    .page-responsible-gaming-minor-protection__cta-icon {
        width: 60px;
        height: 60px;
    }

    .page-responsible-gaming-minor-protection__cta-text {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming-minor-protection__hero-title {
        font-size: 2em;
    }

    .page-responsible-gaming-minor-protection__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gaming-minor-protection__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gaming-minor-protection__sub-title {
        font-size: 1.3em;
    }

    .page-responsible-gaming-minor-protection__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-responsible-gaming-minor-protection__cta-text {
        font-size: 1em;
    }
}