/* style/responsible-gaming.css */
.page-responsible-gaming {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light gray for text on dark background */
    background-color: #1a1a1a; /* Dark background */
}

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

.page-responsible-gaming__hero-section {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Primary blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-responsible-gaming__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%); /* Subtle gold accent */
    animation: rotateGradient 20s linear infinite;
    z-index: 0;
}

@keyframes rotateGradient {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-responsible-gaming__hero-section > * {
    position: relative;
    z-index: 1;
}

.page-responsible-gaming__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Secondary gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-responsible-gaming__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.5;
}

.page-responsible-gaming__hero-subtitle a {
    color: #FFD700; /* Gold for links in hero */
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gaming__hero-subtitle a:hover {
    text-decoration: underline;
}

.page-responsible-gaming__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary gold for CTA button */
    color: #1a1a1a; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-responsible-gaming__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-responsible-gaming__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-responsible-gaming__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background image */
}

.page-responsible-gaming__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-responsible-gaming__section:last-of-type {
    border-bottom: none;
}

.page-responsible-gaming__section-title {
    font-size: 2.5em;
    color: #007BFF; /* Primary blue for section titles */
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.page-responsible-gaming__subsection-title {
    font-size: 1.8em;
    color: #FFD700; /* Secondary gold for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-responsible-gaming__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

.page-responsible-gaming__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-responsible-gaming__list li {
    background-color: rgba(0, 123, 255, 0.1); /* Light blue background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #007BFF; /* Primary blue border */
    border-radius: 5px;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-responsible-gaming__list li:hover {
    background-color: rgba(0, 123, 255, 0.2);
}

.page-responsible-gaming__numbered-list {
    list-style: decimal;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.page-responsible-gaming__numbered-list li::marker {
    color: #FFD700; /* Gold for list markers */
    font-weight: bold;
}

.page-responsible-gaming__paragraph a,
.page-responsible-gaming__list li a {
    color: #007BFF; /* Primary blue for inline links */
    text-decoration: none;
    font-weight: bold;
}

.page-responsible-gaming__paragraph a:hover,
.page-responsible-gaming__list li a:hover {
    text-decoration: underline;
}

.page-responsible-gaming .highlight {
    color: #FFD700; /* Gold for highlighted text */
}

.page-responsible-gaming__image-left,
.page-responsible-gaming__image-right {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.page-responsible-gaming__image-left {
    flex-direction: row;
}

.page-responsible-gaming__image-right {
    flex-direction: row-reverse;
}

.page-responsible-gaming__content-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin: 0 30px;
    flex-shrink: 0;
}

.page-responsible-gaming__faq-item {
    background-color: #2a2a2a; /* Slightly lighter dark for FAQ items */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-responsible-gaming__faq-item:hover {
    background-color: #3a3a3a;
}

.page-responsible-gaming__faq-question {
    font-size: 1.4em;
    color: #007BFF; /* Primary blue for FAQ questions */
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-responsible-gaming__faq-question::after {
    content: '+';
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-responsible-gaming__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-responsible-gaming__faq-answer {
    font-size: 1.05em;
    color: #c0c0c0;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none; /* Hidden by default, toggled by JS */
}

.page-responsible-gaming__faq-answer.active {
    display: block;
}

.page-responsible-gaming__cta-bottom {
    text-align: center;
    background-color: #222; /* Darker background for bottom CTA */
    padding: 80px 0;
}

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

.page-responsible-gaming__cta-button--large {
    padding: 18px 40px;
    font-size: 1.4em;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-responsible-gaming__hero-title {
        font-size: 2.8em;
    }
    .page-responsible-gaming__section-title {
        font-size: 2em;
    }
    .page-responsible-gaming__subsection-title {
        font-size: 1.6em;
    }
    .page-responsible-gaming__image-left,
    .page-responsible-gaming__image-right {
        flex-direction: column;
        text-align: center;
    }
    .page-responsible-gaming__content-image {
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .page-responsible-gaming__hero-title {
        font-size: 2.2em;
    }
    .page-responsible-gaming__hero-subtitle {
        font-size: 1.1em;
    }
    .page-responsible-gaming__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-responsible-gaming__section {
        padding: 40px 0;
    }
    .page-responsible-gaming__section-title {
        font-size: 1.8em;
    }
    .page-responsible-gaming__subsection-title {
        font-size: 1.4em;
    }
    .page-responsible-gaming__paragraph,
    .page-responsible-gaming__list li,
    .page-responsible-gaming__numbered-list li,
    .page-responsible-gaming__faq-answer {
        font-size: 1em;
    }
    .page-responsible-gaming__faq-question {
        font-size: 1.2em;
    }
    .page-responsible-gaming__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-responsible-gaming__hero-title {
        font-size: 1.8em;
    }
    .page-responsible-gaming__hero-subtitle {
        font-size: 1em;
    }
    .page-responsible-gaming__cta-button {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-responsible-gaming__section-title {
        font-size: 1.5em;
    }
    .page-responsible-gaming__subsection-title {
        font-size: 1.2em;
    }
    .page-responsible-gaming__faq-question {
        font-size: 1.1em;
    }
    .page-responsible-gaming__list li {
        padding: 10px 15px;
    }
    .page-responsible-gaming__numbered-list {
        padding-left: 20px;
    }
}