:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e74c3c;
    /* Weitere Variablen */
}

/* Gemeinsame Styles */
.navbar {
    /* ... */
}

.hero {
    /* ... */
}

.card {
    /* ... */
}

/* Live Center Styles */
.live-score {
    font-size: 1.2rem;
    font-weight: bold;
    color: #dc3545;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
}

.team-logo {
    transition: transform 0.2s ease;
}

.team-logo:hover {
    transform: scale(1.05);
}

.team-initials {
    transition: transform 0.2s ease;
}

.team-initials:hover {
    transform: scale(1.05);
}

.live-card {
    border: 2px solid #dc3545;
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.1);
    transition: box-shadow 0.3s ease;
}

.live-card:hover {
    box-shadow: 0 6px 12px rgba(220, 53, 69, 0.2);
}

.live-indicator {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
    
    .live-score {
        font-size: 1.2rem;
    }
    
    .team-logo {
        width: 40px !important;
        height: 40px !important;
    }
    
    .team-initials {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
}