/* style/resources-responsible-gambling.css */

.page-resources-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A1A1A; /* Main background color */
    line-height: 1.6;
}

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

.page-resources-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 70%, #FFD700 100%); /* Gradient background with main and accent colors */
    padding: 100px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-resources-responsible-gambling__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
}

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

.page-resources-responsible-gambling__highlight {
    color: #FFD700;
}

.page-resources-responsible-gambling__section {
    padding: 80px 0;
}

.page-resources-responsible-gambling__section--dark {
    background-color: #222222;
}

.page-resources-responsible-gambling__section-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

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

.page-resources-responsible-gambling__description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #B0B0B0;
}

.page-resources-responsible-gambling__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-resources-responsible-gambling__content-grid:nth-of-type(even) {
    flex-direction: row-reverse;
}

.page-resources-responsible-gambling__text-content {
    flex: 1;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-resources-responsible-gambling__text-content p {
    margin-bottom: 20px;
}

.page-resources-responsible-gambling__image-wrapper {
    flex: 1;
    text-align: center;
}

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

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

.page-resources-responsible-gambling__feature-item {
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.page-resources-responsible-gambling__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-resources-responsible-gambling__feature-item p {
    color: #B0B0B0;
}

.page-resources-responsible-gambling__checklist {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
    font-size: 1.1em;
}

.page-resources-responsible-gambling__checklist li {
    background-color: #2D2D2D;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-responsible-gambling__checklist li::before {
    content: '✔';
    color: #FFD700;
    font-size: 1.2em;
    margin-right: 15px;
    line-height: 1;
}

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

.page-resources-responsible-gambling__resource-item {
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling__resource-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px #FFD700);
}

.page-resources-responsible-gambling__resource-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-responsible-gambling__resource-item p {
    color: #B0B0B0;
    margin-bottom: 20px;
}

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

.page-resources-responsible-gambling__link:hover {
    color: #FFFFFF;
}

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

.page-resources-responsible-gambling__tip-item {
    background-color: #2D2D2D;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-responsible-gambling__tip-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-resources-responsible-gambling__tip-item p {
    color: #B0B0B0;
}

.page-resources-responsible-gambling__cta-section {
    background-color: #FFD700; /* Accent color for CTA */
    padding: 80px 0;
    text-align: center;
    color: #1A1A1A;
}

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

.page-resources-responsible-gambling__cta-title {
    font-size: 2.8em;
    color: #1A1A1A;
    margin-bottom: 20px;
}

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

.page-resources-responsible-gambling__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-responsible-gambling__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.page-resources-responsible-gambling__btn--primary {
    background-color: #1A1A1A;
    color: #FFD700;
    border-color: #1A1A1A;
}

.page-resources-responsible-gambling__btn--primary:hover {
    background-color: #000000;
    color: #FFFFFF;
    border-color: #FFD700;
}

.page-resources-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: #1A1A1A;
    border-color: #1A1A1A;
}

.page-resources-responsible-gambling__btn--secondary:hover {
    background-color: #1A1A1A;
    color: #FFD700;
    border-color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources-responsible-gambling__hero-title {
        font-size: 3em;
    }
    .page-resources-responsible-gambling__section-title {
        font-size: 2.2em;
    }
    .page-resources-responsible-gambling__content-grid {
        flex-direction: column;
    }
    .page-resources-responsible-gambling__content-grid:nth-of-type(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-resources-responsible-gambling__hero-title {
        font-size: 2.5em;
    }
    .page-resources-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-resources-responsible-gambling__hero-description,
    .page-resources-responsible-gambling__description,
    .page-resources-responsible-gambling__text-content p,
    .page-resources-responsible-gambling__checklist li,
    .page-resources-responsible-gambling__feature-item p,
    .page-resources-responsible-gambling__resource-item p,
    .page-resources-responsible-gambling__tip-item p,
    .page-resources-responsible-gambling__cta-description {
        font-size: 1em;
    }
    .page-resources-responsible-gambling__feature-grid,
    .page-resources-responsible-gambling__help-resources,
    .page-resources-responsible-gambling__tip-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-responsible-gambling__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-responsible-gambling__btn {
        width: 100%;
        max-width: 280px;
    }
    .page-resources-responsible-gambling__checklist li {
        padding: 15px;
    }
    .page-resources-responsible-gambling__section,
    .page-resources-responsible-gambling__hero-section,
    .page-resources-responsible-gambling__cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-resources-responsible-gambling__hero-title {
        font-size: 2em;
    }
    .page-resources-responsible-gambling__section-title {
        font-size: 1.5em;
    }
    .page-resources-responsible-gambling__hero-section {
        padding: 80px 0;
    }
    .page-resources-responsible-gambling__section,
    .page-resources-responsible-gambling__cta-section {
        padding: 40px 0;
    }
    .page-resources-responsible-gambling__feature-icon,
    .page-resources-responsible-gambling__resource-icon {
        width: 50px;
        height: 50px;
    }
}