/* style/responsible-gambling-minor-protection.css */
.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    line-height: 1.6;
    background-color: #0F1A2D; /* Darker background, slightly lighter than main color */
}

.page-responsible-gambling-minor-protection__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gambling-minor-protection__hero-section {
    background: linear-gradient(135deg, #1A2B4C, #0F1A2D);
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Bright gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: page-responsible-gambling-minor-protection__fadeInDown 1s ease-out;
}

.page-responsible-gambling-minor-protection__hero-subtitle {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 800px;
    margin: 0 auto 40px;
    animation: page-responsible-gambling-minor-protection__fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.page-responsible-gambling-minor-protection__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    opacity: 0;
    animation: page-responsible-gambling-minor-protection__zoomIn 1s ease-out 0.6s forwards;
}

.page-responsible-gambling-minor-protection__section {
    padding: 60px 0;
    background-color: #0F1A2D;
}

.page-responsible-gambling-minor-protection__section--alt-bg {
    background-color: #1A2B4C; /* Main color for alternate sections */
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-responsible-gambling-minor-protection__text {
    font-size: 1.1em;
    color: #E0E0E0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-responsible-gambling-minor-protection__list,
.page-responsible-gambling-minor-protection__ordered-list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #C0C0C0;
}

.page-responsible-gambling-minor-protection__ordered-list {
    list-style-type: decimal;
}

.page-responsible-gambling-minor-protection__list li,
.page-responsible-gambling-minor-protection__ordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gambling-minor-protection__list-item-title {
    color: #FFD700;
}

.page-responsible-gambling-minor-protection__subsection-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-responsible-gambling-minor-protection__image-content-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-responsible-gambling-minor-protection__image-content-row--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling-minor-protection__image-content-row-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling-minor-protection__image-content-row-text {
    flex: 2;
    min-width: 300px;
}

.page-responsible-gambling-minor-protection__resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling-minor-protection__resource-card {
    background-color: #1A2B4C;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-minor-protection__resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-minor-protection__resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-responsible-gambling-minor-protection__resource-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling-minor-protection__resource-description {
    color: #C0C0C0;
    margin-bottom: 25px;
}

.page-responsible-gambling-minor-protection__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B4C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-responsible-gambling-minor-protection__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-responsible-gambling-minor-protection__button--primary {
    background-color: #FFD700;
    color: #1A2B4C;
    padding: 15px 35px;
    font-size: 1.1em;
}

.page-responsible-gambling-minor-protection__button--primary:hover {
    background-color: #e6c200;
}

.page-responsible-gambling-minor-protection__call-to-action {
    background: linear-gradient(90deg, #1A2B4C, #0F1A2D);
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling-minor-protection__call-to-action-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling-minor-protection__call-to-action-text {
    font-size: 1.2em;
    color: #C0C0C0;
    max-width: 900px;
    margin: 0 auto 40px;
}

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

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

    .page-responsible-gambling-minor-protection__subsection-title {
        font-size: 1.6em;
    }

    .page-responsible-gambling-minor-protection__image-content-row {
        flex-direction: column;
        text-align: center;
    }

    .page-responsible-gambling-minor-protection__image-content-row--reverse {
        flex-direction: column;
    }

    .page-responsible-gambling-minor-protection__image-content-row-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-minor-protection__hero-section,
    .page-responsible-gambling-minor-protection__section,
    .page-responsible-gambling-minor-protection__call-to-action {
        padding: 40px 0;
    }

    .page-responsible-gambling-minor-protection__hero-title {
        font-size: 2.2em;
    }

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

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

    .page-responsible-gambling-minor-protection__text,
    .page-responsible-gambling-minor-protection__list li,
    .page-responsible-gambling-minor-protection__ordered-list li,
    .page-responsible-gambling-minor-protection__resource-description {
        font-size: 1em;
    }

    .page-responsible-gambling-minor-protection__call-to-action-title {
        font-size: 2.2em;
    }

    .page-responsible-gambling-minor-protection__call-to-action-text {
        font-size: 1em;
    }
}

/* Animations */
@keyframes page-responsible-gambling-minor-protection__fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes page-responsible-gambling-minor-protection__fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes page-responsible-gambling-minor-protection__zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}