/* style/match-predictions.css */
.page-match-predictions {
    color: #ffffff; /* Body background is dark (#0a0a0a), so use light text */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-match-predictions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-match-predictions__section {
    padding: 60px 0;
    position: relative;
}

.page-match-predictions__section-title {
    font-size: 2.5em;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-match-predictions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-match-predictions__text-link {
    color: #26A9E0;
    text-decoration: none;
    font-weight: bold;
}

.page-match-predictions__text-link:hover {
    text-decoration: underline;
}

.page-match-predictions__highlight {
    color: #26A9E0;
    font-weight: bold;
}

/* Hero Section */
.page-match-predictions__hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0; /* Adjusted for header offset in main content */
    padding-top: var(--header-offset, 120px);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-match-predictions__hero-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    padding: 0 20px;
}

.page-match-predictions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: bold;
}

.page-match-predictions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-match-predictions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}

.page-match-predictions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    filter: brightness(0.7); /* Allowed for background images to ensure text readability, not changing core image colors */
}

.page-match-predictions__hero-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.page-match-predictions__btn-primary,
.page-match-predictions__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
    text-align: center;
}

.page-match-predictions__btn-primary {
    background-color: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}