/* style/responsible-gaming-seek-help.css */
.page-responsible-gaming-seek-help {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    line-height: 1.6;
    background-color: #1A1A2E;
}

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

.page-responsible-gaming-seek-help__hero-section {
    background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%); /* Dark gradient for depth */
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gaming-seek-help__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.page-responsible-gaming-seek-help__main-title {
    font-size: 3.5em;
    color: #E94560; /* Accent color for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(233, 69, 96, 0.6);
    font-weight: bold;
    line-height: 1.2;
}

.page-responsible-gaming-seek-help__subtitle {
    font-size: 1.3em;
    color: #CCCCCC;
    margin-bottom: 40px;
}

.page-responsible-gaming-seek-help__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-responsible-gaming-seek-help__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.page-responsible-gaming-seek-help__cta-button {
    display: inline-block;
    background-color: #E94560;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.page-responsible-gaming-seek-help__cta-button:hover {
    background-color: #FF6B81;
    transform: translateY(-3px);
}

.page-responsible-gaming-seek-help__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-responsible-gaming-seek-help__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(233, 69, 96, 0.1);
}

.page-responsible-gaming-seek-help__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gaming-seek-help__section-title {
    font-size: 2.5em;
    color: #E94560;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-responsible-gaming-seek-help__text-content {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

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

.page-responsible-gaming-seek-help__feature-item,
.page-responsible-gaming-seek-help__sign-item,
.page-responsible-gaming-seek-help__resource-item {
    background-color: #2A2A3E; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-responsible-gaming-seek-help__feature-item:hover,
.page-responsible-gaming-seek-help__sign-item:hover,
.page-responsible-gaming-seek-help__resource-item:hover {
    transform: translateY(-5px);
    background-color: #3A3A4E;
}

.page-responsible-gaming-seek-help__feature-icon,
.page-responsible-gaming-seek-help__sign-image,
.page-responsible-gaming-seek-help__resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(233, 69, 96, 0.4));
}

.page-responsible-gaming-seek-help__feature-title,
.page-responsible-gaming-seek-help__sign-title,
.page-responsible-gaming-seek-help__resource-title {
    font-size: 1.5em;
    color: #E94560;
    margin-bottom: 15px;
}

.page-responsible-gaming-seek-help__feature-item p,
.page-responsible-gaming-seek-help__sign-item p,
.page-responsible-gaming-seek-help__resource-item p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-responsible-gaming-seek-help__resource-link {
    display: inline-block;
    margin-top: 20px;
    color: #E94560;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gaming-seek-help__resource-link:hover {
    color: #FF6B81;
    text-decoration: underline;
}

.page-responsible-gaming-seek-help__commitment-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-responsible-gaming-seek-help__commitment-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.6));
}

.page-responsible-gaming-seek-help__commitment-text {
    max-width: 800px;
    text-align: center;
}

.page-responsible-gaming-seek-help__commitment-text .page-responsible-gaming-seek-help__text-content {
    margin-bottom: 20px;
}

.page-responsible-gaming-seek-help__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2em;
}

.page-responsible-gaming-seek-help__contact-info p {
    margin-bottom: 15px;
}

.page-responsible-gaming-seek-help__contact-link {
    color: #E94560;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gaming-seek-help__contact-link:hover {
    color: #FF6B81;
    text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-responsible-gaming-seek-help__hero-section {
        padding: 150px 20px;
    }

    .page-responsible-gaming-seek-help__main-title {
        font-size: 4.5em;
    }

    .page-responsible-gaming-seek-help__subtitle {
        font-size: 1.5em;
    }

    .page-responsible-gaming-seek-help__section-title {
        font-size: 3em;
    }

    .page-responsible-gaming-seek-help__commitment-content {
        flex-direction: row;
        text-align: left;
        justify-content: center;
    }

    .page-responsible-gaming-seek-help__commitment-image {
        flex-shrink: 0;
        margin-right: 40px;
    }

    .page-responsible-gaming-seek-help__commitment-text {
        text-align: left;
        max-width: 600px;
    }
}

@media (max-width: 767px) {
    .page-responsible-gaming-seek-help__main-title {
        font-size: 2.5em;
    }

    .page-responsible-gaming-seek-help__subtitle {
        font-size: 1em;
    }

    .page-responsible-gaming-seek-help__section-title {
        font-size: 2em;
    }

    .page-responsible-gaming-seek-help__text-content {
        font-size: 1em;
    }

    .page-responsible-gaming-seek-help__hero-section {
        padding: 80px 15px;
    }

    .page-responsible-gaming-seek-help__features-grid,
    .page-responsible-gaming-seek-help__signs-grid,
    .page-responsible-gaming-seek-help__resource-grid {
        grid-template-columns: 1fr;
    }
}