.live-cricket-section {
    padding: 40px 20px;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    overflow-x: hidden;
}

.live-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px;
    color: cyan;
    font-weight: bold;
}

.live-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.live-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.live-card {
    min-width: calc(100% / 3 - 20px);
    max-width: 33.3%;
    background: rgba(30, 41, 59, 0.85);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    color: var(--primary-text);
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
    flex: 0 0 auto;
}

.live-card:hover {
    transform: translateY(-5px);
}

.live-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc2626;
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: bold;
}

.event-type {
    text-align: center;
    font-size: 0.9rem;
    color: cyan;
    font-weight: 700;
    margin-bottom: 3px;
}

.live-league {
    text-align: center;
    font-size: 0.85rem;
    color:#38bdf8;
    margin-bottom: 15px;
}

.live-teams {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 10px;
}

.live-team {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.live-team img {
    width: 45px;
    height: 30px;
    object-fit: contain;
    margin-bottom: 6px;
    background: #f1f5f9;
    padding: 3px;
    border-radius: 4px;
}

.live-team-name {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 3px;
}

.live-score {
    font-size: 0.9rem;
    color: #fdad00;
    margin-bottom: 3px;
}

.odds-box {
    font-size: 0.9rem;
    font-weight: bold;
    color: #13e2f5;
}
.odds-box .odds{
    color: #ffffff;
}

/* ✅ Mobile Responsive */
@media screen and (max-width: 768px) {
    .live-card {
        min-width: 100%;
        max-width: 100%;
    }
}
.odds-updated {
    animation: odds-blink 0.5s ease;
}

@keyframes odds-blink {
    0% { background-color: #22c55e; color: #fff; }
    100% { background-color: transparent; color: inherit; }
}
