/* style/responsible-gambling.css */

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

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

/* Hero Section */
.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Gradient background */
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero text */
    border-bottom: 2px solid #FFD700;
}

.page-responsible-gambling__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-responsible-gambling__hero-description {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

.page-responsible-gambling__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1A202C; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-responsible-gambling__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Content Sections */
.page-responsible-gambling__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-responsible-gambling__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-responsible-gambling__about-responsibility p,
.page-responsible-gambling__golden-principles p,
.page-responsible-gambling__problem-identification p,
.page-responsible-gambling__support-resources p,
.page-responsible-gambling__minor-protection p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-responsible-gambling__text-with-image {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.page-responsible-gambling__text-with-image--reverse {
    flex-direction: row-reverse;
}

.page-responsible-gambling__image-inline {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-responsible-gambling__text-with-image p {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Lists */
.page-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-responsible-gambling__list li {
    background-color: #282f3a; /* Slightly lighter dark background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #FFD700;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-responsible-gambling__list li strong {
    color: #FFD700;
}

/* Tool Cards */
.page-responsible-gambling__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling__tool-card {
    background-color: #282f3a; /* Card background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-responsible-gambling__tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

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

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

.page-responsible-gambling__card-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-responsible-gambling__card-link {
    display: inline-block;
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-responsible-gambling__card-link:hover {
    color: #e6c200;
    border-color: #e6c200;
}

/* CTA Bottom Section */
.page-responsible-gambling__cta-bottom {
    background-color: #1A202C;
    padding: 80px 0;
    text-align: center;
}

.page-responsible-gambling__cta-content {
    background-color: #282f3a;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-responsible-gambling__cta-button--large {
    font-size: 1.4em;
    padding: 18px 40px;
}

/* Detail Pages List */
.page-responsible-gambling__detail-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-responsible-gambling__detail-item {
    background-color: #282f3a;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
    display: flex;
    flex-direction: column;
}

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

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

.page-responsible-gambling__detail-title a:hover {
    color: #e6c200;
}

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

.page-responsible-gambling__detail-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1A202C; /* Dark text on gold button */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: flex-start;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling__text-with-image {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gambling__text-with-image--reverse {
        flex-direction: column;
    }
    .page-responsible-gambling__image-inline {
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    .page-responsible-gambling__grid-3-cols {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling__hero-section {
        padding: 80px 0;
    }
    .page-responsible-gambling__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1.1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__content-section {
        padding: 40px 0;
    }
    .page-responsible-gambling__tool-card, .page-responsible-gambling__detail-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
    .page-responsible-gambling__cta-content {
        padding: 30px;
    }
    .page-responsible-gambling__cta-button--large {
        font-size: 1.2em;
        padding: 15px 30px;
    }
}