/* style/responsible-gambling.css */

/* Base styles for the responsible gambling page */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E0B95B; /* Auxiliary color for general text on dark backgrounds */
    background-color: #1A1A2E; /* Primary dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-responsible-gambling-hero {
    background: linear-gradient(135deg, #1A1A2E, #3A3A4E);
    padding: 80px 0;
    text-align: center;
    color: #E0B95B; /* Gold text for hero title */
    position: relative;
    overflow: hidden;
}

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

.page-responsible-gambling-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B95B;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px rgba(224, 185, 91, 0.7);
}

.page-responsible-gambling-hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-responsible-gambling-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(224, 185, 91, 0.2);
}

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

.page-responsible-gambling-section:nth-child(odd) {
    background-color: #1A1A2E;
    color: #E0B95B;
}

.page-responsible-gambling-section:nth-child(even) {
    background-color: #2A2A3E;
    color: #E0B95B;
}

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

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

.page-responsible-gambling-subtitle {
    font-size: 1.8em;
    color: #E0B95B;
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: left;
    border-left: 5px solid #E0B95B;
    padding-left: 15px;
}

.page-responsible-gambling p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page-responsible-gambling ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #CCCCCC;
}

.page-responsible-gambling ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Images */
.page-responsible-gambling-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

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

.page-responsible-gambling-image--large {
    max-width: 90%;
}

.page-responsible-gambling-image--medium {
    max-width: 70%;
}

.page-responsible-gambling-image--small {
    max-width: 50%;
}

/* Buttons */
.page-responsible-gambling-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-responsible-gambling-button--primary {
    background-color: #E0B95B; /* Gold background */
    color: #1A1A2E; /* Dark text */
    box-shadow: 0 4px 15px rgba(224, 185, 91, 0.4);
}

.page-responsible-gambling-button--primary:hover {
    background-color: #FFD700; /* Brighter gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(224, 185, 91, 0.6);
}

.page-responsible-gambling-button--secondary {
    background-color: transparent;
    color: #E0B95B; /* Gold text */
    border: 2px solid #E0B95B;
    margin-top: 20px;
}

.page-responsible-gambling-button--secondary:hover {
    background-color: #E0B95B;
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(224, 185, 91, 0.4);
}

.page-responsible-gambling-button--download {
    background-color: #3A3A4E;
    color: #E0B95B;
    border: 2px solid #3A3A4E;
}

.page-responsible-gambling-button--download:hover {
    background-color: #E0B95B;
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(224, 185, 91, 0.4);
}

.page-responsible-gambling-button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Subpage list for tools */
.page-responsible-gambling-subpage-list {
    margin-top: 40px;
    padding: 30px;
    background-color: #2A2A3E;
    border-radius: 10px;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-subpage-list .page-responsible-gambling-subtitle {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling-subpage-list h3 {
    color: #E0B95B;
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: left;
    border-left: 4px solid #E0B95B;
    padding-left: 10px;
}

.page-responsible-gambling-subpage-list p {
    color: #DDDDDD;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-hero-title {
        font-size: 2.5em;
    }
    .page-responsible-gambling-hero-subtitle {
        font-size: 1.2em;
    }
    .page-responsible-gambling-title {
        font-size: 2em;
    }
    .page-responsible-gambling-subtitle {
        font-size: 1.5em;
    }
    .page-responsible-gambling p, .page-responsible-gambling ul li {
        font-size: 1em;
    }
    .page-responsible-gambling-button-group {
        flex-direction: column;
        align-items: center;
    }
    .page-responsible-gambling-button {
        width: 80%;
    }
    .page-responsible-gambling-image--large {
        max-width: 100%;
    }
    .page-responsible-gambling-image--medium {
        max-width: 90%;
    }
    .page-responsible-gambling-image--small {
        max-width: 70%;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-hero-title {
        font-size: 2em;
    }
    .page-responsible-gambling-hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gambling-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-subtitle {
        font-size: 1.3em;
    }
    .page-responsible-gambling-button {
        padding: 12px 20px;
        font-size: 1em;
    }
}