/* style/expert-predictions-odds-insights.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-text-color-dark: #333;
    --page-text-color-light: #fff;
    --page-background-light: #f8f9fa;
    --page-background-dark: #343a40;
}

.page-expert-predictions-odds-insights {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color-dark);
}

.page-expert-predictions-odds-insights__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-expert-predictions-odds-insights__section-title {
    font-size: 2.5em;
    color: var(--page-primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-expert-predictions-odds-insights__section-title--light {
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__section-title--light::after {
    background-color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__sub-section-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-bottom: 20px;
}

.page-expert-predictions-odds-insights__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%); /* Slightly darker blue for gradient */
    color: var(--page-text-color-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-odds-insights__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 193, 7, 0.1);
    border-radius: 50%;
    animation: page-expert-predictions-odds-insights__float 10s ease-in-out infinite alternate;
}

.page-expert-predictions-odds-insights__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 193, 7, 0.15);
    border-radius: 50%;
    animation: page-expert-predictions-odds-insights__float 12s ease-in-out infinite alternate-reverse;
}

@keyframes page-expert-predictions-odds-insights__float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.page-expert-predictions-odds-insights__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-expert-predictions-odds-insights__hero-actions .page-expert-predictions-odds-insights__btn {
    margin: 10px;
}

.page-expert-predictions-odds-insights__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-expert-predictions-odds-insights__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-color-dark);
}

.page-expert-predictions-odds-insights__btn--primary:hover {
    background-color: #e6b000; /* Darker gold */
    transform: translateY(-2px);
}

.page-expert-predictions-odds-insights__btn--secondary {
    background-color: transparent;
    color: var(--page-text-color-light);
    border: 2px solid var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.page-expert-predictions-odds-insights__btn--large {
    padding: 15px 40px;
    font-size: 1.2em;
}

.page-expert-predictions-odds-insights__intro-section,
.page-expert-predictions-odds-insights__strategy-section,
.page-expert-predictions-odds-insights__cta-section,
.page-expert-predictions-odds-insights__faq-section {
    padding: 60px 0;
}

.page-expert-predictions-odds-insights__features-section {
    padding: 80px 0;
    background-color: var(--page-primary-color);
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__case-study-section {
    padding: 80px 0;
    background-color: var(--page-secondary-color);
    color: var(--page-text-color-dark);
}

.page-expert-predictions-odds-insights__bg-primary {
    background-color: var(--page-primary-color);
}

.page-expert-predictions-odds-insights__bg-secondary {
    background-color: var(--page-secondary-color);
}

.page-expert-predictions-odds-insights__grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-expert-predictions-odds-insights__grid-2-cols-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-expert-predictions-odds-insights__grid-2-cols-reverse .page-expert-predictions-odds-insights__content-block:first-child {
    order: 2;
}

.page-expert-predictions-odds-insights__grid-2-cols-reverse .page-expert-predictions-odds-insights__content-block:last-child {
    order: 1;
}

.page-expert-predictions-odds-insights__grid-3-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-expert-predictions-odds-insights__content-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-expert-predictions-odds-insights__content-block p a {
    color: var(--page-secondary-color);
    text-decoration: underline;
}

.page-expert-predictions-odds-insights__content-block p a:hover {
    color: #e6b000;
}

.page-expert-predictions-odds-insights__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-odds-insights__image-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-odds-insights__feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-expert-predictions-odds-insights__feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.page-expert-predictions-odds-insights__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes icon white */
}

.page-expert-predictions-odds-insights__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__feature-card p {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

.page-expert-predictions-odds-insights__list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.page-expert-predictions-odds-insights__list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    font-size: 1.1em;
}

.page-expert-predictions-odds-insights__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: var(--page-secondary-color);
}

.page-expert-predictions-odds-insights__list li strong {
    color: var(--page-primary-color);
}

.page-expert-predictions-odds-insights__case-card {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-expert-predictions-odds-insights__case-card:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-odds-insights__case-card .page-expert-predictions-odds-insights__card-title {
    color: var(--page-primary-color);
}

.page-expert-predictions-odds-insights__case-card p {
    color: var(--page-text-color-dark);
}

.page-expert-predictions-odds-insights__case-card p a {
    color: var(--page-primary-color);
}

.page-expert-predictions-odds-insights__case-card p a:hover {
    color: #0056b3;
}

.page-expert-predictions-odds-insights__cta-section {
    text-align: center;
    background-color: var(--page-background-light);
    border-top: 1px solid #eee;
}

.page-expert-predictions-odds-insights__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-text-color-dark);
}

