/* style/resources-sports-betting-analysis.css */
.page-resources-sports-betting-analysis {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Assuming body background is black */
}

.page-resources-sports-betting-analysis__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-resources-sports-betting-analysis__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-resources-sports-betting-analysis__hero-section {
    position: relative;
    width: 100%;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resources-sports-betting-analysis__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-resources-sports-betting-analysis__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFF00; /* Using custom color for title for impact */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-sports-betting-analysis__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #ffffff;
}

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

.page-resources-sports-betting-analysis__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-resources-sports-betting-analysis__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: brightness(0.7);
}

.page-resources-sports-betting-analysis__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.page-resources-sports-betting-analysis__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand color for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.page-resources-sports-betting-analysis__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #017439;
    margin: 10px auto 0;
}

.page-resources-sports-betting-analysis__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #333333;
}

.page-resources-sports-betting-analysis__image-text-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-resources-sports-betting-analysis__image-text-layout--reverse {
    flex-direction: row-reverse;
}

.page-resources-sports-betting-analysis__image-text-layout .page-resources-sports-betting-analysis__content-image {
    flex: 1;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-resources-sports-betting-analysis__image-text-layout .page-resources-sports-betting-analysis__text-block {
    flex: 2;
}

.page-resources-sports-betting-analysis__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #333333;
}

.page-resources-sports-betting-analysis__list li {
    margin-bottom: 10px;
}

.page-resources-sports-betting-analysis__image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.page-resources-sports-betting-analysis__content-image--centered {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

.page-resources-sports-betting-analysis__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.page-resources-sports-betting-analysis__benefit-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333;
}

.page-resources-sports-betting-analysis__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-sports-betting-analysis__card-title {
    font-size: 1.5em;
    color: #017439;
    margin-bottom: 15px;
}

.page-resources-sports-betting-analysis__faq-container {
    margin-top: 30px;
}

.page-resources-sports-betting-analysis__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    background-color: #fdfdfd;
    color: #333333;
}

.page-resources-sports-betting-analysis__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease;
    color: #333333;
}

.page-resources-sports-betting-analysis__faq-question:hover {
    background-color: #e5e5e5;
}

.page-resources-sports-betting-analysis__faq-question h3 {
    margin: 0;
    color: #333333;
}

.page-resources-sports-betting-analysis__faq-toggle {
    font-size: 1.5em;
    font-weight: normal;
    transition: transform 0.3s ease;
    color: #017439;
}

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

.page-resources-sports-betting-analysis__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555555;
}

.page-resources-sports-betting-analysis__faq-item.active .page-resources-sports-betting-analysis__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 15px 25px;
}

.page-resources-sports-betting-analysis__cta-section {
    background-color: #017439;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-resources-sports-betting-analysis__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFF00; /* Using custom color for title for impact */
}

.page-resources-sports-betting-analysis__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-resources-sports-betting-analysis__btn-primary {
    display: inline-block;
    background-color: #C30808; /* Custom color for register/login */
    color: #FFFF00; /* Custom font color for register/login */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-resources-sports-betting-analysis__btn-primary:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-resources-sports-betting-analysis__btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #017439;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
    border: 2px solid #017439;
    cursor: pointer;
    box-sizing: border-box;
}

.page-resources-sports-betting-analysis__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-resources-sports-betting-analysis__btn-primary--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-resources-sports-betting-analysis__hero-title {
        font-size: 2.8em;
    }
    .page-resources-sports-betting-analysis__section-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-analysis__image-text-layout {
        flex-direction: column;
    }
    .page-resources-sports-betting-analysis__image-text-layout--reverse {
        flex-direction: column;
    }
    .page-resources-sports-betting-analysis__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-resources-sports-betting-analysis__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-resources-sports-betting-analysis__hero-title {
        font-size: 2.2em;
    }
    .page-resources-sports-betting-analysis__hero-description {
        font-size: 1em;
    }
    .page-resources-sports-betting-analysis__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-sports-betting-analysis__content-area {
        padding: 30px 15px;
    }
    .page-resources-sports-betting-analysis__section-title {
        font-size: 1.8em;
    }
    .page-resources-sports-betting-analysis__text-block, 
    .page-resources-sports-betting-analysis__list li {
        font-size: 1em;
    }
    .page-resources-sports-betting-analysis__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-sports-betting-analysis__card-title {
        font-size: 1.3em;
    }
    .page-resources-sports-betting-analysis__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-resources-sports-betting-analysis__faq-answer {
        padding: 0 20px;
    }
    .page-resources-sports-betting-analysis__faq-item.active .page-resources-sports-betting-analysis__faq-answer {
        padding: 15px 20px;
    }
    .page-resources-sports-betting-analysis__cta-section {
        padding: 60px 15px;
    }
    .page-resources-sports-betting-analysis__cta-title {
        font-size: 2em;
    }
    .page-resources-sports-betting-analysis__cta-description {
        font-size: 1em;
    }
    .page-resources-sports-betting-analysis__btn-primary,
    .page-resources-sports-betting-analysis__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-resources-sports-betting-analysis__btn-primary--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    /* Mobile image and container responsive rules */
    .page-resources-sports-betting-analysis img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-resources-sports-betting-analysis__section,
    .page-resources-sports-betting-analysis__card,
    .page-resources-sports-betting-analysis__container,
    .page-resources-sports-betting-analysis__image-text-layout,
    .page-resources-sports-betting-analysis__benefits-grid,
    .page-resources-sports-betting-analysis__faq-container,
    .page-resources-sports-betting-analysis__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-resources-sports-betting-analysis__image-text-layout .page-resources-sports-betting-analysis__text-block {
      padding-left: 0;
      padding-right: 0;
    }
}