/* style/sports-football-betting-guide.css */
:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color-page: #08160F;
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-sports-football-betting-guide {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for dark body background */
    background-color: var(--background-color-page);
}

.page-sports-football-betting-guide__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.page-sports-football-betting-guide__hero-image-wrapper {
    width: 100%;
    position: relative;
    margin-bottom: 40px;
}

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

.page-sports-football-betting-guide__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-sports-football-betting-guide__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Avoid fixed large font-size */
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

.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.1em;
    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(--button-gradient);
    color: var(--text-main);
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-sports-football-betting-guide__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

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

.page-sports-football-betting-guide__section {
    padding: 60px 0;
    box-sizing: border-box;
}

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

.page-sports-football-betting-guide__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--text-main);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.page-sports-football-betting-guide__section-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-sports-football-betting-guide__features-grid,
.page-sports-football-betting-guide__bet-types-grid,
.page-sports-football-betting-guide__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-sports-football-betting-guide__card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: var(--text-main);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-sports-football-betting-guide__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-sports-football-betting-guide__feature-title,
.page-sports-football-betting-guide__bet-type-title,
.page-sports-football-betting-guide__strategy-title,
.page-sports-football-betting-guide__step-title,
.page-sports-football-betting-guide__management-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-sports-football-betting-guide__feature-text,
.page-sports-football-betting-guide__bet-type-text,
.page-sports-football-betting-guide__strategy-text,
.page-sports-football-betting-guide__step-text,
.page-sports-football-betting-guide__management-text {
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-sports-football-betting-guide__feature-image,
.page-sports-football-betting-guide__bet-types-image,
.page-sports-football-betting-guide__strategy-image,
.page-sports-football-betting-guide__cta-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 30px;
    object-fit: cover;
}

.page-sports-football-betting-guide__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-sports-football-betting-guide__step-item {
    text-align: left;
}

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

.page-sports-football-betting-guide__step-item a:hover {
    color: var(--secondary-color);
}

.page-sports-football-betting-guide__management-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.page-sports-football-betting-guide__management-item {
    text-align: left;
}

.page-sports-football-betting-guide__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-sports-football-betting-guide__faq-item {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    overflow: hidden;
}

.page-sports-football-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-main);
    position: relative;
    list-style: none;
}

.page-sports-football-betting-guide__faq-question::-webkit-details-marker {
    display: none;
}

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

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

.page-sports-football-betting-guide__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1em;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-sports-football-betting-guide__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
    .page-sports-football-betting-guide__section-title {
        font-size: clamp(1.6em, 4vw, 2.2em);
    }
    .page-sports-football-betting-guide__hero-image-wrapper {
        margin-bottom: 20px;
    }
    .page-sports-football-betting-guide__hero-content {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .page-sports-football-betting-guide__hero-section {
        padding-top: 10px !important; /* body handles --header-offset */
        padding-bottom: 40px;
    }
    .page-sports-football-betting-guide__main-title {
        font-size: clamp(1.5em, 6vw, 2.5em);
        margin-bottom: 15px;
    }
    .page-sports-football-betting-guide__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }
    .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;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto; /* Center buttons if they stack */
    }

    .page-sports-football-betting-guide__section {
        padding: 40px 0;
    }
    .page-sports-football-betting-guide__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-bottom: 15px;
    }
    .page-sports-football-betting-guide__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-sports-football-betting-guide__features-grid,
    .page-sports-football-betting-guide__bet-types-grid,
    .page-sports-football-betting-guide__strategy-grid,
    .page-sports-football-betting-guide__steps-list,
    .page-sports-football-betting-guide__management-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-sports-football-betting-guide__card {
        padding: 25px;
    }
    .page-sports-football-betting-guide__feature-title,
    .page-sports-football-betting-guide__bet-type-title,
    .page-sports-football-betting-guide__strategy-title,
    .page-sports-football-betting-guide__step-title,
    .page-sports-football-betting-guide__management-title {
        font-size: 1.3em;
    }
    .page-sports-football-betting-guide__feature-text,
    .page-sports-football-betting-guide__bet-type-text,
    .page-sports-football-betting-guide__strategy-text,
    .page-sports-football-betting-guide__step-text,
    .page-sports-football-betting-guide__management-text {
        font-size: 0.95em;
    }

    /* Images responsive */
    .page-sports-football-betting-guide img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Ensure content containers have padding for mobile */
    .page-sports-football-betting-guide__hero-content,
    .page-sports-football-betting-guide__cta-buttons,
    .page-sports-football-betting-guide__card,
    .page-sports-football-betting-guide__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
    }

    /* FAQ specific adjustments for mobile */
    .page-sports-football-betting-guide__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-sports-football-betting-guide__faq-answer {
        padding: 0 20px 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-sports-football-betting-guide__main-title {
        font-size: clamp(1.2em, 7vw, 2em);
    }
    .page-sports-football-betting-guide__section-title {
        font-size: clamp(1.2em, 6vw, 1.8em);
    }
    .page-sports-football-betting-guide__btn-large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
}