/* style/expert-predictions-basketball.css */
.page-expert-predictions-basketball {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A1A3A; /* Primary dark blue background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-expert-predictions-basketball .hero-section {
    background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-expert-predictions-basketball .hero-title {
    font-size: 3.5em;
    color: #FFFFFF; /* White for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-expert-predictions-basketball .hero-subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-expert-predictions-basketball .highlight {
    color: #FFD700; /* Gold for highlights */
}

/* Buttons */
.page-expert-predictions-basketball .btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-expert-predictions-basketball .btn-primary {
    background-color: #FFD700; /* Gold primary button */
    color: #0A1A3A;
    margin-right: 15px;
}

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

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

.page-expert-predictions-basketball .btn-secondary:hover {
    background-color: #FFD700;
    color: #0A1A3A;
    transform: translateY(-2px);
}

.page-expert-predictions-basketball .btn-large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* General Section Styling */
.page-expert-predictions-basketball section {
    padding: 80px 0;
}

.page-expert-predictions-basketball .section-title {
    font-size: 2.8em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-expert-predictions-basketball .section-description {
    font-size: 1.2em;
    color: #B0B0B0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

/* Introduction Section */
.page-expert-predictions-basketball .introduction-section {
    background-color: #0F2A4D;
}

.page-expert-predictions-basketball .introduction-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-expert-predictions-basketball .introduction-section .text-content {
    flex: 1;
}

.page-expert-predictions-basketball .introduction-section .text-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-expert-predictions-basketball .introduction-section .text-content strong {
    color: #FFD700;
}

.page-expert-predictions-basketball .introduction-section .image-content {
    flex: 1;
    text-align: center;
}

.page-expert-predictions-basketball .responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Why 8win55 Section */
.page-expert-predictions-basketball .why-8win55-section {
    background-color: #0A1A3A;
}

.page-expert-predictions-basketball .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-expert-predictions-basketball .feature-item {
    background-color: #1A3A6A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-expert-predictions-basketball .feature-item:hover {
    transform: translateY(-5px);
}

.page-expert-predictions-basketball .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-expert-predictions-basketball .feature-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-expert-predictions-basketball .feature-item p {
    font-size: 1em;
    color: #B0B0B0;
}

/* Analysis Factors Section */
.page-expert-predictions-basketball .analysis-factors-section {
    background-color: #0F2A4D;
}

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

.page-expert-predictions-basketball .factor-item {
    background-color: #1A3A6A;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-basketball .factor-item h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-expert-predictions-basketball .factor-item p {
    font-size: 1em;
    color: #E0E0E0;
}

/* Expert Tips Section */
.page-expert-predictions-basketball .expert-tips-section {
    background-color: #0A1A3A;
}

.page-expert-predictions-basketball .expert-tips-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-expert-predictions-basketball .expert-tips-section .content-wrapper.reverse-layout {
    flex-direction: row-reverse;
}

.page-expert-predictions-basketball .expert-tips-section .text-content {
    flex: 1;
}

.page-expert-predictions-basketball .expert-tips-section .text-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.page-expert-predictions-basketball .expert-tips-section .text-content ul li {
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700" width="18px" height="18px"><path d="M0 0h24v24H0z" fill="none"/><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
    background-size: 18px;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-expert-predictions-basketball .expert-tips-section .text-content strong {
    color: #FFD700;
}

.page-expert-predictions-basketball .expert-tips-section .image-content {
    flex: 1;
    text-align: center;
}

/* Live Betting Section */
.page-expert-predictions-basketball .live-betting-section {
    background-color: #0F2A4D;
}

/* FAQ Section */
.page-expert-predictions-basketball .faq-section {
    background-color: #0A1A3A;
}

.page-expert-predictions-basketball .faq-items {
    max-width: 900px;
    margin: 0 auto;
}

.page-expert-predictions-basketball .faq-item {
    background-color: #1A3A6A;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-expert-predictions-basketball .faq-question {
    font-size: 1.4em;
    color: #FFD700;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-expert-predictions-basketball .faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-expert-predictions-basketball .faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-expert-predictions-basketball .faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: #E0E0E0;
}

.page-expert-predictions-basketball .faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 15px 25px 20px;
}

.page-expert-predictions-basketball .faq-answer p {
    margin-bottom: 10px;
}

.page-expert-predictions-basketball .faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-expert-predictions-basketball .faq-answer a:hover {
    text-decoration: underline;
}

/* CTA Section */
.page-expert-predictions-basketball .cta-section {
    background: linear-gradient(135deg, #0A1A3A 0%, #1A3A6A 100%);
    text-align: center;
    padding: 80px 0;
    border-top: 5px solid #FFD700;
}

.page-expert-predictions-basketball .cta-title {
    font-size: 3em;
    color: #FFFFFF;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-expert-predictions-basketball .cta-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-expert-predictions-basketball .hero-title {
        font-size: 2.8em;
    }
    .page-expert-predictions-basketball .hero-subtitle {
        font-size: 1.3em;
    }
    .page-expert-predictions-basketball .section-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-basketball .introduction-section .content-wrapper,
    .page-expert-predictions-basketball .expert-tips-section .content-wrapper,
    .page-expert-predictions-basketball .live-betting-section .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-expert-predictions-basketball .introduction-section .image-content,
    .page-expert-predictions-basketball .expert-tips-section .image-content,
    .page-expert-predictions-basketball .live-betting-section .image-content {
        margin-top: 30px;
    }
    .page-expert-predictions-basketball .btn-primary, .page-expert-predictions-basketball .btn-secondary {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .page-expert-predictions-basketball .hero-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-basketball .hero-subtitle {
        font-size: 1.1em;
    }
    .page-expert-predictions-basketball .section-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-basketball .features-grid, .page-expert-predictions-basketball .factors-grid {
        grid-template-columns: 1fr;
    }
    .page-expert-predictions-basketball .cta-title {
        font-size: 2.2em;
    }
    .page-expert-predictions-basketball .cta-description {
        font-size: 1.1em;
    }
    .page-expert-predictions-basketball .faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-expert-predictions-basketball .hero-section, .page-expert-predictions-basketball section {
        padding: 50px 0;
    }
    .page-expert-predictions-basketball .hero-title {
        font-size: 1.8em;
    }
    .page-expert-predictions-basketball .hero-subtitle {
        font-size: 1em;
    }
    .page-expert-predictions-basketball .btn {
        width: 100%;
        box-sizing: border-box;
    }
    .page-expert-predictions-basketball .btn-primary {
        margin-bottom: 15px;
    }
}