/* style/responsible-gambling-minor-protection.css */

:root {
    --e2bet-primary-color: #0A1931;
    --e2bet-secondary-color: #FFD700;
    --e2bet-accent-color: #DC143C; /* Bright red for emphasis */
    --e2bet-text-light: #F8F8F8;
    --e2bet-text-dark: #333333;
    --e2bet-background-dark: #050E1A;
    --e2bet-background-light: #E0E0E0;
}

.page-responsible-gambling-minor-protection {
    font-family: 'Arial', sans-serif;
    color: var(--e2bet-text-light);
    background-color: var(--e2bet-background-dark);
    line-height: 1.6;
}

.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, var(--e2bet-primary-color), #2A406D);
    padding: 100px 0;
    text-align: center;
    color: var(--e2bet-text-light);
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-minor-protection__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_security_pattern,geometric_lines,dark_blue]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-responsible-gambling-minor-protection__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--e2bet-secondary-color);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-responsible-gambling-minor-protection__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling-minor-protection__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling-minor-protection__btn--primary {
    background-color: var(--e2bet-secondary-color);
    color: var(--e2bet-primary-color);
    border: 2px solid var(--e2bet-secondary-color);
}

.page-responsible-gambling-minor-protection__btn--primary:hover {
    background-color: darken(var(--e2bet-secondary-color), 10%);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-responsible-gambling-minor-protection__btn--secondary {
    background-color: var(--e2bet-primary-color);
    color: var(--e2bet-secondary-color);
    border: 2px solid var(--e2bet-secondary-color);
}

.page-responsible-gambling-minor-protection__btn--secondary:hover {
    background-color: var(--e2bet-secondary-color);
    color: var(--e2bet-primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

.page-responsible-gambling-minor-protection__content-section {
    padding: 60px 0;
    background-color: var(--e2bet-background-dark);
    color: var(--e2bet-text-light);
}

.page-responsible-gambling-minor-protection__section-title {
    font-size: 2.5em;
    color: var(--e2bet-secondary-color);
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-responsible-gambling-minor-protection__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--e2bet-secondary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-responsible-gambling-minor-protection__sub-section-title {
    font-size: 1.8em;
    color: var(--e2bet-secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid var(--e2bet-accent-color);
    padding-left: 15px;
}

.page-responsible-gambling-minor-protection__text-block {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.8;
    text-align: justify;
    color: #CCCCCC;
}

.page-responsible-gambling-minor-protection__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling-minor-protection__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-responsible-gambling-minor-protection__list-item::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--e2bet-secondary-color);
    font-weight: bold;
    font-size: 1.2em;
    top: 0;
}

.page-responsible-gambling-minor-protection__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-responsible-gambling-minor-protection__numbered-list .page-responsible-gambling-minor-protection__list-item {
    padding-left: 0;
}

.page-responsible-gambling-minor-protection__numbered-list .page-responsible-gambling-minor-protection__list-item::before {
    content: none;
}

.page-responsible-gambling-minor-protection__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
}

.page-responsible-gambling-minor-protection__image:hover {
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-minor-protection__hero-title {
        font-size: 2.5em;
    }
    .page-responsible-gambling-minor-protection__hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-minor-protection__sub-section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-minor-protection__text-block,
    .page-responsible-gambling-minor-protection__list-item {
        font-size: 0.95em;
    }
    .page-responsible-gambling-minor-protection__hero-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-minor-protection__hero-title {
        font-size: 2em;
    }
    .page-responsible-gambling-minor-protection__hero-subtitle {
        font-size: 0.9em;
    }
    .page-responsible-gambling-minor-protection__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-minor-protection__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-minor-protection__sub-section-title {
        font-size: 1.3em;
    }
    .page-responsible-gambling-minor-protection__list-item {
        padding-left: 25px;
    }
    .page-responsible-gambling-minor-protection__list-item::before {
        font-size: 1em;
    }
}