/* style/responsible-gambling-healthy-tips.css */

:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --text-on-primary: #FFFFFF;
    --text-on-secondary: #000000;
    --background-light: #F8F8F8;
    --background-dark: #071A40;
    --border-color: #E0E0E0;
}

.page-responsible-gambling-healthy-tips {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--background-light);
}

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

.page-responsible-gambling-healthy-tips__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0D2D70 100%);
    color: var(--text-on-primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling-healthy-tips__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-responsible-gambling-healthy-tips__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,215,0,0.2) 0%, rgba(255,215,0,0) 70%);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

.page-responsible-gambling-healthy-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling-healthy-tips__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-on-primary);
}

.page-responsible-gambling-healthy-tips__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-responsible-gambling-healthy-tips__btn--primary {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
}

.page-responsible-gambling-healthy-tips__btn--primary:hover {
    background-color: #E6C200;
}

.page-responsible-gambling-healthy-tips__btn--secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
}

.page-responsible-gambling-healthy-tips__btn--secondary:hover {
    background-color: var(--secondary-color);
    color: var(--text-on-secondary);
}

.page-responsible-gambling-healthy-tips__section {
    padding: 60px 0;
}

.page-responsible-gambling-healthy-tips__section--alt-bg {
    background-color: var(--background-dark);
    color: var(--text-on-primary);
}

.page-responsible-gambling-healthy-tips__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__section-title {
    color: var(--secondary-color);
}

.page-responsible-gambling-healthy-tips__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-responsible-gambling-healthy-tips__text-content {
    flex: 1;
}

.page-responsible-gambling-healthy-tips__text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #555;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__text-content p {
    color: #CCCCCC;
}

.page-responsible-gambling-healthy-tips__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-responsible-gambling-healthy-tips__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-responsible-gambling-healthy-tips__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-responsible-gambling-healthy-tips__tip-card {
    background-color: var(--text-on-primary);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__tip-card {
    background-color: #1A3A7C;
    color: var(--text-on-primary);
}

.page-responsible-gambling-healthy-tips__tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-responsible-gambling-healthy-tips__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__card-title {
    color: var(--secondary-color);
}

.page-responsible-gambling-healthy-tips__tip-card p {
    font-size: 1em;
    color: #666;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__tip-card p {
    color: #B0B0B0;
}

.page-responsible-gambling-healthy-tips__card-image {
    max-width: 80%;
    height: auto;
    margin-top: 20px;
    border-radius: 5px;
}

.page-responsible-gambling-healthy-tips__text-center {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
    color: #555;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__text-center {
    color: #CCCCCC;
}

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

.page-responsible-gambling-healthy-tips__feature-item {
    background-color: var(--text-on-primary);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__feature-item {
    background-color: #1A3A7C;
    color: var(--text-on-primary);
}

.page-responsible-gambling-healthy-tips__feature-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__feature-title {
    color: var(--secondary-color);
}

.page-responsible-gambling-healthy-tips__feature-item p {
    color: #666;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__feature-item p {
    color: #B0B0B0;
}

.page-responsible-gambling-healthy-tips__image-wrapper--center {
    text-align: center;
    margin-top: 40px;
}

.page-responsible-gambling-healthy-tips__bullet-list {
    list-style: disc inside;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    font-size: 1.1em;
    color: #555;
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__bullet-list {
    color: #CCCCCC;
}

.page-responsible-gambling-healthy-tips__bullet-list li {
    margin-bottom: 10px;
}

.page-responsible-gambling-healthy-tips__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-responsible-gambling-healthy-tips__cta-buttons .page-responsible-gambling-healthy-tips__btn {
    margin: 0 10px;
}

.page-responsible-gambling-healthy-tips__section--faq {
    background-color: var(--background-light);
    color: #333;
}

.page-responsible-gambling-healthy-tips__faq-item {
    background-color: var(--text-on-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-responsible-gambling-healthy-tips__faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-responsible-gambling-healthy-tips__faq-question {
    font-size: 1.25em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-responsible-gambling-healthy-tips__faq-answer {
    font-size: 1em;
    color: #666;
}

.page-responsible-gambling-healthy-tips__link {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-responsible-gambling-healthy-tips__link:hover {
    color: var(--secondary-color);
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__link {
    color: var(--secondary-color);
}

.page-responsible-gambling-healthy-tips__section--alt-bg .page-responsible-gambling-healthy-tips__link:hover {
    color: var(--text-on-primary);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-responsible-gambling-healthy-tips__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gambling-healthy-tips__section-title {
        font-size: 2em;
    }
    .page-responsible-gambling-healthy-tips__content-grid {
        flex-direction: column;
    }
    .page-responsible-gambling-healthy-tips__image-wrapper {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
    .page-responsible-gambling-healthy-tips__cta-buttons .page-responsible-gambling-healthy-tips__btn {
        display: block;
        margin: 15px auto;
    }
    .page-responsible-gambling-healthy-tips__btn--secondary {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-responsible-gambling-healthy-tips__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gambling-healthy-tips__hero-description {
        font-size: 1em;
    }
    .page-responsible-gambling-healthy-tips__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-healthy-tips__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-responsible-gambling-healthy-tips__tip-card, .page-responsible-gambling-healthy-tips__feature-item {
        padding: 20px;
    }
    .page-responsible-gambling-healthy-tips__card-title, .page-responsible-gambling-healthy-tips__feature-title {
        font-size: 1.3em;
    }
    .page-responsible-gambling-healthy-tips__faq-question {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gambling-healthy-tips__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gambling-healthy-tips__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gambling-healthy-tips__container {
        padding: 0 15px;
    }
    .page-responsible-gambling-healthy-tips__hero,
    .page-responsible-gambling-healthy-tips__section {
        padding: 40px 0;
    }
}