/* style/resources-safe-online-betting.css */
.page-resources-safe-online-betting {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #FFFFFF; /* Default body background */
}

.page-resources-safe-online-betting__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-resources-safe-online-betting__section-title {
    font-size: 2.5em;
    color: #017439;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-resources-safe-online-betting__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #017439;
    border-radius: 2px;
}

.page-resources-safe-online-betting__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Hero Section */
.page-resources-safe-online-betting__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    padding-bottom: 60px;
    min-height: 600px;
    overflow: hidden;
    text-align: center;
}

.page-resources-safe-online-betting__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-resources-safe-online-betting__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image for text readability */
}

.page-resources-safe-online-betting__hero-content {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
}

.page-resources-safe-online-betting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.page-resources-safe-online-betting__hero-description {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #F0F0F0;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* Buttons */
.page-resources-safe-online-betting__btn-primary,
.page-resources-safe-online-betting__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-resources-safe-online-betting__btn-primary {
    background-color: #017439;
    color: #FFFFFF;
    border: 2px solid #017439;
}

.page-resources-safe-online-betting__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-resources-safe-online-betting__btn-secondary {
    background-color: #FFFFFF;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-safe-online-betting__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #017439;
    border-color: #005a2e;
}

.page-resources-safe-online-betting__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Introduction Section */
.page-resources-safe-online-betting__introduction-section,
.page-resources-safe-online-betting__features-section,
.page-resources-safe-online-betting__identification-section,
.page-resources-safe-online-betting__video-section,
.page-resources-safe-online-betting__responsible-gambling-section,
.page-resources-safe-online-betting__faq-section,
.page-resources-safe-online-betting__cta-section {
    padding: 80px 0;
}

/* Features Section */
.page-resources-safe-online-betting__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-safe-online-betting__feature-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-resources-safe-online-betting__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-safe-online-betting__feature-icon {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 8px;
}

.page-resources-safe-online-betting__feature-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-resources-safe-online-betting__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Identification Section */
.page-resources-safe-online-betting__ordered-list {
    list-style-type: decimal;
    padding-left: 25px;
    margin-top: 20px;
}

.page-resources-safe-online-betting__ordered-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-resources-safe-online-betting__ordered-list li strong {
    color: #FFFFFF;
}

/* Video Section */
.page-resources-safe-online-betting__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-safe-online-betting__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    cursor: pointer;
}

.page-resources-safe-online-betting__video-link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

.page-resources-safe-online-betting__video-caption {
    text-align: center;
    font-style: italic;
    color: #666666;
    margin-top: 10px;
}

/* Responsible Gambling Section */
.page-resources-safe-online-betting__unordered-list {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-resources-safe-online-betting__unordered-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #F0F0F0;
}

.page-resources-safe-online-betting__unordered-list li strong {
    color: #FFFFFF;
}

/* FAQ Section */
.page-resources-safe-online-betting__faq-list {
    margin-top: 40px;
}

.page-resources-safe-online-betting__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.page-resources-safe-online-betting__faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-safe-online-betting__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    color: #017439;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.page-resources-safe-online-betting__faq-question:hover {
    background-color: #f0f0f0;
}

.page-resources-safe-online-betting__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-toggle {
    transform: rotate(45deg);
}

.page-resources-safe-online-betting__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    color: #555555;
    background-color: #FFFFFF;
}

.page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px !important;
}

.page-resources-safe-online-betting__faq-answer p {
    margin: 0;
    padding-top: 10px;
    font-size: 1em;
}

/* Color Contrast Classes */
.page-resources-safe-online-betting__dark-section {
    background-color: #017439;
    color: #FFFFFF;
}

.page-resources-safe-online-betting__dark-section .page-resources-safe-online-betting__section-title,
.page-resources-safe-online-betting__dark-section .page-resources-safe-online-betting__text-block {
    color: #FFFFFF;
}

.page-resources-safe-online-betting__dark-section .page-resources-safe-online-betting__section-title::after {
    background-color: #FFFFFF;
}

.page-resources-safe-online-betting__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-safe-online-betting__hero-title {
        font-size: 2.8em;
    }
    .page-resources-safe-online-betting__hero-description {
        font-size: 1.3em;
    }
    .page-resources-safe-online-betting__section-title {
        font-size: 2em;
    }
    .page-resources-safe-online-betting__features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources-safe-online-betting__hero-section {
        min-height: 450px;
        padding-bottom: 40px;
    }
    .page-resources-safe-online-betting__hero-title {
        font-size: 2.2em;
    }
    .page-resources-safe-online-betting__hero-description {
        font-size: 1.1em;
    }
    .page-resources-safe-online-betting__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-safe-online-betting__introduction-section,
    .page-resources-safe-online-betting__features-section,
    .page-resources-safe-online-betting__identification-section,
    .page-resources-safe-online-betting__video-section,
    .page-resources-safe-online-betting__responsible-gambling-section,
    .page-resources-safe-online-betting__faq-section,
    .page-resources-safe-online-betting__cta-section {
        padding: 60px 0;
    }

    /* Mobile image adaptation */
    .page-resources-safe-online-betting img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-resources-safe-online-betting__section,
    .page-resources-safe-online-betting__card,
    .page-resources-safe-online-betting__container,
    .page-resources-safe-online-betting__features-grid {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile video adaptation */
    .page-resources-safe-online-betting video,
    .page-resources-safe-online-betting__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-safe-online-betting__video-section,
    .page-resources-safe-online-betting__video-container,
    .page-resources-safe-online-betting__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-safe-online-betting__video-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    /* Mobile button adaptation */
    .page-resources-safe-online-betting__btn-primary,
    .page-resources-safe-online-betting__btn-secondary,
    .page-resources-safe-online-betting a[class*="button"],
    .page-resources-safe-online-betting a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-resources-safe-online-betting__cta-buttons,
    .page-resources-safe-online-betting__button-group,
    .page-resources-safe-online-betting__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important;
        gap: 10px;
    }

    .page-resources-safe-online-betting__hero-section {
        flex-direction: column;
    }
    .page-resources-safe-online-betting__hero-content {
        padding: 15px;
    }
    .page-resources-safe-online-betting__feature-card {
        padding: 20px;
    }
    .page-resources-safe-online-betting__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-resources-safe-online-betting__faq-answer {
        padding: 0 15px;
    }
    .page-resources-safe-online-betting__faq-item.active .page-resources-safe-online-betting__faq-answer {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-resources-safe-online-betting__hero-title {
        font-size: 1.8em;
    }
    .page-resources-safe-online-betting__hero-description {
        font-size: 1em;
    }
    .page-resources-safe-online-betting__section-title {
        font-size: 1.5em;
    }
    .page-resources-safe-online-betting__hero-section {
        min-height: 350px;
    }
}