/* style/responsible-gambling.css */

/* General styling for the responsible gambling page */
.page-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #f5e6ce; /* Light text for dark background */
    background-color: #0A1931; /* Primary dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

/* Hero Section */
.page-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #0A1931, #2a3d60); /* Dark blue gradient */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-responsible-gambling__hero-title {
    font-size: 3.5em;
    color: #E0B400; /* Gold for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-responsible-gambling__hero-description {
    font-size: 1.3em;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 15px;
}

.page-responsible-gambling__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    transition: transform 0.3s ease-in-out;
}

.page-responsible-gambling__hero-image:hover {
    transform: scale(1.02);
}

/* Content Sections */
.page-responsible-gambling__content-section {
    padding: 60px 0;
    background-color: #0A1931; /* Consistent dark background */
}

.page-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #E0B400; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 3px solid #E0B400;
    position: relative;
}

.page-responsible-gambling__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #f5e6ce;
}

.page-responsible-gambling__sub-section-title {
    font-size: 1.8em;
    color: #ffffff; /* White for sub-titles */
    margin-top: 40px;
    margin-bottom: 25px;
    font-weight: bold;
    border-left: 5px solid #E0B400;
    padding-left: 15px;
}

.page-responsible-gambling__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f5e6ce; /* Light text for readability */
    line-height: 1.8;
}

.page-responsible-gambling__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #f5e6ce;
}

.page-responsible-gambling__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gambling__list--numbered {
    list-style-type: decimal;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #f5e6ce;
}

.page-responsible-gambling__list--numbered li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-responsible-gambling__content-image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
}

.page-responsible-gambling__content-image:hover {
    transform: translateY(-5px);
}

/* Call to Action */
.page-responsible-gambling__call-to-action {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a2a47; /* Slightly lighter dark blue for contrast */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-responsible-gambling__call-to-action p {
    font-size: 1.2em;
    color: #f5e6ce;
    margin-bottom: 20px;
}

.page-responsible-gambling__btn-primary {
    display: inline-block;
    background-color: #E0B400; /* Gold button */
    color: #0A1931; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.4em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.page-responsible-gambling__btn-primary:hover {
    background-color: #ffc107; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-responsible-gambling__link-secondary {
    color: #E0B400; /* Gold link */
    text-decoration: underline;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-responsible-gambling__link-secondary:hover {
    color: #ffc107; /* Lighter gold on hover */
}

/* Sticky Promotion */
.page-responsible-gambling__sticky-promo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #E0B400; /* Gold background */
    color: #0A1931; /* Dark text on gold */
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    font-size: 1em;
    animation: fadeInSlideUp 0.5s ease-out forwards;
}

.page-responsible-gambling__sticky-promo p {
    margin: 0;
    color: #0A1931; /* Dark text */
    font-weight: bold;
}

.page-responsible-gambling__sticky-promo a {
    color: #0A1931; /* Dark link text */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-responsible-gambling__sticky-promo a:hover {
    color: #4a5a73; /* Slightly lighter dark on hover */
}

.page-responsible-gambling__sticky-close-btn {
    background: none;
    border: none;
    color: #0A1931; /* Dark close button */
    font-size: 1.2em;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.3s ease;
}

.page-responsible-gambling__sticky-close-btn:hover {
    color: #4a5a73; /* Slightly lighter dark on hover */
}

@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-responsible-gambling__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-responsible-gambling__sub-section-title {
        font-size: 1.5em;
    }

    .page-responsible-gambling__content-section p,
    .page-responsible-gambling__list li,
    .page-responsible-gambling__list--numbered li {
        font-size: 1em;
    }

    .page-responsible-gambling__btn-primary {
        font-size: 1.2em;
        padding: 12px 25px;
    }

    .page-responsible-gambling__sticky-promo {
        flex-direction: column;
        text-align: center;
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        padding: 10px 15px;
    }
    .page-responsible-gambling__sticky-promo p {
        margin-bottom: 5px;
    }
    .page-responsible-gambling__sticky-close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
    }
}

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

    .page-responsible-gambling__hero-description {
        font-size: 0.95em;
    }

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

    .page-responsible-gambling__sub-section-title {
        font-size: 1.3em;
    }

    .page-responsible-gambling__content-section p,
    .page-responsible-gambling__list li,
    .page-responsible-gambling__list--numbered li {
        font-size: 0.9em;
    }

    .page-responsible-gambling__btn-primary {
        font-size: 1em;
        padding: 10px 20px;
    }
}