.page-expert-predictions-odds-insights__faq-section {
    background-color: var(--page-background-dark);
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__faq-section .page-expert-predictions-odds-insights__section-title {
    color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__faq-section .page-expert-predictions-odds-insights__section-title::after {
    background-color: var(--page-text-color-light);
}

.page-expert-predictions-odds-insights__accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #495057;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-odds-insights__accordion-header {
    background-color: #6c757d;
    color: var(--page-text-color-light);
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-expert-predictions-odds-insights__accordion-header a {
    color: var(--page-secondary-color);
    text-decoration: underline;
}

.page-expert-predictions-odds-insights__accordion-header a:hover {
    color: #e6b000;
}

.page-expert-predictions-odds-insights__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-expert-predictions-odds-insights__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-expert-predictions-odds-insights__accordion-content {
    padding: 0 25px;
    background-color: #495057;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-expert-predictions-odds-insights__accordion-content p {
    margin-top: 0;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
}

.page-expert-predictions-odds-insights__accordion-content p a {
    color: var(--page-secondary-color);
    text-decoration: underline;
}

.page-expert-predictions-odds-insights__accordion-content p a:hover {
    color: #e6b000;
}

.page-expert-predictions-odds-insights__accordion-header:hover {
    background-color: #5a6268;
}

.page-expert-predictions-odds-insights__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--page-secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    max-width: 300px;
    text-decoration: none;
}

.page-expert-predictions-odds-insights__floating-ad:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-odds-insights__floating-ad-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.page-expert-predictions-odds-insights__floating-ad-text {
    color: var(--page-text-color-dark);
    font-weight: bold;
    padding: 10px 15px;
    font-size: 1.1em;
    margin: 0;
}

.page-expert-predictions-odds-insights__floating-ad .highlight {
    color: var(--page-primary-color);
}

.highlight {
    color: var(--page-secondary-color);
}

@media (max-width: 992px) {
    .page-expert-predictions-odds-insights__grid-2-cols,
    .page-expert-predictions-odds-insights__grid-2-cols-reverse {
        grid-template-columns: 1fr;
    }

    .page-expert-predictions-odds-insights__grid-2-cols-reverse .page-expert-predictions-odds-insights__content-block:first-child {
        order: 1;
    }
    
    .page-expert-predictions-odds-insights__grid-2-cols-reverse .page-expert-predictions-odds-insights__content-block:last-child {
        order: 2;
    }

    .page-expert-predictions-odds-insights__hero-title {
        font-size: 2.8em;
    }

    .page-expert-predictions-odds-insights__hero-subtitle {
        font-size: 1.1em;
    }

    .page-expert-predictions-odds-insights__section-title {
        font-size: 2em;
    }

    .page-expert-predictions-odds-insights__floating-ad {
        max-width: 250px;
        bottom: 15px;
        right: 15px;
    }

    .page-expert-predictions-odds-insights__floating-ad-image {
        width: 60px;
        height: 60px;
    }

    .page-expert-predictions-odds-insights__floating-ad-text {
        font-size: 0.9em;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-odds-insights__hero-section {
        padding: 80px 0;
    }

    .page-expert-predictions-odds-insights__hero-title {
        font-size: 2.2em;
    }

    .page-expert-predictions-odds-insights__hero-subtitle {
        font-size: 1em;
    }

    .page-expert-predictions-odds-insights__section-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-odds-insights__sub-section-title {
        font-size: 1.5em;
    }

    .page-expert-predictions-odds-insights__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-expert-predictions-odds-insights__btn--large {
        padding: 12px 30px;
        font-size: 1.1em;
    }

    .page-expert-predictions-odds-insights__intro-section,
    .page-expert-predictions-odds-insights__strategy-section,
    .page-expert-predictions-odds-insights__cta-section,
    .page-expert-predictions-odds-insights__faq-section {
        padding: 40px 0;
    }

    .page-expert-predictions-odds-insights__features-section,
    .page-expert-predictions-odds-insights__case-study-section {
        padding: 50px 0;
    }

    .page-expert-predictions-odds-insights__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-expert-predictions-odds-insights__accordion-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-odds-insights__hero-title {
        font-size: 1.8em;
    }

    .page-expert-predictions-odds-insights__hero-subtitle {
        font-size: 0.9em;
    }

    .page-expert-predictions-odds-insights__hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-expert-predictions-odds-insights__btn {
        width: 90%;
        margin: 5px 0;
    }

    .page-expert-predictions-odds-insights__section-title {
        font-size: 1.5em;
    }

    .page-expert-predictions-odds-insights__floating-ad {
        max-width: 90%;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
    }

    .page-expert-predictions-odds-insights__floating-ad-image {
        border-radius: 8px;
        margin-bottom: 5px;
    }

    .page-expert-predictions-odds-insights__floating-ad-text {
        font-size: 1em;
        text-align: center;
        width: 100%;
    }
}