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

:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --login-button-color: #EA7C07;
    --background-light: #ffffff;
    --background-dark: #1a1a1a; /* Adjusted for better contrast with light text */
    --border-light: #e0e0e0;
}

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

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

/* Header Offset for main content */
.page-sports-football-betting-guide__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-sports-football-betting-guide__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-sports-football-betting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

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

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0d47a1 100%);
    color: var(--text-light);
    min-height: 600px;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.page-sports-football-betting-guide__hero-content {
    flex: 1;
    padding-right: 40px;
    max-width: 600px;
    z-index: 1;
}

.page-sports-football-betting-guide__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--secondary-color);
}

.page-sports-football-betting-guide__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-sports-football-betting-guide__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
}

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

/* CTA Buttons */
.page-sports-football-betting-guide__cta-buttons {
    display: flex;
    gap: 20px;
    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: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-sports-football-betting-guide__btn-primary {
    background-color: var(--login-button-color); /* Use specified login color */
    color: var(--text-light);
    border: 2px solid var(--login-button-color);
}

.page-sports-football-betting-guide__btn-primary:hover {
    background-color: darken(var(--login-button-color), 10%);
    transform: translateY(-3px);
}

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

.page-sports-football-betting-guide__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sections */
.page-sports-football-betting-guide__introduction-section,
.page-sports-football-betting-guide__strategies-section,
.page-sports-football-betting-guide__responsible-gambling-section,
.page-sports-football-betting-guide__cta-section {
    padding: 80px 0;
    background-color: var(--background-light);
    color: var(--text-dark);
}

.page-sports-football-betting-guide__why-choose-section,
.page-sports-football-betting-guide__bet-types-section,
.page-sports-football-betting-guide__how-to-bet-section,
.page-sports-football-betting-guide__live-betting-section,
.page-sports-football-betting-guide__promotions-section,
.page-sports-football-betting-guide__faq-section {
    padding: 80px 0;
}

.page-sports-football-betting-guide__dark-bg {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__section-title {
    color: var(--secondary-color);
}

.page-sports-football-betting-guide__dark-bg .page-sports-football-betting-guide__section-title::after {
    background-color: var(--secondary-color);
}

.page-sports-football-betting-guide__light-bg {
    background-color: var(--background-light);
    color: var(--text-dark);
}

/* Why Choose Section */
.page-sports-football-betting-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-sports-football-betting-guide__feature-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--text-dark);
}

.page-sports-football-betting-guide__feature-card:hover {
    transform: translateY(-10px);
}

.page-sports-football-betting-guide__feature-icon {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

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

.page-sports-football-betting-guide__feature-description {
    font-size: 1em;
    line-height: 1.6;
}

/* Bet Types Section */
.page-sports-football-betting-guide__bet-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-sports-football-betting-guide__bet-type-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports-football-betting-guide__bet-type-card:hover {
    transform: translateY(-10px);
}

.page-sports-football-betting-guide__bet-type-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-sports-football-betting-guide__bet-type-description {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Strategies Section */
.page-sports-football-betting-guide__strategy-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

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

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

.page-sports-football-betting-guide__strategy-description {
    font-size: 1em;
    line-height: 1.6;
}

.page-sports-football-betting-guide__strategy-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* How to Bet Section */
.page-sports-football-betting-guide__steps-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-sports-football-betting-guide__step-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    padding-left: 70px;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-sports-football-betting-guide__step-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 20px;
    top: 25px;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

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

.page-sports-football-betting-guide__step-description {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

/* Live Betting Section */
.page-sports-football-betting-guide__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 900px;
}

.page-sports-football-betting-guide__video-link-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
}

.page-sports-football-betting-guide__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.page-sports-football-betting-guide__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.5em;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none; /* Allow click through to video link */
}

.page-sports-football-betting-guide__video-link-container:hover .page-sports-football-betting-guide__video-overlay {
    opacity: 1;
}

