/* style/responsible-gambling-family-support-guide.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #2C3E50;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #1a2530;
    --border-color: #e0e0e0;
}

.page-responsible-gambling-family-support-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
}

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

.page-responsible-gambling-family-support-guide__hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-color-light);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-family-support-guide__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.2) 0%, rgba(44, 62, 80, 0.2) 70%);
    opacity: 0.3;
    animation: page-responsible-gambling-family-support-guide__pulse 10s infinite alternate;
}

@keyframes page-responsible-gambling-family-support-guide__pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.page-responsible-gambling-family-support-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-light);
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-responsible-gambling-family-support-guide__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.page-responsible-gambling-family-support-guide__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
    font-size: 1em;
}

.page-responsible-gambling-family-support-guide__button--primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.page-responsible-gambling-family-support-guide__button--primary:hover {
    background-color: #e6b800;
    border-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-responsible-gambling-family-support-guide__button--secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-left: 15px;
}

.page-responsible-gambling-family-support-guide__button--secondary:hover {
    background-color: #1f2d3a;
    border-color: #1f2d3a;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-responsible-gambling-family-support-guide__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-responsible-gambling-family-support-guide__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gambling-family-support-guide__section-title {
    font-size: 2em;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-responsible-gambling-family-support-guide__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.page-responsible-gambling-family-support-guide__section h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}

.page-responsible-gambling-family-support-guide__section p {
    margin-bottom: 20px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-responsible-gambling-family-support-guide__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-responsible-gambling-family-support-guide__list li {
    background-color: var(--background-light);
    border-left: 4px solid var(--primary-color);
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.page-responsible-gambling-family-support-guide__list li:hover {
    transform: translateX(5px);
}

.page-responsible-gambling-family-support-guide__list strong {
    color: var(--secondary-color);
}

.page-responsible-gambling-family-support-guide__highlight {
    color: var(--primary-color);
    font-weight: bold;
}

.page-responsible-gambling-family-support-guide__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-responsible-gambling-family-support-guide__cta-buttons {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-responsible-gambling-family-support-guide__hero-title {
        font-size: 2em;
    }

    .page-responsible-gambling-family-support-guide__hero-subtitle {
        font-size: 1em;
    }

    .page-responsible-gambling-family-support-guide__section-title {
        font-size: 1.8em;
    }

    .page-responsible-gambling-family-support-guide__section h3 {
        font-size: 1.3em;
    }

    .page-responsible-gambling-family-support-guide__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-responsible-gambling-family-support-guide__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-responsible-gambling-family-support-guide__cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-family-support-guide__hero {
        padding: 60px 0;
    }

    .page-responsible-gambling-family-support-guide__hero-title {
        font-size: 1.6em;
    }

    .page-responsible-gambling-family-support-guide__section-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling-family-support-guide__section h3 {
        font-size: 1.2em;
    }

    .page-responsible-gambling-family-support-guide__button {
        width: 100%;
        text-align: center;
    }

    .page-responsible-gambling-family-support-guide__button--secondary {
        margin-top: 10px;
    }
}