/* style/responsible-gambling.css */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
}

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

.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a63 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-responsible-gambling__hero-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for emphasis */
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
    color: #e0e0e0;
}

.page-responsible-gambling__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A1931; /* Dark blue text */
    border: 2px solid #FFD700;
}

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

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

.page-responsible-gambling__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-responsible-gambling__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.page-responsible-gambling__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-responsible-gambling__section:last-of-type {
    border-bottom: none;
}

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

.page-responsible-gambling__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__sub-title {
    font-size: 1.8em;
    color: #f5e6ce;
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 4px solid #FFD700;
    padding-left: 15px;
}

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

.page-responsible-gambling__list li {
    background-color: rgba(255, 215, 0, 0.05);
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    transition: background-color 0.3s ease;
}

.page-responsible-gambling__list li:hover {
    background-color: rgba(255, 215, 0, 0.1);
}

.page-responsible-gambling__list--compact li {
    padding: 10px 15px;
    border-left: 3px solid #FFD700;
}

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

.page-responsible-gambling__tool-card {
    background-color: #1a3a63; /* Darker blue for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling__tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__tool-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

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

.page-responsible-gambling__image--full-width {
    width: 100%;
    max-width: 100%;
}

.page-responsible-gambling__cta-group {
    text-align: center;
    margin-top: 50px;
}

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

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

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

    .page-responsible-gambling__sub-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling__tool-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .page-responsible-gambling__sub-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling__hero-section,
    .page-responsible-gambling__section {
        padding: 40px 0;
    }

    .page-responsible-gambling__tool-card {
        padding: 20px;
    }
}