/* style/resources-responsible-gambling.css */
.page-resources-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A1A1A; /* Very dark background */
}

.page-resources-responsible-gambling__hero {
    background: linear-gradient(135deg, #8B0000 0%, #330000 100%); /* Deep red to darker red */
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700; /* Gold border */
}

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

.page-resources-responsible-gambling__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-responsible-gambling__hero-subtitle {
    font-size: 1.2em;
    color: #F0F0F0;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.page-resources-responsible-gambling__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-responsible-gambling__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
}

.page-resources-responsible-gambling__button--primary:hover {
    background-color: #E0B800; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-resources-responsible-gambling__button--secondary {
    background-color: #8B0000; /* Deep red button */
    color: #FFD700; /* Gold text on deep red */
    border: 2px solid #FFD700;
}

.page-resources-responsible-gambling__button--secondary:hover {
    background-color: #B22222; /* Lighter red on hover */
    transform: translateY(-2px);
}

.page-resources-responsible-gambling__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
}

.page-resources-responsible-gambling__hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-responsible-gambling__section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.page-resources-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-responsible-gambling__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Deep red underline */
    border-radius: 2px;
}

.page-resources-responsible-gambling__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #D0D0D0;
    text-align: left;
}

.page-resources-responsible-gambling__text-content--note {
    font-style: italic;
    color: #AAAAAA;
}

.page-resources-responsible-gambling__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-resources-responsible-gambling__feature-item {
    background-color: #2A2A2A; /* Darker grey */
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    width: calc(33% - 40px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.page-resources-responsible-gambling__feature-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A3A;
}

.page-resources-responsible-gambling__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

.page-resources-responsible-gambling__feature-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-resources-responsible-gambling__feature-item p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
}

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

.page-resources-responsible-gambling__grid-item {
    background-color: #2A2A2A;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.page-resources-responsible-gambling__grid-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A3A;
}

.page-resources-responsible-gambling__grid-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px rgba(139, 0, 0, 0.5)); /* Red glow */
}

.page-resources-responsible-gambling__grid-title {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-responsible-gambling__grid-item p {
    font-size: 0.95em;
    color: #C0C0C0;
    line-height: 1.6;
}

.page-resources-responsible-gambling__list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.page-resources-responsible-gambling__list-item {
    margin-bottom: 15px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #D0D0D0;
    position: relative;
    padding-left: 30px;
}

.page-resources-responsible-gambling__list-marker {
    color: #FFD700; /* Gold marker */
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -5px;
}

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

.page-resources-responsible-gambling__support-item {
    background-color: #2A2A2A;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-resources-responsible-gambling__support-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A3A;
}

.page-resources-responsible-gambling__support-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

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

.page-resources-responsible-gambling__support-item p {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-resources-responsible-gambling__link-external {
    display: inline-block;
    margin-top: 15px;
    color: #8B0000; /* Deep red link */
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #8B0000;
    padding-bottom: 2px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-responsible-gambling__link-external:hover {
    color: #FFD700; /* Gold on hover */
    border-color: #FFD700;
}

.page-resources-responsible-gambling__section--minor-protection .page-resources-responsible-gambling__list {
    max-width: 800px;
}

.page-resources-responsible-gambling__faq-item {
    background-color: #2A2A2A;
    border: 1px solid #444;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    text-align: left;
    transition: background-color 0.3s ease;
}

.page-resources-responsible-gambling__faq-item:hover {
    background-color: #3A3A3A;
}

.page-resources-responsible-gambling__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Gold question */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-resources-responsible-gambling__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-responsible-gambling__hero {
        padding: 60px 20px;
    }

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

    .page-resources-responsible-gambling__hero-subtitle {
        font-size: 1.1em;
    }

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

    .page-resources-responsible-gambling__features,
    .page-resources-responsible-gambling__grid,
    .page-resources-responsible-gambling__support-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .page-resources-responsible-gambling__feature-item {
        width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .page-resources-responsible-gambling__hero {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

    .page-resources-responsible-gambling__feature-item {
        width: 100%;
    }

    .page-resources-responsible-gambling__grid-item,
    .page-resources-responsible-gambling__support-item {
        width: 100%;
    }

    .page-resources-responsible-gambling__text-content,
    .page-resources-responsible-gambling__list-item,
    .page-resources-responsible-gambling__faq-answer {
        font-size: 0.95em;
    }

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

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

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

    .page-resources-responsible-gambling__feature-title,
    .page-resources-responsible-gambling__grid-title,
    .page-resources-responsible-gambling__support-title,
    .page-resources-responsible-gambling__faq-question {
        font-size: 1.2em;
    }

    .page-resources-responsible-gambling__hero-actions {
        gap: 10px;
    }
}