:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --dark-background: #1a1a1a; /* From body background info */
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --accent-color: #EA7C07; /* For login if needed, or other highlights */
}

/* Base styles for the page content */
.page-expert-predictions-weekly-hot-match {
    background-color: var(--dark-background); /* Inherited from body, but explicitly set for sections if needed */
    color: var(--light-text-color); /* Light text on dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-expert-predictions-weekly-hot-match__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-predictions-weekly-hot-match__section {
    padding: 60px 0;
    text-align: center;
}

.page-expert-predictions-weekly-hot-match__section-title {
    font-size: 2.5em;
    color: var(--light-text-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-expert-predictions-weekly-hot-match__section-description {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-weekly-hot-match__text-block {
    font-size: 1.05em;
    color: var(--light-text-color);
    margin-bottom: 20px;
    text-align: left;
    line-height: 1.8;
}

.page-expert-predictions-weekly-hot-match__text-block .highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* Buttons */
.page-expert-predictions-weekly-hot-match__btn-primary,
.page-expert-predictions-weekly-hot-match__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-expert-predictions-weekly-hot-match__btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border: 2px solid var(--primary-color);
}

.page-expert-predictions-weekly-hot-match__btn-primary:hover {
    background-color: #1f8ec4; /* Darkened primary color */
    border-color: #1f8ec4; /* Darkened primary color */
}

.page-expert-predictions-weekly-hot-match__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-expert-predictions-weekly-hot-match__btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text-color);
}

.page-expert-predictions-weekly-hot-match__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-expert-predictions-weekly-hot-match__cta-buttons--center {
    margin-top: 40px;
}

/* Hero Section */
.page-expert-predictions-weekly-hot-match__hero-section {
    position: relative;
    width: 100%;
    height: 70vh; /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

.page-expert-predictions-weekly-hot-match__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-expert-predictions-weekly-hot-match__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: 0;
}

.page-expert-predictions-weekly-hot-match__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
}

