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

/* Custom Colors */
:root {
    --sfb-bg-primary: #08160F;
    --sfb-bg-card: #11271B;
    --sfb-text-main: #F2FFF6;
    --sfb-text-secondary: #A7D9B8;
    --sfb-border: #2E7A4E;
    --sfb-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --sfb-glow: #57E38D;
    --sfb-gold: #F2C14E;
    --sfb-divider: #1E3A2A;
    --sfb-deep-green: #0A4B2C;
}

.page-sports-football-betting-guide {
    background-color: var(--sfb-bg-primary);
    color: var(--sfb-text-main);
    font-family: 'Arial', sans-serif;
}

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

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: var(--sfb-bg-primary);
    overflow: hidden;
}

.page-sports-football-betting-guide__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-sports-football-betting-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-sports-football-betting-guide__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -80px; /* Overlap slightly for visual flow */
    background-color: var(--sfb-bg-card);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--sfb-border);
    z-index: 10;
}

.page-sports-football-betting-guide__hero-title {
    color: var(--sfb-gold);
    font-size: clamp(2.2rem, 3.5vw, 3.2rem); /* H1 size with clamp */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.page-sports-football-betting-guide__hero-description {
    color: var(--sfb-text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

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

.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: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-sports-football-betting-guide__btn-primary {
    background: var(--sfb-btn-gradient);
    color: var(--sfb-text-main);
    border: none;
}

.page-sports-football-betting-guide__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(42, 209, 111, 0.4);
}

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

.page-sports-football-betting-guide__btn-secondary:hover {
    background-color: var(--sfb-glow);
    color: var(--sfb-bg-primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(87, 227, 141, 0.3);
}

/* General Section Styles */
.page-sports-football-betting-guide__section-title {
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    color: var(--sfb-gold);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.3;
}

.page-sports-football-betting-guide__text-block {
    color: var(--sfb-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.page-sports-football-betting-guide__text-block strong {
    color: var(--sfb-text-main);
}

.page-sports-football-betting-guide__text-block a {
    color: var(--sfb-glow);
    text-decoration: none;
}

.page-sports-football-betting-guide__text-block a:hover {
    text-decoration: underline;
}

.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__bet-types-section,
.page-sports-football-betting-guide__strategies-section,
.page-sports-football-betting-guide__faq-section {
    padding: 60px 0;
    background-color: var(--sfb-bg-primary);
}

.page-sports-football-betting-guide__dark-section {
    background-color: var(--sfb-bg-card);
    color: var(--sfb-text-main);
    padding: 60px 0;
}

/* Advantages Section */
.page-sports-football-betting-guide__grid-3-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-sports-football-betting-guide__advantage-card {
    background-color: var(--sfb-bg-card);
    border: 1px solid var(--sfb-border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football-betting-guide__advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    min-width: 200px;
    min-height: 200px;
}

.page-sports-football-betting-guide__card-title {
    color: var(--sfb-text-main);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.page-sports-football-betting-guide__card-description {
    color: var(--sfb-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.page-sports-football-betting-guide__button-group {
    text-align: center;
    margin-top: 30px;
}

/* Bet Types Section */
.page-sports-football-betting-guide__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-sports-football-betting-guide__list-item {
    background-color: var(--sfb-bg-card);
    border: 1px solid var(--sfb-border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
}

.page-sports-football-betting-guide__list-item:last-child {
    margin-bottom: 0;
}

.page-sports-football-betting-guide__list-item:hover {
    background-color: var(--sfb-deep-green);
}

.page-sports-football-betting-guide__list-title {
    color: var(--sfb-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-sports-football-betting-guide__list-description {
    color: var(--sfb-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* How to Bet Section */
.page-sports-football-betting-guide__steps-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0;
}

.page-sports-football-betting-guide__step-item {
    background-color: var(--sfb-bg-primary);
    border: 1px solid var(--sfb-border);
    border-radius: 10px;
    padding: 25px 25px 25px 70px;
    margin-bottom: 20px;
    position: relative;
    color: var(--sfb-text-main);
}

.page-sports-football-betting-guide__step-item::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 25px;
    top: 25px;
    width: 35px;
    height: 35px;
    background: var(--sfb-btn-gradient);
    color: var(--sfb-text-main);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.page-sports-football-betting-guide__step-title {
    color: var(--sfb-gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-sports-football-betting-guide__step-description {
    color: var(--sfb-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Strategies Section */
.page-sports-football-betting-guide__grid-2-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-sports-football-betting-guide__strategy-card {
    background-color: var(--sfb-bg-card);
    border: 1px solid var(--sfb-border);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-sports-football-betting-guide__strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    min-height: 200px;
}

/* Responsible Gambling Section */
.page-sports-football-betting-guide__responsible-gambling-section .page-sports-football-betting-guide__list-item {
    background-color: var(--sfb-bg-primary);
    border-color: var(--sfb-divider);
}

.page-sports-football-betting-guide__responsible-gambling-section .page-sports-football-betting-guide__list-title {
    color: var(--sfb-text-main);
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-list {
    margin-top: 30px;
}

.page-sports-football-betting-guide__faq-item {
    background-color: var(--sfb-bg-card);
    border: 1px solid var(--sfb-border);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-sports-football-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    color: var(--sfb-text-main);
    font-size: 1.15rem;
    font-weight: 600;
    background-color: var(--sfb-deep-green);
    border-bottom: 1px solid var(--sfb-divider);
}

.page-sports-football-betting-guide__faq-item[open] .page-sports-football-betting-guide__faq-question {
    border-bottom: 1px solid var(--sfb-border);
}

.page-sports-football-betting-guide__faq-qtext {
    flex-grow: 1;
    color: var(--sfb-gold);
}

.page-sports-football-betting-guide__faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-left: 15px;
    color: var(--sfb-glow);
}

.page-sports-football-betting-guide__faq-answer {
    padding: 20px;
    color: var(--sfb-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    border-top: none;
}

.page-sports-football-betting-guide__faq-item:not([open]) .page-sports-football-betting-guide__faq-answer {
  display: none; /* Hide answer when not open for details tag */
}

/* Contact CTA Section */
.page-sports-football-betting-guide__contact-cta-section {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-sports-football-betting-guide__hero-content {
        margin-top: -60px;
        padding: 30px;
    }

    .page-sports-football-betting-guide__hero-title {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .page-sports-football-betting-guide__hero-description {
        font-size: 1rem;
    }

    .page-sports-football-betting-guide__grid-3-columns,
    .page-sports-football-betting-guide__grid-2-columns {
        gap: 20px;
    }

    .page-sports-football-betting-guide__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    .page-sports-football-betting-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-sports-football-betting-guide__hero-content {
        margin-top: -40px;
        padding: 20px;
    }

    .page-sports-football-betting-guide__hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .page-sports-football-betting-guide__hero-description {
        font-size: 0.95rem;
    }

    .page-sports-football-betting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-sports-football-betting-guide__btn-primary,
    .page-sports-football-betting-guide__btn-secondary {
        padding: 12px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto;
    }

    .page-sports-football-betting-guide__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-sports-football-betting-guide__introduction-section,
    .page-sports-football-betting-guide__bet-types-section,
    .page-sports-football-betting-guide__strategies-section,
    .page-sports-football-betting-guide__faq-section,
    .page-sports-football-betting-guide__dark-section {
        padding: 40px 0;
    }

    .page-sports-football-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !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-image-wrapper,
    .page-sports-football-betting-guide__content-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    
    .page-sports-football-betting-guide__video-section {
        padding-top: 10px !important; /* body handles --header-offset */
    }

    .page-sports-football-betting-guide__grid-3-columns,
    .page-sports-football-betting-guide__grid-2-columns {
        grid-template-columns: 1fr;
    }

    .page-sports-football-betting-guide__card-image {
        height: auto; /* Allow height to adjust on mobile */
    }
}

/* Color Contrast Fixes (if needed - primary colors are designed for contrast) */
.page-sports-football-betting-guide__light-bg {
    color: #333333; /* For light backgrounds, use dark text */
    background: #ffffff;
}

.page-sports-football-betting-guide p, .page-sports-football-betting-guide li {
    color: var(--sfb-text-secondary); /* Ensure readability */
}

.page-sports-football-betting-guide__section-title {
    color: var(--sfb-gold); /* Ensure readability */
}

.page-sports-football-betting-guide__card-title {
    color: var(--sfb-text-main); /* Ensure readability */
}

.page-sports-football-betting-guide__faq-qtext {
    color: var(--sfb-gold); /* Ensure readability */
}

.page-sports-football-betting-guide__faq-toggle {
    color: var(--sfb-glow); /* Ensure readability */
}