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

/* Base styles for the page content */
.page-resources-sports-betting-trends {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: var(--dark-bg); /* Inherited from shared.css */
}

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

/* Fixed header offset */
.page-resources-sports-betting-trends__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-resources-sports-betting-trends__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Primary brand color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-resources-sports-betting-trends__section-subtitle {
    font-size: 1.2em;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 60px;
}

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

.page-resources-sports-betting-trends__highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Hero Section */
.page-resources-sports-betting-trends__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    overflow: hidden;
    background-color: #1a1a1a; /* Fallback background */
}

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

.page-resources-sports-betting-trends__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-sports-betting-trends__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.1;
}

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

/* Buttons */
.page-resources-sports-betting-trends__btn-primary,
.page-resources-sports-betting-trends__btn-secondary,
.page-resources-sports-betting-trends__btn-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-resources-sports-betting-trends__btn-primary {
    background-color: #FFD700;
    color: #1a1a1a; /* Dark text for golden button */
    border: 2px solid #FFD700;
    margin-top: 20px;
}

.page-resources-sports-betting-trends__btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}