/* style/responsible-gambling.css */

.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2342; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-responsible-gambling__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A60 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.page-responsible-gambling__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.page-responsible-gambling__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-responsible-gambling__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Auxiliary gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__hero-description {
    font-size: 1.3em;
    color: #CCCCCC;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-responsible-gambling__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-responsible-gambling__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-responsible-gambling__btn--primary {
    background-color: #FFD700; /* Gold for primary actions */
    color: #0A2342;
}

.page-responsible-gambling__btn--primary:hover {
    background-color: #E6C200;
    transform: translateY(-2px);
}

.page-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-responsible-gambling__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-responsible-gambling__btn--link {
    color: #FFD700;
    text-decoration: underline;
    background: none;
    padding: 0;
    font-size: 1em;
}

.page-responsible-gambling__btn--link:hover {
    color: #E6C200;
    text-decoration: none;
}

.page-responsible-gambling__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling__hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling__section {
    padding: 60px 0;
    background-color: #1A3A60;
    margin-bottom: 20px;
    border-radius: 10px;
}

.page-responsible-gambling__section:nth-of-type(odd) {
    background-color: #0A2342;
}

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling__intro p,
.page-responsible-gambling__signs p,
.page-responsible-gambling__help p,
.page-responsible-gambling__minor-protection p,
.page-responsible-gambling__our-commitment p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-responsible-gambling__image-inline {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-responsible-gambling__feature-item {
    background-color: #0A2342;
    border: 1px solid #FFD700;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling__feature-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-responsible-gambling__feature-item p {
    color: #CCCCCC;
    margin-bottom: 20px;
    font-size: 1em;
}

.page-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-responsible-gambling__list li {
    background-color: #1A3A60;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #E0E0E0;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling__list li:hover {
    background-color: #2A4F7C;
}

.page-responsible-gambling__link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-responsible-gambling__link:hover {
    color: #E6C200;
    text-decoration: underline;
}

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

.page-responsible-gambling__related-item {
    background-color: #1A3A60;
    border: 1px solid #0A2342;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-responsible-gambling__related-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-responsible-gambling__related-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-responsible-gambling__related-title a:hover {
    color: #E6C200;
    text-decoration: underline;
}

.page-responsible-gambling__related-description {
    color: #CCCCCC;
    margin-bottom: 20px;
    font-size: 0.95em;
}

.page-responsible-gambling__cta-bottom {
    background-color: #0A2342;
    padding: 60px 20px;
    text-align: center;
    border-top: 5px solid #FFD700;
}

.page-responsible-gambling__cta-content {
    max-width: 900px;
}

.page-responsible-gambling__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-responsible-gambling__cta-description {
    font-size: 1.2em;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.page-responsible-gambling .highlight {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling__hero {
        padding: 60px 15px;
        flex-direction: column;
    }

    .page-responsible-gambling__hero-title {
        font-size: 2.5em;
    }

    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }

    .page-responsible-gambling__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-responsible-gambling__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-responsible-gambling__section-title {
        font-size: 2em;
    }

    .page-responsible-gambling__features-grid,
    .page-responsible-gambling__related-grid {
        grid-template-columns: 1fr;
    }

    .page-responsible-gambling__feature-item,
    .page-responsible-gambling__related-item {
        padding: 20px;
    }

    .page-responsible-gambling__list li {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-responsible-gambling__cta-title {
        font-size: 2em;
    }

    .page-responsible-gambling__cta-description {
        font-size: 1em;
    }
}

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

    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling__cta-title {
        font-size: 1.8em;
    }
}