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

/* Variables for consistency */
:root {
    --iwin-primary-color: #0A1931;
    --iwin-secondary-color: #FFD700;
    --iwin-text-light: #f5f5f5; /* Off-white for dark backgrounds */
    --iwin-text-dark: #1a1a1a; /* Very dark gray for light backgrounds */
    --iwin-accent-color: #f5e6ce; /* Complementary for dark blue */
    --iwin-hover-gold: #e6c200;
}

.page-latest-news-match-predictions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--iwin-text-dark);
    background-color: #f8f9fa;
}

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

/* Hero Section */
.page-latest-news-match-predictions .hero-section {
    background: linear-gradient(135deg, var(--iwin-primary-color), #2a3d5f);
    color: var(--iwin-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-latest-news-match-predictions .hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.page-latest-news-match-predictions .hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* General Buttons */
.page-latest-news-match-predictions .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-latest-news-match-predictions .btn-primary {
    background-color: var(--iwin-secondary-color);
    color: var(--iwin-primary-color);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-latest-news-match-predictions .btn-primary:hover {
    background-color: var(--iwin-hover-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-latest-news-match-predictions .btn-secondary {
    background-color: transparent;
    color: var(--iwin-secondary-color);
    border: 2px solid var(--iwin-secondary-color);
}

.page-latest-news-match-predictions .btn-secondary:hover {
    background-color: var(--iwin-secondary-color);
    color: var(--iwin-primary-color);
    transform: translateY(-3px);
}

.page-latest-news-match-predictions .btn-lg {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-latest-news-match-predictions .btn-sm {
    padding: 8px 15px;
    font-size: 0.9em;
    border-radius: 5px;
}

/* Section Titles */
.page-latest-news-match-predictions .section-title {
    font-size: 2.8em;
    color: var(--iwin-primary-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.page-latest-news-match-predictions .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--iwin-secondary-color);
    border-radius: 2px;
}

.page-latest-news-match-predictions .section-description {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* About Predictions Section */
.page-latest-news-match-predictions .about-predictions-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-latest-news-match-predictions .grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-latest-news-match-predictions .grid-2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.page-latest-news-match-predictions .content-block p {
    margin-bottom: 15px;
    color: var(--iwin-text-dark);
}

.page-latest-news-match-predictions .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-latest-news-match-predictions .feature-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--iwin-primary-color);
}

.page-latest-news-match-predictions .feature-list li i {
    color: var(--iwin-secondary-color);
    margin-right: 10px;
}

.page-latest-news-match-predictions .image-block {
    text-align: center;
}

.page-latest-news-match-predictions .responsive-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Featured Matches Section */
.page-latest-news-match-predictions .featured-matches-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-latest-news-match-predictions .match-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-latest-news-match-predictions .match-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-latest-news-match-predictions .match-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-news-match-predictions .match-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.page-latest-news-match-predictions .match-card h3 {
    font-size: 1.4em;
    color: var(--iwin-primary-color);
    margin: 20px 20px 10px;
    flex-grow: 1;
}

.page-latest-news-match-predictions .match-details,
.page-latest-news-match-predictions .prediction-summary {
    font-size: 0.95em;
    color: #666;
    margin: 0 20px 15px;
}

.page-latest-news-match-predictions .match-card .btn {
    margin: 0 20px 20px;
    align-self: flex-start;
}

.page-latest-news-match-predictions .text-center {
    text-align: center;
}

.page-latest-news-match-predictions .mt-40 {
    margin-top: 40px;
}

/* Methodology Section */
.page-latest-news-match-predictions .methodology-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-latest-news-match-predictions .grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-latest-news-match-predictions .method-step {
    text-align: center;
    padding: 30px;
    background-color: #fdfdfd;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news-match-predictions .method-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-latest-news-match-predictions .method-step .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.3));
}

.page-latest-news-match-predictions .method-step h3 {
    font-size: 1.5em;
    color: var(--iwin-primary-color);
    margin-bottom: 15px;
}

.page-latest-news-match-predictions .method-step p {
    color: #555;
    font-size: 0.95em;
}

.page-latest-news-match-predictions .method-step-full {
    text-align: center;
    padding: 30px;
    background-color: var(--iwin-primary-color);
    color: var(--iwin-text-light);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.page-latest-news-match-predictions .method-step-full .step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(1) brightness(1.5) sepia(1) hue-rotate(200deg) saturate(5);
}

.page-latest-news-match-predictions .method-step-full h3 {
    font-size: 1.8em;
    color: var(--iwin-secondary-color);
    margin-bottom: 15px;
}

.page-latest-news-match-predictions .method-step-full p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05em;
    max-width: 900px;
    margin: 0 auto;
}

/* Sports Covered Section */
.page-latest-news-match-predictions .sports-covered-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-latest-news-match-predictions .sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.page-latest-news-match-predictions .sport-item {
    text-align: center;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news-match-predictions .sport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.page-latest-news-match-predictions .sport-item .sport-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 8px rgba(10, 25, 49, 0.2));
}

.page-latest-news-match-predictions .sport-item h4 {
    font-size: 1.3em;
    color: var(--iwin-primary-color);
    margin-bottom: 10px;
}

.page-latest-news-match-predictions .sport-item p {
    font-size: 0.9em;
    color: #666;
}

/* CTA Section */
.page-latest-news-match-predictions .cta-section {
    background: linear-gradient(90deg, var(--iwin-primary-color), #1f3863);
    padding: 80px 0;
    text-align: center;
    color: var(--iwin-text-light);
}

.page-latest-news-match-predictions .cta-section .section-title {
    color: var(--iwin-secondary-color);
}

.page-latest-news-match-predictions .cta-section .section-title::after {
    background-color: var(--iwin-text-light);
}

.page-latest-news-match-predictions .cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.page-latest-news-match-predictions .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.page-latest-news-match-predictions .faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.page-latest-news-match-predictions .faq-item {
    background-color: #fdfdfd;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-latest-news-match-predictions .faq-item h3 {
    color: var(--iwin-primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-latest-news-match-predictions .faq-item p {
    color: #555;
    line-height: 1.7;
}

.page-latest-news-match-predictions .faq-item a {
    color: var(--iwin-primary-color);
    text-decoration: underline;
}

.page-latest-news-match-predictions .faq-item a:hover {
    color: var(--iwin-secondary-color);
}

/* Related Content Section */
.page-latest-news-match-predictions .related-content-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-latest-news-match-predictions .related-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-latest-news-match-predictions .related-link-card {
    display: block;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-decoration: none;
    color: var(--iwin-text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-latest-news-match-predictions .related-link-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-news-match-predictions .related-link-card h3 {
    color: var(--iwin-primary-color);
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-latest-news-match-predictions .related-link-card p {
    color: #666;
    font-size: 0.95em;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-latest-news-match-predictions .hero-title {
        font-size: 3em;
    }
    .page-latest-news-match-predictions .section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-latest-news-match-predictions .hero-section {
        padding: 80px 0;
    }
    .page-latest-news-match-predictions .hero-title {
        font-size: 2.5em;
    }
    .page-latest-news-match-predictions .hero-subtitle {
        font-size: 1.1em;
        margin-bottom: 30px;
    }
    .page-latest-news-match-predictions .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-latest-news-match-predictions .btn-lg {
        width: 100%;
    }
    .page-latest-news-match-predictions .section-title {
        font-size: 2em;
    }
    .page-latest-news-match-predictions .about-predictions-section,
    .page-latest-news-match-predictions .featured-matches-section,
    .page-latest-news-match-predictions .methodology-section,
    .page-latest-news-match-predictions .sports-covered-section,
    .page-latest-news-match-predictions .cta-section,
    .page-latest-news-match-predictions .faq-section,
    .page-latest-news-match-predictions .related-content-section {
        padding: 60px 0;
    }
    .page-latest-news-match-predictions .grid-2-cols {
        grid-template-columns: 1fr;
    }
    .page-latest-news-match-predictions .grid-3-cols {
        grid-template-columns: 1fr;
    }
    .page-latest-news-match-predictions .match-cards-grid {
        grid-template-columns: 1fr;
    }
    .page-latest-news-match-predictions .sports-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    .page-latest-news-match-predictions .related-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-latest-news-match-predictions .hero-title {
        font-size: 2em;
    }
    .page-latest-news-match-predictions .hero-subtitle {
        font-size: 1em;
    }
    .page-latest-news-match-predictions .section-title {
        font-size: 1.8em;
    }
    .page-latest-news-match-predictions .btn {
        padding: 12px 20px;
        font-size: 1em;
    }
}