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

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

.page-today-matches-predictions-basketball-hero {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-today-matches-predictions-basketball-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFCC00; /* Golden yellow for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

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

.page-today-matches-predictions-basketball-hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-today-matches-predictions-basketball-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    cursor: pointer;
    border: none;
}

.page-today-matches-predictions-basketball-btn-primary {
    background-color: #FFCC00; /* Golden yellow */
    color: #003366; /* Deep ocean blue */
}

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

.page-today-matches-predictions-basketball-btn-secondary {
    background-color: transparent;
    color: #FFCC00;
    border: 2px solid #FFCC00;
}

.page-today-matches-predictions-basketball-btn-secondary:hover {
    background-color: #FFCC00;
    color: #003366;
    transform: translateY(-2px);
}

.page-today-matches-predictions-basketball-hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    max-width: 600px;
    opacity: 0.2;
    z-index: 0;
}

.page-today-matches-predictions-basketball-section {
    padding: 80px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.page-today-matches-predictions-basketball-section:nth-of-type(even) {
    background-color: #f2f7fc; /* Lighter blue/grey */
}

.page-today-matches-predictions-basketball-section-title {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-today-matches-predictions-basketball-text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

.page-today-matches-predictions-basketball-text strong {
    color: #003366;
}

.page-today-matches-predictions-basketball-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-today-matches-predictions-basketball-feature-item {
    background-color: #f2f7fc;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-today-matches-predictions-basketball-feature-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-today-matches-predictions-basketball-image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-today-matches-predictions-basketball-list {
    list-style: decimal;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-today-matches-predictions-basketball-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-today-matches-predictions-basketball-list strong {
    color: #003366;
}

.page-today-matches-predictions-basketball-grid-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-today-matches-predictions-basketball-grid-list li {
    background-color: #e6eff7;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #003366;
    font-weight: bold;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-today-matches-predictions-basketball-list-bullets {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-today-matches-predictions-basketball-list-bullets li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-today-matches-predictions-basketball-cta-content {
    text-align: center;
}

.page-today-matches-predictions-basketball-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.page-today-matches-predictions-basketball-text-small {
    font-size: 0.95em;
    color: #666;
    margin-top: 20px;
}

.page-today-matches-predictions-basketball-btn-download {
    background-color: #003366;
    color: #FFCC00;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-today-matches-predictions-basketball-btn-download:hover {
    background-color: #004d99;
    transform: translateY(-2px);
}

.page-today-matches-predictions-basketball-download-icon {
    width: 24px;
    height: 24px;
    filter: invert(80%) sepia(90%) saturate(1000%) hue-rotate(0deg) brightness(100%) contrast(100%); /* Adjust for golden color */
}

.page-today-matches-predictions-basketball-mobile-app-image {
    width: 100%;
    max-width: 400px;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-today-matches-predictions-basketball-accordion {
    margin-top: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.page-today-matches-predictions-basketball-accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

.page-today-matches-predictions-basketball-accordion-item:last-child {
    border-bottom: none;
}

.page-today-matches-predictions-basketball-accordion-header {
    background-color: #003366;
    color: #FFCC00;
    padding: 20px 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-today-matches-predictions-basketball-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-today-matches-predictions-basketball-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-today-matches-predictions-basketball-accordion-header:hover {
    background-color: #004d99;
}

.page-today-matches-predictions-basketball-accordion-content {
    padding: 0 25px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-today-matches-predictions-basketball-accordion-content p {
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0;
    color: #333;
}

.page-today-matches-predictions-basketball-accordion-content a {
    color: #003366;
    text-decoration: underline;
}

.page-today-matches-predictions-basketball-contact-content {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-today-matches-predictions-basketball-hero-title {
        font-size: 2.8em;
    }
    .page-today-matches-predictions-basketball-hero-subtitle {
        font-size: 1.3em;
    }
    .page-today-matches-predictions-basketball-section-title {
        font-size: 2em;
    }
    .page-today-matches-predictions-basketball-hero-image {
        width: 50%;
    }
}

@media (max-width: 768px) {
    .page-today-matches-predictions-basketball-hero {
        padding: 80px 0;
    }
    .page-today-matches-predictions-basketball-hero-title {
        font-size: 2.2em;
    }
    .page-today-matches-predictions-basketball-hero-subtitle {
        font-size: 1.1em;
    }
    .page-today-matches-predictions-basketball-hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-today-matches-predictions-basketball-btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-today-matches-predictions-basketball-section {
        padding: 60px 0;
    }
    .page-today-matches-predictions-basketball-section-title {
        font-size: 1.8em;
    }
    .page-today-matches-predictions-basketball-hero-image {
        display: none; /* Hide on smaller screens */
    }
    .page-today-matches-predictions-basketball-features {
        grid-template-columns: 1fr;
    }
    .page-today-matches-predictions-basketball-grid-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-today-matches-predictions-basketball-hero-title {
        font-size: 1.8em;
    }
    .page-today-matches-predictions-basketball-hero-subtitle {
        font-size: 1em;
    }
    .page-today-matches-predictions-basketball-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-today-matches-predictions-basketball-section {
        padding: 40px 0;
    }
    .page-today-matches-predictions-basketball-section-title {
        font-size: 1.5em;
    }
    .page-today-matches-predictions-basketball-text, .page-today-matches-predictions-basketball-list li, .page-today-matches-predictions-basketball-grid-list li {
        font-size: 1em;
    }
    .page-today-matches-predictions-basketball-accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-today-matches-predictions-basketball-accordion-content p {
        font-size: 0.95em;
    }
}