/* style/sports-football-betting.css */

/* Base Styles for the page content, ensuring contrast with body background */
.page-sports-football-betting {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* Light text for dark body background */
    line-height: 1.6;
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Section Backgrounds for Contrast */
.page-sports-football-betting__dark-bg {
    background-color: #0a0a0a; /* Dark background, matching body */
    color: #ffffff;
}

.page-sports-football-betting__light-bg {
    background-color: #ffffff; /* Light background */
    color: #333333; /* Dark text for light background */
}

/* Headings */
.page-sports-football-betting h1,
.page-sports-football-betting h2,
.page-sports-football-betting h3 {
    color: #26A9E0; /* Brand color for headings for emphasis */
    text-align: center;
    margin-bottom: 20px;
}

.page-sports-football-betting h1 {
    font-size: 2.8em;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff; /* White for hero title on dark background */
}

.page-sports-football-betting h2 {
    font-size: 2.2em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 25px;
}

.page-sports-football-betting h3 {
    font-size: 1.6em;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-sports-football-betting__section-intro {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-sports-football-betting__btn-primary,
.page-sports-football-betting__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure buttons adapt to mobile */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-sports-football-betting__btn-primary {
    background-color: #26A9E0; /* Main brand color */
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-sports-football-betting__btn-primary:hover {
    background-color: #1e87c0;
    border-color: #1e87c0;
}

.page-sports-football-betting__btn-secondary {
    background-color: transparent;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-sports-football-betting__btn-secondary:hover {
    background-color: #26A9E0;
    color: #ffffff;
}

.page-sports-football-betting__btn-lg {
    padding: 16px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-sports-football-betting__hero-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-sports-football-betting__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-sports-football-betting__hero-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-sports-football-betting__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-sports-football-betting__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-sports-football-betting__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

.page-sports-football-betting__hero-image-wrapper {
    flex: 1;
    min-width: 400px;
    text-align: right;
}

.page-sports-football-betting__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Why Choose Us Section */
.page-sports-football-betting__why-choose-us {
    padding: 80px 0;
}

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

.page-sports-football-betting__feature-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333333; /* Dark text for light card background */
}

.page-sports-football-betting__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

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

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

/* How to Bet Section */
.page-sports-football-betting__how-to-bet {
    padding: 80px 0;
}

.page-sports-football-betting__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-sports-football-betting__step-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-sports-football-betting__step-number {
    width: 60px;
    height: 60px;
    background-color: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}