.page-sports-betting-guide {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: var(--primary-color); /* Inherit body background from shared.css */
}

/* Ensure main content is visible on potentially dark body background */
.page-sports-betting-guide__intro-section,
.page-sports-betting-guide__strategy-section,
.page-sports-betting-guide__support-section,
.page-sports-betting-guide__cta-section,
.page-sports-betting-guide__light-bg .page-sports-betting-guide__card,
.page-sports-betting-guide__light-bg .page-sports-betting-guide__step-card,
.page-sports-betting-guide__light-bg .page-sports-betting-guide__promo-card {
    background-color: #ffffff; /* Explicitly set white background for content sections on potentially dark body */
    color: #333333; /* Dark text for white background */
}

.page-sports-betting-guide__dark-bg,
.page-sports-betting-guide__hero-section {
    background-color: #1A2E44; /* Primary brand color for dark sections */
    color: #ffffff; /* White text for dark backgrounds */
}

.page-sports-betting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-sports-betting-guide__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below header */
}

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

.page-sports-betting-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.page-sports-betting-guide__hero-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 800px;
    padding: 20px;
}

.page-sports-betting-guide__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary color for emphasis */
    line-height: 1.2;
}

.page-sports-betting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.page-sports-betting-guide__hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.page-sports-betting-guide__btn-primary,
.page-sports-betting-guide__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-sports-betting-guide__btn-primary {
    background-color: #FFD700; /* Secondary color */
    color: #1A2E44; /* Primary color for text */
    border: 2px solid #FFD700;
}

.page-sports-betting-guide__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-sports-betting-guide__btn-secondary {
    background-color: transparent;
    color: #FFD700; /* Secondary color for text */
    border: 2px solid #FFD700;
}

.page-sports-betting-guide__btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2E44;
}

.page-sports-betting-guide__btn-text-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.page-sports-betting-guide__btn-text-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* Section Titles & Text */
.page-sports-betting-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherit from section for contrast */
}