/* style/live-scores-streaming-basketball.css */

:root {
    --page-primary-color: #1A2E4C;
    --page-secondary-color: #FFD700;
    --page-text-light: #FFFFFF;
    --page-text-dark: #1A2E4C; /* Darker variant of primary for contrast */
    --page-text-dark-contrast: #000000; /* Pure black for maximum contrast on light backgrounds */
    --page-background-dark: #1A2E4C;
    --page-background-light: #F0F2F5; /* A light grey for contrast */
    --page-accent-gold-dark: #B39700; /* Darker gold for text on light gold background */
}

.page-live-scores-streaming-basketball {
    font-family: 'Arial', sans-serif;
    color: var(--page-text-light);
    background-color: var(--page-background-dark);
    line-height: 1.6;
}

.page-live-scores-streaming-basketball__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-live-scores-streaming-basketball__hero {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--page-text-light);
    overflow: hidden;
}

.page-live-scores-streaming-basketball__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.page-live-scores-streaming-basketball__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 46, 76, 0.8) 0%, rgba(26, 46, 76, 0.5) 50%, rgba(26, 46, 76, 0.8) 100%);
    z-index: 2;
}

.page-live-scores-streaming-basketball__hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.page-live-scores-streaming-basketball__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
    font-size: 1.1em;
    cursor: pointer;
}

.page-live-scores-streaming-basketball__btn--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark-contrast); /* High contrast text on gold */
    border: 2px solid var(--page-secondary-color);
}

.page-live-scores-streaming-basketball__btn--primary:hover {
    background-color: var(--page-accent-gold-dark);
    border-color: var(--page-accent-gold-dark);
}

.page-live-scores-streaming-basketball__btn--secondary {
    background-color: transparent;
    color: var(--page-secondary-color);
    border: 2px solid var(--page-secondary-color);
}

.page-live-scores-streaming-basketball__btn--secondary:hover {
    background-color: var(--page-secondary-color);
    color: var(--page-text-dark-contrast); /* High contrast text on gold */
}

.page-live-scores-streaming-basketball__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: var(--page-secondary-color); /* Gold for titles */
    font-weight: bold;
}

.page-live-scores-streaming-basketball__features {
    background-color: var(--page-background-dark);
    padding: 80px 0;
    color: var(--page-text-light);
}

.page-live-scores-streaming-basketball__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-live-scores-streaming-basketball__feature-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-live-scores-streaming-basketball__feature-item:hover {
    transform: translateY(-10px);
}

.page-live-scores-streaming-basketball__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: invert(80%) sepia(100%) saturate(700%) hue-rotate(340deg) brightness(100%) contrast(100%); /* Gold tint for icons */
}

.page-live-scores-streaming-basketball__feature-heading {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--page-secondary-color); /* Gold for feature headings */
}

