.match-card {
    background: #1e222d;
    border: 1px solid #2d3446;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.match-card:hover {
    border-color: #00ff88;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.15);
}

.league-tag {
    font-size: 11px;
    font-weight: 800;
    color: #00ff88;
    text-transform: uppercase;
    background: rgba(0, 255, 136, 0.1);
    padding: 6px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}

.match-teams {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 25px;
}

.team-box { width: 40%; }

.logo-circle {
    width: 85px;
    height: 85px;
    background: #2a303f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border: 3px solid #363d4e;
    overflow: hidden;
    padding: 10px;
}

.logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.team-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.vs-text {
    font-style: italic;
    font-weight: 900;
    font-size: 18px;
    color: #4b5563;
}

.play-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #00ff88;
    color: #000 !important;
    font-weight: 800;
    padding: 14px;
    border-radius: 12px;
    transition: 0.3s;
}

.play-btn svg { width: 20px; height: 20px; }
.play-btn:hover { background: #00e67a; transform: scale(1.02); }

.live-dot-css {
    width: 10px;
    height: 10px;
    background: #ff4d4d;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    box-shadow: 0 0 10px #ff4d4d;
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}