/* style/resource-sports-betting-guide.css */

/* Base styles for the page content */
.page-resource-sports-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* inherited from body */
}

/* Ensure proper spacing from fixed header */
.page-resource-sports-betting-guide__hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Desktop padding-top */
    overflow: hidden;
}

.page-resource-sports-betting-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: none; /* Ensure no CSS filter changes image color */
}

.page-resource-sports-betting-guide__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

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

.page-resource-sports-betting-guide__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resource-sports-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resource-sports-betting-guide__hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* General section styling */
.page-resource-sports-betting-guide__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-resource-sports-betting-guide__text-block {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #f0f0f0;
}

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

.page-resource-sports-betting-guide__dark-bg {
    background-color: #1a1a1a; /* Dark background for sections */
    color: #ffffff;
}

/* Image wrapper for responsive images */
.page-resource-sports-betting-guide__content-image-wrapper {
    margin: 40px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-resource-sports-betting-guide__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    filter: none; /* Ensure no CSS filter changes image color */
}

/* Buttons */
a.page-resource-sports-betting-guide__btn-primary,
a.page-resource-sports-betting-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    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;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

a.page-resource-sports-betting-guide__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

a.page-resource-sports-betting-guide__btn-primary:hover {
    background-color: #1a8cc7;
    border-color: #1a8cc7;
}

a.page-resource-sports-betting-guide__btn-secondary {
    background-color: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

a.page-resource-sports-betting-guide__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #1a8cc7;
    border-color: #1a8cc7;
}

.page-resource-sports-betting-guide__cta-buttons--centered {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Feature List (Why Choose section) */
.page-resource-sports-betting-guide__feature-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resource-sports-betting-guide__feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.page-resource-sports-betting-guide__feature-title {
    color: #26A9E0;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.page-resource-sports-betting-guide__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

/* Bet Types Grid */
.page-resource-sports-betting-guide__bet-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-resource-sports-betting-guide__bet-type-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}