/* style/resources-bet88-odds-strategy.css */
:root {
    --primary-color: #017439;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --button-register-bg: #C30808;
    --button-register-text: #FFFF00;
    --button-login-bg: #C30808;
    --button-login-text: #FFFF00;
    --light-background: #f8f8f8; /* A light background for general sections */
    --dark-background: var(--primary-color); /* Using primary color for dark sections */
}

.page-resources-bet88-odds-strategy {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color); /* Default background, will be overridden by shared.css body */
}

.page-resources-bet88-odds-strategy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    background: linear-gradient(135deg, var(--primary-color), #004d2b); /* Darker gradient for hero background */
    color: var(--text-light);
}

.page-resources-bet88-odds-strategy__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-resources-bet88-odds-strategy__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-resources-bet88-odds-strategy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: none; /* Ensure no filter is applied */
}

.page-resources-bet88-odds-strategy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-resources-bet88-odds-strategy__hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-bet88-odds-strategy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
}

.page-resources-bet88-odds-strategy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-register-bg); /* Using specific register button color */
    color: var(--button-register-text); /* Using specific register button text color */
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    box-sizing: border-box; /* Ensure padding and border are included in width */
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}