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

/* Base styles for the page content */
.page-sports-football-betting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

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

/* Section specific styles */
.page-sports-football-betting-guide__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-sports-football-betting-guide__section-description {
    font-size: 1.1em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-sports-football-betting-guide__sub-title {
    font-size: 1.8em;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports-football-betting-guide__text-block {
    font-size: 1em;
    color: #f0f0f0;
    margin-bottom: 15px;
}

/* Color scheme application */
.page-sports-football-betting-guide__dark-bg {
    background-color: #1a1a1a; /* Slightly lighter than body for sections */
    color: #ffffff;
    padding: 60px 0;
}

.page-sports-football-betting-guide__light-bg {
    background-color: #2a2a2a; /* Light gray for sections */
    color: #f0f0f0;
    padding: 60px 0;
}

/* Hero Section */
.page-sports-football-betting-guide__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    overflow: hidden;
    text-align: center;
    background-color: #017439; /* Brand color as background for hero */
}

.page-sports-football-betting-guide__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    border-radius: 10px;
    margin: 20px;
}

.page-sports-football-betting-guide__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

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

.page-sports-football-betting-guide__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3; /* Make background image subtle */
}

/* 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;
    font-size: 1.1em;
    transition: all 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: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-sports-football-betting-guide__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
    transform: translateY(-2px);
}

.page-sports-football-betting-guide__btn-secondary {
    background-color: transparent;
    color: #017439; /* Brand color */
    border: 2px solid #017439;
}

.page-sports-football-betting-guide__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-sports-football-betting-guide__btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Video Section */
.page-sports-football-betting-guide__video-section {
    padding: 60px 20px;
    background-color: #111; /* Ensure dark background for this section */
    position: relative;
    overflow: hidden;
}

.page-sports-football-betting-guide__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1280px; /* Max width for the video container */
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.page-sports-football-betting-guide__video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

.page-sports-football-betting-guide__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2em;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.page-sports-football-betting-guide__video-overlay:hover {
    opacity: 0.8;
}

.page-sports-football-betting-guide__play-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.page-sports-football-betting-guide__overlay-text {
    font-size: 1.2em;
    text-align: center;
    padding: 0 20px;
}


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

.page-sports-football-betting-guide__step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.page-sports-football-betting-guide__card-title {
    font-size: 1.5em;
    color: #017439; /* Brand color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-sports-football-betting-guide__card-text {
    color: #f0f0f0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-sports-football-betting-guide__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Odds Types Section */
.page-sports-football-betting-guide__odds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-sports-football-betting-guide__odds-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #017439;
}

/* Analysis Section */
.page-sports-football-betting-guide__analysis-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.page-sports-football-betting-guide__analysis-text {
    flex: 2;
}

.page-sports-football-betting-guide__analysis-image-wrapper {
    flex: 1;
    min-width: 300px;
}

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

/* Strategy Section */
.page-sports-football-betting-guide__strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-sports-football-betting-guide__strategy-card {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-bottom: 5px solid #017439;
}

.page-sports-football-betting-guide__cta-bottom {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(1, 116, 57, 0.8); /* Darker brand color for CTA */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-sports-football-betting-guide__cta-image {
    max-width: 40%;
    height: auto;
    border-radius: 8px;
}

.page-sports-football-betting-guide__cta-text-content {
    flex: 1;
    color: #ffffff;
}

/* Benefits Section */
.page-sports-football-betting-guide__benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}