.page-live-scores-streaming-basketball__feature-text {
    font-size: 1em;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball__how-it-works {
    background-color: var(--page-background-light); /* Light background */
    padding: 80px 0;
    color: var(--page-text-dark); /* Dark text on light background */
}

.page-live-scores-streaming-basketball__how-it-works .page-live-scores-streaming-basketball__section-title {
    color: var(--page-primary-color); /* Dark blue for titles on light background */
}

.page-live-scores-streaming-basketball__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-live-scores-streaming-basketball__step-item {
    background-color: var(--page-text-light); /* White background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(26, 46, 76, 0.1);
}

.page-live-scores-streaming-basketball__step-number {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--page-secondary-color);
    margin-bottom: 15px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--page-primary-color);
    color: var(--page-text-light);
}

.page-live-scores-streaming-basketball__step-heading {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: var(--page-primary-color); /* Dark blue for headings */
}

.page-live-scores-streaming-basketball__step-text {
    font-size: 1em;
    color: var(--page-text-dark); /* Dark text */
}

.page-live-scores-streaming-basketball__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-live-scores-streaming-basketball__app-promo {
    background-color: var(--page-background-dark);
    padding: 80px 0;
    color: var(--page-text-light);
}

.page-live-scores-streaming-basketball__app-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-live-scores-streaming-basketball__app-content {
    flex: 1;
    min-width: 300px;
}

.page-live-scores-streaming-basketball__app-content .page-live-scores-streaming-basketball__section-title {
    text-align: left;
    color: var(--page-secondary-color);
}

.page-live-scores-streaming-basketball__app-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball__app-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-live-scores-streaming-basketball__app-benefits li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball__app-benefits li i {
    color: var(--page-secondary-color);
    margin-right: 10px;
}

.page-live-scores-streaming-basketball__app-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-live-scores-streaming-basketball__app-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-live-scores-streaming-basketball__testimonials {
    background-color: var(--page-background-light); /* Light background */
    padding: 80px 0;
    color: var(--page-text-dark); /* Dark text on light background */
}

.page-live-scores-streaming-basketball__testimonials .page-live-scores-streaming-basketball__section-title {
    color: var(--page-primary-color); /* Dark blue for titles on light background */
}

.page-live-scores-streaming-basketball__testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-live-scores-streaming-basketball__testimonial-item {
    background-color: var(--page-text-light); /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--page-secondary-color);
}

.page-live-scores-streaming-basketball__testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--page-text-dark); /* Dark text */
}

.page-live-scores-streaming-basketball__testimonial-author {
    font-weight: bold;
    text-align: right;
    color: var(--page-primary-color); /* Dark blue for author */
}

.page-live-scores-streaming-basketball__seo-content {
    background-color: var(--page-background-dark);
    padding: 80px 0;
    color: var(--page-text-light); /* Light text on dark background */
}

.page-live-scores-streaming-basketball__seo-content h2,
.page-live-scores-streaming-basketball__seo-content h3 {
    color: var(--page-secondary-color); /* Gold for headings */
    margin-bottom: 20px;
}

.page-live-scores-streaming-basketball__seo-content h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
}

.page-live-scores-streaming-basketball__seo-content h3 {
    font-size: 1.8em;
    margin-top: 30px;
}

.page-live-scores-streaming-basketball__seo-content p {
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--page-text-light); /* Ensure high contrast */
}

.page-live-scores-streaming-basketball .highlight {
    color: var(--page-secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-live-scores-streaming-basketball__title {
        font-size: 2.8em;
    }

    .page-live-scores-streaming-basketball__subtitle {
        font-size: 1.1em;
    }

    .page-live-scores-streaming-basketball__section-title {
        font-size: 2em;
    }

    .page-live-scores-streaming-basketball__app-flex {
        flex-direction: column;
    }

    .page-live-scores-streaming-basketball__app-content .page-live-scores-streaming-basketball__section-title {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-live-scores-streaming-basketball__hero {
        height: 500px;
    }

    .page-live-scores-streaming-basketball__title {
        font-size: 2.2em;
    }

    .page-live-scores-streaming-basketball__subtitle {
        font-size: 1em;
    }

    .page-live-scores-streaming-basketball__btn {
        padding: 12px 25px;
        font-size: 1em;
        margin: 5px;
    }

    .page-live-scores-streaming-basketball__feature-grid, 
    .page-live-scores-streaming-basketball__steps-grid, 
    .page-live-scores-streaming-basketball__testimonial-grid {
        grid-template-columns: 1fr;
    }

    .page-live-scores-streaming-basketball__app-image-wrapper {
        order: -1; /* Move image above text on mobile */
    }

    .page-live-scores-streaming-basketball__app-content .page-live-scores-streaming-basketball__section-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-live-scores-streaming-basketball__hero {
        height: 400px;
    }

    .page-live-scores-streaming-basketball__title {
        font-size: 1.8em;
    }

    .page-live-scores-streaming-basketball__subtitle {
        font-size: 0.9em;
    }

    .page-live-scores-streaming-basketball__section-title {
        font-size: 1.8em;
    }

    .page-live-scores-streaming-basketball__btn {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}