/* style/resources-sports-betting-strategy.css */

/* Base styles for the page content, ensuring contrast with dark body background */
.page-resources-sports-betting-strategy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Light text for dark body background */
    background-color: #121212; /* Inherited from body, but good to be explicit for context */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

/* Hero Section */
.page-resources-sports-betting-strategy__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
    background-color: #017439; /* Brand primary color */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
}

.page-resources-sports-betting-strategy__hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.page-resources-sports-betting-strategy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-resources-sports-betting-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-resources-sports-betting-strategy__hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-resources-sports-betting-strategy__btn-primary,
.page-resources-sports-betting-strategy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

/* Register/Login button style */
.page-resources-sports-betting-strategy__btn-primary {
    background-color: #C30808; /* Custom color for Register */
    color: #FFFF00; /* Custom font color for Register */
    border: 2px solid #C30808;
}

.page-resources-sports-betting-strategy__btn-primary:hover {
    background-color: #e00b0b;
    border-color: #e00b0b;
    color: #fff;
}

.page-resources-sports-betting-strategy__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}

.page-resources-sports-betting-strategy__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005a2b;
    border-color: #005a2b;
}

.page-resources-sports-betting-strategy__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 50%;
}

.page-resources-sports-betting-strategy__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

/* Section common styles */
.page-resources-sports-betting-strategy__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Will be set by parent section's color */
}

.page-resources-sports-betting-strategy__sub-title {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: inherit;
}

.page-resources-sports-betting-strategy__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: inherit;
}

.page-resources-sports-betting-strategy__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Light Background Section */
.page-resources-sports-betting-strategy__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

/* Dark Background Section */
.page-resources-sports-betting-strategy__dark-bg {
    background-color: #017439; /* Brand primary color */
    color: #ffffff; /* Light text for dark background */
    padding: 60px 0;
}

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

.page-resources-sports-betting-strategy__card {
    background-color: #ffffff;
    color: #333333;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.page-resources-sports-betting-strategy__card-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #017439; /* Brand color for card titles */
}

.page-resources-sports-betting-strategy__card-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.page-resources-sports-betting-strategy__card-text {
    font-size: 1em;
    color: #555555;
}

/* Advanced Tips Section */
.page-resources-sports-betting-strategy__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.page-resources-sports-betting-strategy__list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-resources-sports-betting-strategy__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: inherit;
}