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

:root {
    --page-primary-color: #017439;
    --page-secondary-color: #FFFFFF;
    --page-text-light: #FFFFFF;
    --page-text-dark: #333333;
    --page-bg-dark: #0a0a0a; /* Body background */
    --page-btn-register-bg: #C30808;
    --page-btn-login-bg: #C30808;
    --page-btn-register-login-text: #FFFF00;
}

.page-sports-football-betting-guide {
    color: var(--page-text-light); /* Body background is dark, so text is light */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--page-bg-dark);
}

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

.page-sports-football-betting-guide__dark-section {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    padding: 60px 0;
}

.page-sports-football-betting-guide__light-bg {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    padding: 60px 0;
}

.page-sports-football-betting-guide__text-center {
    text-align: center;
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--page-primary-color);
}

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

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

.page-sports-football-betting-guide__hero-section .page-sports-football-betting-guide__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-sports-football-betting-guide__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--page-text-light);
}

.page-sports-football-betting-guide__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    color: var(--page-text-light);
}

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

/* Buttons */
.page-sports-football-betting-guide__btn-primary,
.page-sports-football-betting-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    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;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports-football-betting-guide__btn-primary {
    background-color: var(--page-btn-register-bg);
    color: var(--page-btn-register-login-text);
    border: 2px solid var(--page-btn-register-bg);
}

.page-sports-football-betting-guide__btn-primary:hover {
    background-color: darken(var(--page-btn-register-bg), 10%);
    border-color: darken(var(--page-btn-register-bg), 10%);
}

.page-sports-football-betting-guide__btn-secondary {
    background-color: transparent;
    color: var(--page-text-light);
    border: 2px solid var(--page-text-light);
}

.page-sports-football-betting-guide__btn-secondary:hover {
    background-color: var(--page-text-light);
    color: var(--page-primary-color);
    border-color: var(--page-text-light);
}

.page-sports-football-betting-guide__btn-large {
    font-size: 1.2em;
    padding: 18px 35px;
}

/* Section Titles & Paragraphs */
.page-sports-football-betting-guide__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
}

.page-sports-football-betting-guide__light-bg .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__light-bg .page-sports-football-betting-guide__paragraph {
    color: var(--page-text-dark);
}

.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__section-title,
.page-sports-football-betting-guide__dark-section .page-sports-football-betting-guide__paragraph {
    color: var(--page-text-light);
}

.page-sports-football-betting-guide__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.page-sports-football-betting-guide__features-grid,
.page-sports-football-betting-guide__bets-grid,
.page-sports-football-betting-guide__strategy-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports-football-betting-guide__card {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-sports-football-betting-guide__feature-icon,
.page-sports-football-betting-guide__feature-icon-small {
    width: 100%; /* Ensure images take full width of card */
    max-width: 300px; /* Max width for feature icons */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-sports-football-betting-guide__feature-icon-small {
    max-width: 200px;
    height: 200px;
    object-fit: contain;
}

.page-sports-football-betting-guide__feature-title,
.page-sports-football-betting-guide__bet-title,
.page-sports-football-betting-guide__strategy-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--page-primary-color);
}

.page-sports-football-betting-guide__feature-description,
.page-sports-football-betting-guide__bet-description,
.page-sports-football-betting-guide__strategy-description {
    font-size: 1em;
    color: var(--page-text-dark);
}

/* How to Bet Section */
.page-sports-football-betting-guide__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-sports-football-betting-guide__step-item {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    padding: 25px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--page-primary-color);
}

.page-sports-football-betting-guide__step-title {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-sports-football-betting-guide__step-description a {
    color: var(--page-primary-color);
    text-decoration: underline;
}

.page-sports-football-betting-guide__step-description a:hover {
    color: darken(var(--page-primary-color), 10%);
}

/* Platform Features */
.page-sports-football-betting-guide__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-sports-football-betting-guide__feature-item {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-sports-football-betting-guide__feature-item-title {
    font-size: 1.3em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-sports-football-betting-guide__feature-item-description {
    font-size: 0.95em;
    color: var(--page-text-dark);
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-football-betting-guide__faq-item {
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
    font-weight: bold;
    font-size: 1.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-sports-football-betting-guide__faq-question:hover {
    background-color: darken(var(--page-primary-color), 5%);
}

.page-sports-football-betting-guide__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-sports-football-betting-guide__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--page-text-light);
}

.page-sports-football-betting-guide__faq-item.active .page-sports-football-betting-guide__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to accommodate content */
    padding: 20px;
}

.page-sports-football-betting-guide__faq-answer p {
    margin: 0;
    color: var(--page-text-light);
}

/* Bottom CTA */
.page-sports-football-betting-guide__cta-bottom-section {
    padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports-football-betting-guide__hero-title {
        font-size: 2.5em;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-sports-football-betting-guide__hero-title {
        font-size: 2em;
    }
    .page-sports-football-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-sports-football-betting-guide__paragraph {
        font-size: 0.95em;
    }
    .page-sports-football-betting-guide__features-grid,
    .page-sports-football-betting-guide__bets-grid,
    .page-sports-football-betting-guide__strategy-cards-grid,
    .page-sports-football-betting-guide__feature-list {
        grid-template-columns: 1fr;
    }
    .page-sports-football-betting-guide__hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    .page-sports-football-betting-guide__btn-primary,
    .page-sports-football-betting-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-sports-football-betting-guide__container {
        padding: 0 15px;
    }
    /* Mobile image responsiveness */
    .page-sports-football-betting-guide img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-sports-football-betting-guide__section,
    .page-sports-football-betting-guide__card,
    .page-sports-football-betting-guide__container,
    .page-sports-football-betting-guide__hero-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no horizontal scroll */
    }
    .page-sports-football-betting-guide__hero-section {
        padding-top: var(--header-offset, 120px) !important; /* Keep header offset on mobile */
    }
    .page-sports-football-betting-guide__feature-icon,
    .page-sports-football-betting-guide__feature-icon-small {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-sports-football-betting-guide__hero-title {
        font-size: 1.8em;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-sports-football-betting-guide__btn-primary,
    .page-sports-football-betting-guide__btn-secondary {
        padding: 12px 20px;
    }
}