/* style/resources-high-win-rate-odds.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-resources-high-win-rate-odds {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Inherit from body or shared, ensuring contrast handling */
}

/* Hero Section */
.page-resources-high-win-rate-odds__hero-section {
    position: relative;
    padding: 80px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #017439; /* Primary brand color for hero background */
    color: #ffffff; /* Light text for dark background */
    min-height: 500px;
}

.page-resources-high-win-rate-odds__hero-content {
    max-width: 900px;
    z-index: 10;
    margin-bottom: 30px;
}

.page-resources-high-win-rate-odds__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-resources-high-win-rate-odds__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #ffffff;
}

.page-resources-high-win-rate-odds__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-resources-high-win-rate-odds__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    display: block;
}

/* General Content Area */
.page-resources-high-win-rate-odds__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
}

.page-resources-high-win-rate-odds__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #017439; /* Darker color for titles on light backgrounds */
}

.page-resources-high-win-rate-odds__section-title--light {
    color: #ffffff; /* Light color for titles on dark backgrounds */
}

.page-resources-high-win-rate-odds__sub-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #017439;
}

.page-resources-high-win-rate-odds__paragraph--light {
    color: #ffffff;
}

.page-resources-high-win-rate-odds__highlight-text {
    color: #FFFF00; /* Highlight color for important keywords */
    font-weight: bold;
}

/* Buttons */
.page-resources-high-win-rate-odds__btn-primary,
.page-resources-high-win-rate-odds__btn-secondary,
.page-resources-high-win-rate-odds a[class*="button"],
.page-resources-high-win-rate-odds a[class*="btn"] {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsive buttons */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
}

.page-resources-high-win-rate-odds__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
    margin: 10px;
}

.page-resources-high-win-rate-odds__btn-primary:hover {
    background-color: #e02020;
    border-color: #e02020;
}

.page-resources-high-win-rate-odds__btn-secondary {
    background-color: transparent;
    color: #017439;
    border: 2px solid #017439;
    margin: 10px;
}

.page-resources-high-win-rate-odds__btn-secondary:hover {
    background-color: #017439;
    color: #ffffff;
}

/* Light background for content sections */
.page-resources-high-win-rate-odds__light-bg {
    background-color: #ffffff; /* White background */
    color: #333333; /* Dark text for light background */
}