
.game-view-section {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.match-overview-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.match-overview-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.league-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.league-badge img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 5px;
}

.match-status-badge {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-completed {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
    border: 2px solid rgba(46, 213, 115, 0.3);
}

.status-live {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
    border: 2px solid rgba(255, 71, 87, 0.3);
}

.status-scheduled {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.pulse-dot {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.match-overview-content {
    padding: 50px 30px;
}

.teams-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.team-display-section {
    text-align: center;
}

.team-logo-large {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    background: white;
    padding: 10px;
}

.team-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name-large {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.score-display-section {
    text-align: center;
}

.main-score {
    font-size: 72px;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 10px;
}

.score-separator {
    margin: 0 20px;
    color: #bdc3c7;
}

.score-number.leading {
    color: #667eea;
}

.pk-score {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
}

.pk-label {
    font-size: 12px;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 600;
}

.pk-numbers {
    font-size: 20px;
    font-weight: 700;
    color: #34495e;
}

.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 20px;
}

.info-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-card-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.info-card-body {
    padding: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 12px;
    color: #7f8c8d;
    text-transform: uppercase;
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-btn {
    padding: 14px 20px;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.action-btn i {
    font-size: 18px;
}

.action-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.action-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.action-btn-success {
    background: linear-gradient(135deg, #2ed573 0%, #1abc9c 100%);
    color: white;
}

.action-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 213, 115, 0.4);
    color: white;
}

.action-btn-secondary {
    background: #ecf0f1;
    color: #2c3e50;
}

.action-btn-secondary:hover {
    background: #bdc3c7;
    transform: translateY(-2px);
    color: #2c3e50;
}

.action-btn-danger {
    background: linear-gradient(135deg, #ff4757 0%, #e74c3c 100%);
    color: white;
}

.action-btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
    color: white;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* .teams-display {
        grid-template-columns: 1fr;
        gap: 30px;
    } */
    
    /* .score-display-section {
        order: -1;
    } */
    
    .main-score {
        font-size: 56px;
    }
    
    .team-logo-large {
        width: 120px;
        height: 120px;
    }
    
    .team-name-large {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .match-overview-header {
        flex-direction: column;
        gap: 5px;
        padding: 15px 10px;
        text-align: center;
    }
    
    .match-overview-content {
        padding: 20px 10px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .team-logo-large {
        width: 80px;
        height: 80px;
    }
    
    .team-name-large {
        font-size: 16px;
    }
    
    .main-score {
        font-size: 48px;
    }
}