.page-sports-betting-guide {
    padding-top: var(--header-offset, 120px);
    background-color: #f8f8f8; /* Light background for the page content */
    color: #333333; /* Dark text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-sports-betting-guide__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-sports-betting-guide__hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-sports-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-sports-betting-guide__hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(26, 43, 76, 0.7); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
}

.page-sports-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for main title */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-sports-betting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.page-sports-betting-guide__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-sports-betting-guide__cta-button {
    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, transform 0.2s ease;
    white-space: nowrap;
}

.page-sports-betting-guide__cta-button--primary {
    background-color: #FFD700; /* Gold accent */
    color: #1A2B4C; /* Dark text for contrast */
    border: 2px solid #FFD700;
}

.page-sports-betting-guide__cta-button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-sports-betting-guide__cta-button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-sports-betting-guide__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    transform: translateY(-2px);
}

.page-sports-betting-guide__cta-button--tertiary {
    background-color: #1A2B4C;
    color: #FFD700;
    border: 2px solid #1A2B4C;
    padding: 12px 25px;
    font-size: 1em;
}

.page-sports-betting-guide__cta-button--tertiary:hover {
    background-color: #FFD700;
    color: #1A2B4C;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.page-sports-betting-guide__content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff; /* White background for content sections */
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-sports-betting-guide__section-title {
    font-size: 2.5em;
    color: #1A2B4C;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-sports-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-sports-betting-guide__section-title--centered {
    text-align: center;
}

.page-sports-betting-guide__sub-title {
    font-size: 1.8em;
    color: #1A2B4C;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-sports-betting-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-sports-betting-guide__paragraph--centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-betting-guide__text-link {
    color: #1A2B4C;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-sports-betting-guide__text-link:hover {
    color: #FFD700;
}

.page-sports-betting-guide__list,
.page-sports-betting-guide__ordered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333;
}

.page-sports-betting-guide__ordered-list {
    list-style-type: decimal;
}

.page-sports-betting-guide__list-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-sports-betting-guide__sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-sports-betting-guide__sport-card {
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-betting-guide__sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.page-sports-betting-guide__card-title {
    font-size: 1.5em;
    color: #1A2B4C;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-sports-betting-guide__card-description {
    font-size: 1em;
    color: #555555;
}

.page-sports-betting-guide__image-wrapper {
    margin: 30px auto;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-sports-betting-guide__content-image {
    max-width: 100%;
    height: auto; /* Ensures image maintains aspect ratio */
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

/* Ensure content area images are never smaller than 200px */
.page-sports-betting-guide__content-area img {
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* Ensure image content is fully visible */
}

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

.page-sports-betting-guide__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    transition: background-color 0.3s ease;
}

.page-sports-betting-guide__faq-item:hover {
    background-color: #f2f2f2;
}

.page-sports-betting-guide__faq-question {
    font-size: 1.25em;
    color: #1A2B4C;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: bold;
}

.page-sports-betting-guide__faq-answer {
    font-size: 1.05em;
    color: #555555;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

/* JavaScript will toggle a class like 'is-active' */
.page-sports-betting-guide__faq-item.is-active .page-sports-betting-guide__faq-answer {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-sports-betting-guide__hero-title {
        font-size: 2.8em;
    }
    .page-sports-betting-guide__hero-description {
        font-size: 1.2em;
    }
    .page-sports-betting-guide__section-title {
        font-size: 2em;
    }
    .page-sports-betting-guide__sub-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-sports-betting-guide {
        padding-top: var(--header-offset, 120px);
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }
    .page-sports-betting-guide__hero-section {
        padding: 60px 20px;
    }
    .page-sports-betting-guide__hero-title {
        font-size: 2.2em;
    }
    .page-sports-betting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-sports-betting-guide__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports-betting-guide__cta-button {
        width: 100%;
    }
    .page-sports-betting-guide__content-area {
        margin: 20px auto;
        padding: 15px;
    }
    .page-sports-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-sports-betting-guide__sub-title {
        font-size: 1.4em;
    }
    .page-sports-betting-guide__paragraph,
    .page-sports-betting-guide__list-item,
    .page-sports-betting-guide__card-description,
    .page-sports-betting-guide__faq-answer {
        font-size: 1em;
    }
    .page-sports-betting-guide__card-title {
        font-size: 1.3em;
    }
    .page-sports-betting-guide__sports-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile specific image sizing - MUST be max-width: 100% and height: auto */
    .page-sports-betting-guide__content-area img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Still enforce minimum size */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-sports-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-sports-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-sports-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-sports-betting-guide__sub-title {
        font-size: 1.2em;
    }
}