/* style/resources-betting-tips.css */

/* Base styles for the page */
.page-resources-betting-tips {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background (body is #FFFFFF) */
    background-color: var(--secondary-color, #FFFFFF); /* Ensure consistency with body background */
}

/* Hero Section */
.page-resources-betting-tips__hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 0; /* Assumes shared.css handles body padding-top. If not, set var(--header-offset, 120px) */
    color: #FFFFFF;
}

.page-resources-betting-tips__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-resources-betting-tips__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 2;
}

.page-resources-betting-tips__hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 20px;
}

.page-resources-betting-tips__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Custom color for important titles */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}