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

.page-support-responsible-gambling {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0F1D3D; /* Darker blue background */
    line-height: 1.6;
}

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

.page-support-responsible-gambling__hero-section {
    background: linear-gradient(135deg, #1A2B5B 0%, #0F1D3D 100%); /* Main color with darker blue */
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.page-support-responsible-gambling__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 30px;
}

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

.page-support-responsible-gambling__hero-subtitle {
    font-size: 1.5em;
    color: #FFFFFF; /* White for subtitle */
    margin-bottom: 30px;
}

.page-support-responsible-gambling__hero-image-wrapper {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    opacity: 0.2;
}

.page-support-responsible-gambling__hero-image {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .page-support-responsible-gambling__hero-section {
        flex-direction: column;
        padding: 60px 0;
    }
    .page-support-responsible-gambling__hero-title {
        font-size: 2.5em;
    }
    .page-support-responsible-gambling__hero-subtitle {
        font-size: 1.2em;
    }
    .page-support-responsible-gambling__hero-image-wrapper {
        width: 80%;
        height: auto;
        position: relative;
        opacity: 0.3;
        margin-top: 20px;
    }
}

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

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

.page-support-responsible-gambling__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Accent color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

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

.page-support-responsible-gambling__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-support-responsible-gambling__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-support-responsible-gambling__feature-item {
    background-color: #1A2B5B; /* Main color as background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-support-responsible-gambling__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.page-support-responsible-gambling__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-support-responsible-gambling__feature-title {
    font-size: 1.6em;
    color: #FFD700; /* Accent color */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-support-responsible-gambling__feature-description {
    font-size: 1em;
    color: #C0C0C0;
}

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

.page-support-responsible-gambling__list-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-support-responsible-gambling__list-item::before {
    content: '✓';
    color: #FFD700; /* Accent color */
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

.page-support-responsible-gambling__ordered-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-support-responsible-gambling__ordered-list .page-support-responsible-gambling__list-item {
    padding-left: 0;
    margin-bottom: 10px;
}

.page-support-responsible-gambling__ordered-list .page-support-responsible-gambling__list-item::before {
    content: none;
}

.page-support-responsible-gambling__link {
    color: #FFD700; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-support-responsible-gambling__link:hover {
    color: #FFF;
    text-decoration: underline;
}

.page-support-responsible-gambling__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.page-support-responsible-gambling__btn--primary {
    background-color: #FFD700; /* Accent color */
    color: #1A2B5B; /* Main color for text */
    border: 2px solid #FFD700;
}

.page-support-responsible-gambling__btn--primary:hover {
    background-color: #e6c200;
    color: #0F1D3D;
    transform: translateY(-2px);
}

.page-support-responsible-gambling__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Accent color */
    border: 2px solid #FFD700;
}

.page-support-responsible-gambling__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2B5B;
    transform: translateY(-2px);
}

.page-support-responsible-gambling__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-support-responsible-gambling__section--cta {
    background-color: #1A2B5B; /* Main color for CTA section */
    text-align: center;
    padding: 80px 0;
}

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

.page-support-responsible-gambling__faq-item {
    background-color: #1A2B5B; /* Main color */
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-support-responsible-gambling__faq-question {
    font-size: 1.3em;
    color: #FFD700; /* Accent color */
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-support-responsible-gambling__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-support-responsible-gambling__faq-answer {
    font-size: 1em;
    color: #C0C0C0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    padding-top: 0;
}

.page-support-responsible-gambling__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    opacity: 1;
    padding-top: 15px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-support-responsible-gambling__hero-title {
        font-size: 3em;
    }
    .page-support-responsible-gambling__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-support-responsible-gambling__hero-title {
        font-size: 2em;
    }
    .page-support-responsible-gambling__hero-subtitle {
        font-size: 1.1em;
    }
    .page-support-responsible-gambling__section {
        padding: 40px 0;
    }
    .page-support-responsible-gambling__section-title {
        font-size: 1.8em;
    }
    .page-support-responsible-gambling__text, .page-support-responsible-gambling__list-item, .page-support-responsible-gambling__feature-description {
        font-size: 0.95em;
    }
    .page-support-responsible-gambling__feature-item {
        padding: 20px;
    }
    .page-support-responsible-gambling__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-support-responsible-gambling__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-support-responsible-gambling__hero-title {
        font-size: 1.8em;
    }
    .page-support-responsible-gambling__hero-subtitle {
        font-size: 1em;
    }
    .page-support-responsible-gambling__section-title {
        font-size: 1.5em;
    }
    .page-support-responsible-gambling__features-grid {
        grid-template-columns: 1fr;
    }
    .page-support-responsible-gambling__faq-question {
        font-size: 1.1em;
    }
    .page-support-responsible-gambling__btn--large {
        width: 100%;
        box-sizing: border-box;
    }
    .page-support-responsible-gambling__hero-image-wrapper {
        display: none; /* Hide image on very small screens for better content focus */
    }
}