/* Promotions Section */
.page-sports-football-betting-guide__promo-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-sports-football-betting-guide__promo-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-sports-football-betting-guide__promo-description {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsible Gambling Section */
.page-sports-football-betting-guide__responsible-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.page-sports-football-betting-guide__responsible-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-sports-football-betting-guide__responsible-list {
    flex: 1;
    list-style: disc;
    padding-left: 20px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.page-sports-football-betting-guide__responsible-item {
    margin-bottom: 10px;
}

/* FAQ Section */
.page-sports-football-betting-guide__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-sports-football-betting-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--secondary-color);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
    list-style: none; /* For details/summary default icon */
}

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

.page-sports-football-betting-guide__faq-qtext {
    flex-grow: 1;
}

.page-sports-football-betting-guide__faq-toggle {
    font-size: 1.5em;
    margin-left: 15px;
    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;
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.8;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .page-sports-football-betting-guide__hero-title {
        font-size: 3em;
    }
    .page-sports-football-betting-guide__hero-description {
        font-size: 1.1em;
    }
    .page-sports-football-betting-guide__hero-content {
        padding-right: 20px;
    }
    .page-sports-football-betting-guide__hero-image {
        max-width: 600px;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: 2em;
    }
    .page-sports-football-betting-guide__features-grid,
    .page-sports-football-betting-guide__bet-type-grid,
    .page-sports-football-betting-guide__steps-list,
    .page-sports-football-betting-guide__promo-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-sports-football-betting-guide__hero-section {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: var(--header-offset, 120px) 20px 40px;
    }
    .page-sports-football-betting-guide__hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }
    .page-sports-football-betting-guide__hero-title {
        font-size: 2.5em;
    }
    .page-sports-football-betting-guide__hero-description {
        font-size: 1em;
    }
    .page-sports-football-betting-guide__hero-image-wrapper {
        justify-content: center;
    }
    .page-sports-football-betting-guide__hero-image {
        max-width: 100%;
    }
    .page-sports-football-betting-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    .page-sports-football-betting-guide__btn-primary,
    .page-sports-football-betting-guide__btn-secondary {
        width: 100%;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-sports-football-betting-guide__section-title {
        font-size: 1.8em;
    }
    .page-sports-football-betting-guide__introduction-section,
    .page-sports-football-betting-guide__why-choose-section,
    .page-sports-football-betting-guide__bet-types-section,
    .page-sports-football-betting-guide__strategies-section,
    .page-sports-football-betting-guide__how-to-bet-section,
    .page-sports-football-betting-guide__live-betting-section,
    .page-sports-football-betting-guide__promotions-section,
    .page-sports-football-betting-guide__responsible-gambling-section,
    .page-sports-football-betting-guide__faq-section,
    .page-sports-football-betting-guide__cta-section {
        padding: 60px 0;
    }

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

    .page-sports-football-betting-guide__responsible-content {
        flex-direction: column;
        text-align: center;
    }

    .page-sports-football-betting-guide__responsible-image {
        max-width: 100%;
    }

    .page-sports-football-betting-guide__responsible-list {
        padding-left: 0;
        text-align: left;
    }

    .page-sports-football-betting-guide img {
        max-width: 100% !important;
        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__video-section,
    .page-sports-football-betting-guide__video-container,
    .page-sports-football-betting-guide__video-wrapper,
    .page-sports-football-betting-guide__cta-buttons,
    .page-sports-football-betting-guide__button-group,
    .page-sports-football-betting-guide__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important;
    }

    .page-sports-football-betting-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
    }

    .page-sports-football-betting-guide video,
    .page-sports-football-betting-guide__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-sports-football-betting-guide__live-betting-section {
        padding-top: var(--header-offset, 120px) !important; 
    }
}

@media (max-width: 480px) {
    .page-sports-football-betting-guide__hero-title {
        font-size: 2em;
    }
    .page-sports-football-betting-guide__section-title {
        font-size: 1.5em;
    }
    .page-sports-football-betting-guide__features-grid,
    .page-sports-football-betting-guide__bet-type-grid,
    .page-sports-football-betting-guide__steps-list,
    .page-sports-football-betting-guide__promo-list {
        grid-template-columns: 1fr;
    }
    .page-sports-football-betting-guide__step-item {
        padding-left: 60px;
    }
    .page-sports-football-betting-guide__step-item::before {
        left: 15px;
        top: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.2em;
    }
}