/* style/responsible-gaming-age-verification.css */
.page-responsible-gaming-age-verification {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f8f8f8;
}

.page-responsible-gaming-age-verification__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-responsible-gaming-age-verification__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3A5B9C 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gaming-age-verification__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,blue_gold]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-responsible-gaming-age-verification__hero .page-responsible-gaming-age-verification__container {
    position: relative;
    z-index: 1;
}

.page-responsible-gaming-age-verification__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.page-responsible-gaming-age-verification__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
    font-weight: 300;
}

.page-responsible-gaming-age-verification__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2463;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming-age-verification__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming-age-verification__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.page-responsible-gaming-age-verification__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gaming-age-verification__section-title {
    font-size: 2.2em;
    color: #0A2463;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.page-responsible-gaming-age-verification__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 3px;
}

.page-responsible-gaming-age-verification__sub-section-title {
    font-size: 1.6em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-responsible-gaming-age-verification__importance p,
.page-responsible-gaming-age-verification__policy p,
.page-responsible-gaming-age-verification__parental-control p,
.page-responsible-gaming-age-verification__process p,
.page-responsible-gaming-age-verification__responsible-gaming-resources p,
.page-responsible-gaming-age-verification__join-us p {
    margin-bottom: 18px;
    color: #555;
    font-size: 1.05em;
}

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

.page-responsible-gaming-age-verification__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.page-responsible-gaming-age-verification__image:hover {
    transform: scale(1.01);
}

.page-responsible-gaming-age-verification__list {
    list-style: disc inside;
    margin-bottom: 25px;
    padding-left: 25px;
}

.page-responsible-gaming-age-verification__list li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05em;
}

.page-responsible-gaming-age-verification__list--ordered {
    list-style: decimal inside;
    margin-bottom: 25px;
    padding-left: 25px;
}

.page-responsible-gaming-age-verification__list--ordered li {
    margin-bottom: 12px;
    color: #555;
    font-size: 1.05em;
}

.page-responsible-gaming-age-verification__cta-buttons {
    text-align: center;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-responsible-gaming-age-verification__button--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-responsible-gaming-age-verification__button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-responsible-gaming-age-verification__button--secondary:hover {
    background-color: #071a47;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-responsible-gaming-age-verification__disclaimer {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: #777;
    font-size: 0.95em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gaming-age-verification__title {
        font-size: 2.2em;
    }

    .page-responsible-gaming-age-verification__subtitle {
        font-size: 1.1em;
    }

    .page-responsible-gaming-age-verification__section-title {
        font-size: 1.9em;
    }

    .page-responsible-gaming-age-verification__sub-section-title {
        font-size: 1.4em;
    }

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

    .page-responsible-gaming-age-verification__cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .page-responsible-gaming-age-verification__button--primary {
        margin-right: 0;
    }

    .page-responsible-gaming-age-verification__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming-age-verification__title {
        font-size: 1.8em;
    }

    .page-responsible-gaming-age-verification__section-title {
        font-size: 1.6em;
    }

    .page-responsible-gaming-age-verification__sub-section-title {
        font-size: 1.2em;
    }

    .page-responsible-gaming-age-verification__button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-responsible-gaming-age-verification__list,
    .page-responsible-gaming-age-verification__list--ordered {
        padding-left: 15px;
    }

    .page-responsible-gaming-age-verification__importance p,
    .page-responsible-gaming-age-verification__policy p,
    .page-responsible-gaming-age-verification__parental-control p,
    .page-responsible-gaming-age-verification__process p,
    .page-responsible-gaming-age-verification__responsible-gaming-resources p,
    .page-responsible-gaming-age-verification__join-us p,
    .page-responsible-gaming-age-verification__list li,
    .page-responsible-gaming-age-verification__list--ordered li {
        font-size: 1em;
    }
}