/* style/expert-predictions-basketball-data.css */
.page-expert-predictions-basketball-data {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-expert-predictions-basketball-data__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-expert-predictions-basketball-data__hero {
    background: linear-gradient(135deg, #0A2463 0%, #0A2463 60%, #E3B505 100%);
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-expert-predictions-basketball-data__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:basketball_court,abstract_data,dynamic_lines]') no-repeat center center/cover;
    opacity: 0.15;
    z-index: 0;
}

.page-expert-predictions-basketball-data__hero > .page-expert-predictions-basketball-data__container {
    position: relative;
    z-index: 1;
}

.page-expert-predictions-basketball-data__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #ffffff;
}

.page-expert-predictions-basketball-data__hero-description {
    font-size: 1.25em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-basketball-data__hero-actions .page-expert-predictions-basketball-data__btn {
    margin: 0 10px;
}

.page-expert-predictions-basketball-data__section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-expert-predictions-basketball-data__section:nth-of-type(even) {
    background-color: #f0f2f5;
}

.page-expert-predictions-basketball-data__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-expert-predictions-basketball-data__sub-title {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 20px;
}

.page-expert-predictions-basketball-data__text-center {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.page-expert-predictions-basketball-data__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-expert-predictions-basketball-data__feature-card,
.page-expert-predictions-basketball-data__data-card,
.page-expert-predictions-basketball-data__offer-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-expert-predictions-basketball-data__feature-card:hover,
.page-expert-predictions-basketball-data__data-card:hover,
.page-expert-predictions-basketball-data__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.page-expert-predictions-basketball-data__feature-icon,
.page-expert-predictions-basketball-data__offer-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.page-expert-predictions-basketball-data__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-expert-predictions-basketball-data__content-block {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.page-expert-predictions-basketball-data__content-block:last-of-type {
    margin-bottom: 0;
}

.page-expert-predictions-basketball-data__content-block > div {
    flex: 1;
    padding: 0 30px;
}

.page-expert-predictions-basketball-data__content-image {
    flex: 0 0 40%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-expert-predictions-basketball-data__content-image--left {
    margin-right: 30px;
}

.page-expert-predictions-basketball-data__content-image--right {
    margin-left: 30px;
    order: 1;
}

.page-expert-predictions-basketball-data__content-block > div:first-child {
    order: 2;
}

.page-expert-predictions-basketball-data__list,
.page-expert-predictions-basketball-data__ordered-list,
.page-expert-predictions-basketball-data__commitment-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-expert-predictions-basketball-data__list li,
.page-expert-predictions-basketball-data__ordered-list li,
.page-expert-predictions-basketball-data__commitment-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-expert-predictions-basketball-data__list li::before,
.page-expert-predictions-basketball-data__commitment-list li::before {
    content: '\2713'; /* Checkmark */
    color: #E3B505;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-expert-predictions-basketball-data__ordered-list li::before {
    content: counter(list-item) ". ";
    counter-increment: list-item;
    color: #E3B505;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-expert-predictions-basketball-data__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-expert-predictions-basketball-data__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
    border: 2px solid #E3B505;
}

.page-expert-predictions-basketball-data__btn--primary:hover {
    background-color: #d1a504;
    border-color: #d1a504;
    transform: translateY(-2px);
}

.page-expert-predictions-basketball-data__btn--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-expert-predictions-basketball-data__btn--secondary:hover {
    background-color: #ffffff;
    color: #0A2463;
    transform: translateY(-2px);
}

.page-expert-predictions-basketball-data__btn--lg {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-expert-predictions-basketball-data__btn--mt {
    margin-top: 30px;
}

.page-expert-predictions-basketball-data__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-expert-predictions-basketball-data__final-cta {
    background-color: #0A2463;
    color: #ffffff;
    text-align: center;
    padding: 100px 0;
}

.page-expert-predictions-basketball-data__final-cta .page-expert-predictions-basketball-data__section-title {
    color: #ffffff;
}

.page-expert-predictions-basketball-data__final-cta .page-expert-predictions-basketball-data__section-title::after {
    background-color: #E3B505;
}

.page-expert-predictions-basketball-data__final-cta p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.page-expert-predictions-basketball-data__contact-info {
    margin-top: 40px;
    font-size: 1.1em;
}

.page-expert-predictions-basketball-data__contact-link {
    color: #0A2463;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-expert-predictions-basketball-data__contact-link:hover {
    color: #E3B505;
    text-decoration: underline;
}

.page-expert-predictions-basketball-data a {
    color: #0A2463;
    text-decoration: none;
}

.page-expert-predictions-basketball-data a:hover {
    color: #E3B505;
    text-decoration: underline;
}

.page-expert-predictions-basketball-data .text-highlight {
    color: #E3B505;
}

.page-expert-predictions-basketball-data strong {
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-basketball-data__hero-title {
        font-size: 2.8em;
    }
    .page-expert-predictions-basketball-data__section-title {
        font-size: 2em;
    }
    .page-expert-predictions-basketball-data__content-block {
        flex-direction: column;
    }
    .page-expert-predictions-basketball-data__content-image,
    .page-expert-predictions-basketball-data__content-image--left,
    .page-expert-predictions-basketball-data__content-image--right {
        max-width: 100%;
        margin: 0 0 30px 0 !important;
        order: 1;
    }
    .page-expert-predictions-basketball-data__content-block > div:first-child {
        order: 2;
        padding: 0;
    }
    .page-expert-predictions-basketball-data__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-basketball-data__hero {
        padding: 80px 0;
    }
    .page-expert-predictions-basketball-data__hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-basketball-data__hero-description {
        font-size: 1em;
    }
    .page-expert-predictions-basketball-data__hero-actions .page-expert-predictions-basketball-data__btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .page-expert-predictions-basketball-data__section {
        padding: 60px 0;
    }
    .page-expert-predictions-basketball-data__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-expert-predictions-basketball-data__sub-title {
        font-size: 1.5em;
    }
    .page-expert-predictions-basketball-data__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-expert-predictions-basketball-data__btn--lg {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-basketball-data__hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-basketball-data__section-title {
        font-size: 1.6em;
    }
    .page-expert-predictions-basketball-data__container {
        padding: 0 15px;
    }
}