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

/* Base styles for the page content */
.page-sports-football-betting {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for PC and mobile */
}

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

/* Hero Section */
.page-sports-football-betting__hero-section {
    position: relative;
    background-color: #f8f8f8; /* Light background for hero section */
    padding: 80px 0;
    overflow: hidden; /* Ensure content doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-sports-football-betting__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-sports-football-betting__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); /* Darken image slightly for text contrast, not changing color */
}

.page-sports-football-betting__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff; /* White text on darkened hero image */
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-sports-football-betting__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-sports-football-betting__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-sports-football-betting__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-sports-football-betting__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    white-space: nowrap; /* Prevent button text from wrapping */
}

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

.page-sports-football-betting__btn--primary:hover {
    background-color: #e00000; /* Lighter red on hover */
    transform: translateY(-3px);
}

.page-sports-football-betting__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Auxiliary gold */
    border: 2px solid #FFD700;
}

.page-sports-football-betting__btn--secondary:hover {
    background-color: #FFD700;
    color: #CC0000; /* Red text on gold hover */
    transform: translateY(-3px);
}

/* About Section */
.page-sports-football-betting__about-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports-football-betting__section-title {
    font-size: 2.8em;
    color: #CC0000; /* Main red for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-sports-football-betting__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-sports-football-betting__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Features Section */
.page-sports-football-betting__features-section {
    padding: 60px 0;
    background-color: #f2f2f2;
}

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

.page-sports-football-betting__feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football-betting__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-football-betting__feature-image {
    width: 100%; /* Ensure images fill card width */
    max-width: 400px; /* Max width to maintain aspect ratio */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-sports-football-betting__feature-title {
    font-size: 1.6em;
    color: #CC0000;
    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-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports-football-betting__section-description {
    font-size: 1.2em;
    text-align: center;
    margin-bottom: 50px;
    color: #555555;
}

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

.page-sports-football-betting__step-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-sports-football-betting__step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #FFD700;
    color: #CC0000;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

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

.page-sports-football-betting__step-description .page-sports-football-betting__link {
    color: #CC0000;
    text-decoration: underline;
}

.page-sports-football-betting__step-description .page-sports-football-betting__link:hover {
    color: #e00000;
}

/* Leagues Section */
.page-sports-football-betting__leagues-section {
    padding: 60px 0;
    background-color: #f2f2f2;
}

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

.page-sports-football-betting__league-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football-betting__league-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-sports-football-betting__league-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    display: block;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px;
}

.page-sports-football-betting__league-title {
    font-size: 1.5em;
    color: #CC0000;
    padding: 20px 20px 10px;
}

.page-sports-football-betting__league-description {
    font-size: 1em;
    color: #555555;
    padding: 0 20px 20px;
}

/* Betting Markets Section */
.page-sports-football-betting__betting-markets-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports-football-betting__markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-sports-football-betting__market-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports-football-betting__market-title {
    font-size: 1.4em;
    color: #CC0000;
    margin-bottom: 10px;
}

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

/* CTA Banner Section */
.page-sports-football-betting__cta-banner-section {
    background-color: #CC0000; /* Main red background */
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-sports-football-betting__cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-sports-football-betting__cta-banner-title {
    font-size: 2.5em;
    color: #FFD700; /* Auxiliary gold */
    margin-bottom: 20px;
}

.page-sports-football-betting__cta-banner-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

/* Responsible Gaming Section */
.page-sports-football-betting__responsible-gaming-section {
    padding: 60px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.page-sports-football-betting__responsible-gaming-section .page-sports-football-betting__text-content {
    max-width: 800px;
    margin: 0 auto 20px;
}

.page-sports-football-betting__link {
    color: #CC0000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-sports-football-betting__link:hover {
    color: #e00000;
}

/* FAQ Section */
.page-sports-football-betting__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-sports-football-betting__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-sports-football-betting__faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-sports-football-betting__faq-question {
    font-size: 1.3em;
    color: #CC0000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-sports-football-betting__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-sports-football-betting__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-sports-football-betting__faq-answer {
    font-size: 1em;
    color: #555555;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
}

.page-sports-football-betting__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* General Link Styling (for internal links) */
.page-sports-football-betting__link {
    color: #CC0000;
    text-decoration: none;
    font-weight: bold;
}

.page-sports-football-betting__link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports-football-betting__hero-title {
        font-size: 3em;
    }
    .page-sports-football-betting__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-sports-football-betting {
        padding-top: var(--header-offset, 120px); /* Ensure mobile also has offset */
    }
    .page-sports-football-betting__hero-title {
        font-size: 2.5em;
    }
    .page-sports-football-betting__hero-description {
        font-size: 1.1em;
    }
    .page-sports-football-betting__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports-football-betting__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-sports-football-betting__section-title {
        font-size: 1.8em;
    }
    .page-sports-football-betting__text-content,
    .page-sports-football-betting__section-description {
        font-size: 1em;
    }
    .page-sports-football-betting__features-grid,
    .page-sports-football-betting__guide-steps,
    .page-sports-football-betting__leagues-grid,
    .page-sports-football-betting__markets-grid {
        grid-template-columns: 1fr;
    }
    .page-sports-football-betting__feature-image,
    .page-sports-football-betting__league-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size on mobile as well */
        min-height: 200px;
    }
    /* Mobile content area images must be constrained */
    .page-sports-football-betting img {
        max-width: 100%;
        height: auto;
    }
    .page-sports-football-betting__cta-banner-title {
        font-size: 1.8em;
    }
    .page-sports-football-betting__cta-banner-description {
        font-size: 1em;
    }
    .page-sports-football-betting__faq-question {
        font-size: 1.1em;
    }
    .page-sports-football-betting__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-sports-football-betting__hero-title {
        font-size: 2em;
    }
    .page-sports-football-betting__section-title {
        font-size: 1.5em;
    }
    .page-sports-football-betting__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}