:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color-page: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-expert-predictions-sports-hot-matches {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Default text color for dark background */
    background-color: var(--background-color-page); /* Page specific background */
}

.page-expert-predictions-sports-hot-matches__dark-bg {
    background-color: var(--background-color-page);
    color: var(--text-main-color);
}

.page-expert-predictions-sports-hot-matches__light-bg {
    background-color: #ffffff;
    color: #333333; /* Dark text for light background */
}

.page-expert-predictions-sports-hot-matches__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-expert-predictions-sports-hot-matches__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small padding, body handles --header-offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
}

.page-expert-predictions-sports-hot-matches__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.page-expert-predictions-sports-hot-matches__hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

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

.page-expert-predictions-sports-hot-matches__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.7);
}

.page-expert-predictions-sports-hot-matches__description {
    font-size: 1.15rem;
    color: var(--text-secondary-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-sports-hot-matches__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-expert-predictions-sports-hot-matches__btn-primary,
.page-expert-predictions-sports-hot-matches__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-expert-predictions-sports-hot-matches__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-expert-predictions-sports-hot-matches__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

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

.page-expert-predictions-sports-hot-matches__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.page-expert-predictions-sports-hot-matches__section {
    padding: 80px 0;
}

.page-expert-predictions-sports-hot-matches__heading {
    font-size: 2.5rem;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.5);
}

.page-expert-predictions-sports-hot-matches__sub-heading {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-sports-hot-matches__text,
.page-expert-predictions-sports-hot-matches__text-secondary {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-expert-predictions-sports-hot-matches__text {
    color: var(--text-main-color);
}

.page-expert-predictions-sports-hot-matches__light-bg .page-expert-predictions-sports-hot-matches__text {
    color: #333333;
}

.page-expert-predictions-sports-hot-matches__text-secondary {
    color: var(--text-secondary-color);
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

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

.page-expert-predictions-sports-hot-matches__grid-item {
    text-align: center;
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-expert-predictions-sports-hot-matches__grid-item:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-sports-hot-matches__feature-image {
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

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

.page-expert-predictions-sports-hot-matches__sport-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-expert-predictions-sports-hot-matches__sport-card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-sports-hot-matches__sport-image {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px;
    min-height: 200px;
}

.page-expert-predictions-sports-hot-matches__sport-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-sports-hot-matches__sport-list {
    list-style: none;
    padding-left: 0;
}

.page-expert-predictions-sports-hot-matches__sport-list li {
    margin-bottom: 10px;
    color: var(--text-secondary-color);
    font-size: 1rem;
    padding-left: 20px;
    position: relative;
}

.page-expert-predictions-sports-hot-matches__sport-list li::before {
    content: '•';
    color: var(--glow-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-expert-predictions-sports-hot-matches__link {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-expert-predictions-sports-hot-matches__link:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

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

.page-expert-predictions-sports-hot-matches__method-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-expert-predictions-sports-hot-matches__method-card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-sports-hot-matches__method-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-expert-predictions-sports-hot-matches__benefit-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.page-expert-predictions-sports-hot-matches__benefit-item:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-sports-hot-matches__benefit-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-expert-predictions-sports-hot-matches__faq-list {
    margin-top: 40px;
}

.page-expert-predictions-sports-hot-matches__faq-item {
    background-color: #ffffff; /* Light background for FAQ items */
    color: #333333; /* Dark text for FAQ items */
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-expert-predictions-sports-hot-matches__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    background-color: #f9f9f9;
    color: #333333;
    border-bottom: 1px solid #e0e0e0;
}

.page-expert-predictions-sports-hot-matches__faq-item[open] .page-expert-predictions-sports-hot-matches__faq-question {
    border-bottom: none;
}

.page-expert-predictions-sports-hot-matches__faq-qtext {
    flex-grow: 1;
}

.page-expert-predictions-sports-hot-matches__faq-toggle {
    font-size: 1.5rem;
    margin-left: 15px;
    color: var(--primary-color);
    line-height: 1;
}

.page-expert-predictions-sports-hot-matches__faq-item[open] .page-expert-predictions-sports-hot-matches__faq-toggle {
    content: '−';
}

.page-expert-predictions-sports-hot-matches__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
}

.page-expert-predictions-sports-hot-matches__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-expert-predictions-sports-hot-matches__faq-item summary {
    list-style: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-expert-predictions-sports-hot-matches__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-expert-predictions-sports-hot-matches__heading {
        font-size: 2rem;
    }

    .page-expert-predictions-sports-hot-matches__section {
        padding: 60px 0;
    }

    .page-expert-predictions-sports-hot-matches__grid-layout,
    .page-expert-predictions-sports-hot-matches__sports-grid,
    .page-expert-predictions-sports-hot-matches__method-grid,
    .page-expert-predictions-sports-hot-matches__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-sports-hot-matches__hero-section {
        padding-bottom: 40px;
    }

    .page-expert-predictions-sports-hot-matches__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-expert-predictions-sports-hot-matches__description {
        font-size: 1rem;
    }

    .page-expert-predictions-sports-hot-matches__heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .page-expert-predictions-sports-hot-matches__section {
        padding: 40px 0;
    }

    .page-expert-predictions-sports-hot-matches__btn-primary,
    .page-expert-predictions-sports-hot-matches__btn-secondary {
        font-size: 0.95rem;
        padding: 12px 20px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-expert-predictions-sports-hot-matches__cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-expert-predictions-sports-hot-matches img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-expert-predictions-sports-hot-matches__section,
    .page-expert-predictions-sports-hot-matches__card,
    .page-expert-predictions-sports-hot-matches__container,
    .page-expert-predictions-sports-hot-matches__hero-image-wrapper,
    .page-expert-predictions-sports-hot-matches__grid-item,
    .page-expert-predictions-sports-hot-matches__sport-card,
    .page-expert-predictions-sports-hot-matches__method-card,
    .page-expert-predictions-sports-hot-matches__benefit-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-expert-predictions-sports-hot-matches__hero-section {
        padding-top: 10px !important;
    }

    .page-expert-predictions-sports-hot-matches__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-expert-predictions-sports-hot-matches__faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-sports-hot-matches__heading {
        font-size: 1.5rem;
    }

    .page-expert-predictions-sports-hot-matches__sub-heading,
    .page-expert-predictions-sports-hot-matches__sport-title,
    .page-expert-predictions-sports-hot-matches__method-title,
    .page-expert-predictions-sports-hot-matches__benefit-title {
        font-size: 1.4rem;
    }
}

/* Ensure content images are not smaller than 200px */
.page-expert-predictions-sports-hot-matches img:not(.page-expert-predictions-sports-hot-matches__hero-image) {
    min-width: 200px;
    min-height: 200px;
}