/* style/resources-safe-betting-guide.css */

:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-color-dark-bg: #FFFFFF;
    --text-color-light-bg: #333333;
    --button-register-login-bg: #C30808;
    --button-register-login-text: #FFFF00;
    --background-light: #FFFFFF;
    --border-color: #e0e0e0;
}

.page-resources-safe-betting-guide {
    font-family: Arial, sans-serif;
    color: var(--text-color-light-bg); /* Default text color for light body background */
    background-color: var(--background-light);
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-safe-betting-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-dark-bg);
    overflow: hidden;
}

.page-resources-safe-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-safe-betting-guide__hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 20px;
}

.page-resources-safe-betting-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
}

.page-resources-safe-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--text-color-dark-bg);
}

.page-resources-safe-betting-guide__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-resources-safe-betting-guide__section-title {
    font-size: 2.2em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-resources-safe-betting-guide__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-safe-betting-guide__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: var(--background-light);
    color: var(--text-color-light-bg);
}

.page-resources-safe-betting-guide__text-block {
    margin-bottom: 30px;
}

.page-resources-safe-betting-guide__image-full-width {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
    border-radius: 8px;
    min-width: 200px;
    min-height: 200px;
}

.page-resources-safe-betting-guide__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-resources-safe-betting-guide__list li {
    margin-bottom: 10px;
}

.page-resources-safe-betting-guide__faq-container {
    max-width: 900px;
    margin: 40px auto;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.page-resources-safe-betting-guide__faq-item {
    border-bottom: 1px solid var(--border-color);
}

.page-resources-safe-betting-guide__faq-item:last-child {
    border-bottom: none;
}

.page-resources-safe-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-resources-safe-betting-guide__faq-question:hover {
    background-color: #f0f0f0;
}

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

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

.page-resources-safe-betting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: var(--background-light);
    color: var(--text-color-light-bg);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-resources-safe-betting-guide__cta-section {
    background-color: var(--primary-color);
    color: var(--text-color-dark-bg);
    text-align: center;
    padding: 60px 20px;
}

.page-resources-safe-betting-guide__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--text-color-dark-bg);
}

.page-resources-safe-betting-guide__cta-description {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-color-dark-bg);
}

.page-resources-safe-betting-guide__btn-primary,
.page-resources-safe-betting-guide__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-resources-safe-betting-guide__btn-primary {
    background-color: var(--button-register-login-bg);
    color: var(--button-register-login-text);
    border: 2px solid var(--button-register-login-bg);
}

.page-resources-safe-betting-guide__btn-primary:hover {
    background-color: #a00606;
    border-color: #a00606;
}

.page-resources-safe-betting-guide__btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-resources-safe-betting-guide__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005a2e;
    border-color: #005a2e;
}

.page-resources-safe-betting-guide a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-resources-safe-betting-guide a:hover {
    color: #005a2e;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-resources-safe-betting-guide__hero-title {
        font-size: 2.2em;
    }
    .page-resources-safe-betting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-resources-safe-betting-guide__section-title {
        font-size: 2em;
    }
    .page-resources-safe-betting-guide__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-resources-safe-betting-guide {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-resources-safe-betting-guide__hero-section {
        min-height: 400px;
    }
    .page-resources-safe-betting-guide__hero-overlay {
        padding: 20px;
    }
    .page-resources-safe-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-resources-safe-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-resources-safe-betting-guide__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-safe-betting-guide__btn-primary,
    .page-resources-safe-betting-guide__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-resources-safe-betting-guide__content-area {
        padding: 20px 15px;
    }
    .page-resources-safe-betting-guide__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-resources-safe-betting-guide__sub-title {
        font-size: 1.4em;
        margin-top: 25px;
        margin-bottom: 10px;
    }
    .page-resources-safe-betting-guide__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-resources-safe-betting-guide__faq-answer {
        padding: 0 15px;
    }
    .page-resources-safe-betting-guide__faq-item.active .page-resources-safe-betting-guide__faq-answer {
        padding: 15px !important;
    }
    .page-resources-safe-betting-guide__cta-section {
        padding: 40px 15px;
    }
    .page-resources-safe-betting-guide__cta-title {
        font-size: 2em;
    }
    .page-resources-safe-betting-guide__cta-description {
        font-size: 0.95em;
    }

    /* Mobile image responsiveness */
    .page-resources-safe-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    /* Ensure containers with images are also responsive */
    .page-resources-safe-betting-guide__section,
    .page-resources-safe-betting-guide__card,
    .page-resources-safe-betting-guide__container,
    .page-resources-safe-betting-guide__hero-section,
    .page-resources-safe-betting-guide__content-area,
    .page-resources-safe-betting-guide__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }
    /* Mobile video responsiveness */
    .page-resources-safe-betting-guide video,
    .page-resources-safe-betting-guide__video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    .page-resources-safe-betting-guide__video-section,
    .page-resources-safe-betting-guide__video-container,
    .page-resources-safe-betting-guide__video-wrapper {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      padding-left: 15px;
      padding-right: 15px;
      overflow: hidden !important;
    }
}