.page-expert-predictions-weekly-hot-match__hero-title {
    font-size: 3.5em;
    color: var(--light-text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-expert-predictions-weekly-hot-match__hero-description {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Video Section */
.page-expert-predictions-weekly-hot-match__video-section {
    background-color: var(--dark-background);
    padding: 80px 0;
    text-align: center;
}

.page-expert-predictions-weekly-hot-match__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.page-expert-predictions-weekly-hot-match__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

/* Intro Section */
.page-expert-predictions-weekly-hot-match__intro-section {
    background-color: #222222;
    padding: 80px 0;
}

/* Criteria Section */
.page-expert-predictions-weekly-hot-match__criteria-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

.page-expert-predictions-weekly-hot-match__grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-weekly-hot-match__card {
    background-color: #2e2e2e; /* Slightly lighter dark for cards */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 350px; /* Ensure cards have some height */
}

.page-expert-predictions-weekly-hot-match__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-expert-predictions-weekly-hot-match__card-title {
    font-size: 1.5em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-expert-predictions-weekly-hot-match__card-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

/* Hot Matches Section */
.page-expert-predictions-weekly-hot-match__hot-matches-section {
    background-color: #222222;
    padding: 80px 0;
}

.page-expert-predictions-weekly-hot-match__match-card {
    display: flex;
    background-color: #2e2e2e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    text-align: left;
}

.page-expert-predictions-weekly-hot-match__match-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-expert-predictions-weekly-hot-match__match-content {
    padding: 30px;
    width: 60%;
}

.page-expert-predictions-weekly-hot-match__match-title {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-expert-predictions-weekly-hot-match__match-meta {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.page-expert-predictions-weekly-hot-match__match-excerpt {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.page-expert-predictions-weekly-hot-match__read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-expert-predictions-weekly-hot-match__read-more:hover {
    color: #1f8ec4; /* Darkened primary color */
}

/* Commentator Role Section */
.page-expert-predictions-weekly-hot-match__commentator-role-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

/* Expert Tips Section */
.page-expert-predictions-weekly-hot-match__expert-tips-section {
    background-color: #222222;
    padding: 80px 0;
}

.page-expert-predictions-weekly-hot-match__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-expert-predictions-weekly-hot-match__tip-item {
    background-color: #2e2e2e;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.page-expert-predictions-weekly-hot-match__tip-title {
    font-size: 1.4em;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-expert-predictions-weekly-hot-match__tip-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
}

/* FAQ Section */
.page-expert-predictions-weekly-hot-match__faq-section {
    background-color: var(--dark-background);
    padding: 80px 0;
}

.page-expert-predictions-weekly-hot-match__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-expert-predictions-weekly-hot-match__faq-item {
    background-color: #2e2e2e;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.page-expert-predictions-weekly-hot-match__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #3a3a3a; /* Slightly different background for question */
    color: var(--light-text-color);
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-expert-predictions-weekly-hot-match__faq-question:hover {
    background-color: #4a4a4a;
}

.page-expert-predictions-weekly-hot-match__faq-question h3 {
    margin: 0;
    color: inherit;
    font-size: 1em; /* Keep h3 within question a reasonable size */
}

.page-expert-predictions-weekly-hot-match__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
}

.page-expert-predictions-weekly-hot-match__faq-item.active .page-expert-predictions-weekly-hot-match__faq-toggle {
    transform: rotate(45deg);
}

.page-expert-predictions-weekly-hot-match__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.page-expert-predictions-weekly-hot-match__faq-item.active .page-expert-predictions-weekly-hot-match__faq-answer {
    max-height: 1000px !important; /* Sufficiently large to show content */
    padding: 20px 25px;
}

.page-expert-predictions-weekly-hot-match__faq-answer p {
    margin: 0;
    color: inherit;
}

/* Call to Action Section (Dark Background) */
.page-expert-predictions-weekly-hot-match__cta-section {
    background-color: var(--primary-color); /* Using primary color for a vibrant CTA */
    padding: 80px 0;
}

.page-expert-predictions-weekly-hot-match__cta-content {
    max-width: 900px;
}

.page-expert-predictions-weekly-hot-match__cta-section .page-expert-predictions-weekly-hot-match__section-title {
    color: var(--light-text-color);
}

.page-expert-predictions-weekly-hot-match__cta-section .page-expert-predictions-weekly-hot-match__section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Links within text */
.page-expert-predictions-weekly-hot-match a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-expert-predictions-weekly-hot-match a:hover {
    color: #1f8ec4; /* Darkened primary color */
    text-decoration: underline;
}

/* Image styles - no filter */
.page-expert-predictions-weekly-hot-match img {
    border: none; /* Ensure no default border */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-expert-predictions-weekly-hot-match__hero-title {
        font-size: 3em;
    }
    .page-expert-predictions-weekly-hot-match__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-weekly-hot-match__match-card {
        flex-direction: column;
    }
    .page-expert-predictions-weekly-hot-match__match-image,
    .page-expert-predictions-weekly-hot-match__match-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-weekly-hot-match {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-expert-predictions-weekly-hot-match__hero-section {
        height: 60vh;
    }
    .page-expert-predictions-weekly-hot-match__hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-weekly-hot-match__hero-description {
        font-size: 1em;
    }
    .page-expert-predictions-weekly-hot-match__section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-weekly-hot-match__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Add padding to prevent buttons from touching edges */
    }
    .page-expert-predictions-weekly-hot-match__btn-primary,
    .page-expert-predictions-weekly-hot-match__btn-secondary {
        width: 100% !important; /* Force full width */
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-expert-predictions-weekly-hot-match__container {
        padding: 0 15px;
    }
    .page-expert-predictions-weekly-hot-match__card {
        padding: 20px;
    }
    .page-expert-predictions-weekly-hot-match__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-expert-predictions-weekly-hot-match__faq-answer {
        padding: 0 20px;
    }
    .page-expert-predictions-weekly-hot-match__faq-item.active .page-expert-predictions-weekly-hot-match__faq-answer {
        padding: 15px 20px;
    }

    /* Images responsive */
    .page-expert-predictions-weekly-hot-match img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-expert-predictions-weekly-hot-match__section,
    .page-expert-predictions-weekly-hot-match__card,
    .page-expert-predictions-weekly-hot-match__container,
    .page-expert-predictions-weekly-hot-match__match-card,
    .page-expert-predictions-weekly-hot-match__tip-item,
    .page-expert-predictions-weekly-hot-match__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    /* Video responsive */
    .page-expert-predictions-weekly-hot-match video,
    .page-expert-predictions-weekly-hot-match__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-expert-predictions-weekly-hot-match__video-section,
    .page-expert-predictions-weekly-hot-match__video-container,
    .page-expert-predictions-weekly-hot-match__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-expert-predictions-weekly-hot-match__video-section {
        padding-top: var(--header-offset, 120px) !important; /* Ensure header offset on mobile */
    }
}