/* style/news-match-predictions.css */

:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-light: #ffffff;
    --text-dark: #333333;
    --bg-dark: #1a1a2e;
    --card-bg-dark: rgba(255, 255, 255, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-news-match-predictions {
    font-family: 'Arial', sans-serif;
    color: var(--text-light); /* Base text color for dark body background */
    background-color: var(--bg-dark); /* Inherited from shared.css body */
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-news-match-predictions__hero-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.page-news-match-predictions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-news-match-predictions__description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-news-match-predictions__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.page-news-match-predictions__cta-button:hover {
    background: var(--secondary-color);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
}

.page-news-match-predictions__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px;
    padding-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-news-match-predictions__introduction-section,
.page-news-match-predictions__other-sports-section,
.page-news-match-predictions__why-choose-section {
    background-color: var(--bg-dark);
    padding: 60px 0;
}

.page-news-match-predictions__sports-section,
.page-news-match-predictions__tips-section,
.page-news-match-predictions__cta-bottom-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
    color: var(--text-light);
}

.page-news-match-predictions__content-block {
    background-color: var(--card-bg-dark);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-news-match-predictions__content-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-news-match-predictions__content-block strong {
    color: var(--primary-color);
}

.page-news-match-predictions__image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.page-news-match-predictions__sub-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.page-news-match-predictions__list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
}

.page-news-match-predictions__list li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-news-match-predictions__list li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-news-match-predictions__list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-news-match-predictions__cta-bottom-section {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(45deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
}

/* Ensure text links within content are visible */
.page-news-match-predictions__content-block a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-news-match-predictions__content-block a:hover {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-news-match-predictions__main-title {
        font-size: 3em;
    }
    .page-news-match-predictions__description {
        font-size: 1.15em;
    }
    .page-news-match-predictions__section-title {
        font-size: 2em;
    }
    .page-news-match-predictions__sub-title {
        font-size: 1.6em;
    }
    .page-news-match-predictions__content-block {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-news-match-predictions {
        padding-top: var(--header-offset, 120px) !important;
    }
    .page-news-match-predictions__hero-section {
        padding: 60px 15px;
    }
    .page-news-match-predictions__main-title {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    .page-news-match-predictions__description {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-news-match-predictions__cta-button {
        padding: 15px 30px;
        font-size: 1em;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-news-match-predictions__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-news-match-predictions__introduction-section,
    .page-news-match-predictions__other-sports-section,
    .page-news-match-predictions__why-choose-section,
    .page-news-match-predictions__sports-section,
    .page-news-match-predictions__tips-section,
    .page-news-match-predictions__cta-bottom-section {
        padding: 40px 0;
    }
    .page-news-match-predictions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-news-match-predictions__content-block {
        padding: 20px;
        margin-bottom: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .page-news-match-predictions__content-block p,
    .page-news-match-predictions__list li {
        font-size: 0.95em;
    }
    .page-news-match-predictions__sub-title {
        font-size: 1.4em;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .page-news-match-predictions__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 20px 0;
    }
    .page-news-match-predictions__list {
        padding-left: 20px;
    }
}