:root {
    --primary: #007bff;
    --secondary: #6c757d;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.section-title {
    border-left: 4px solid var(--primary);
    padding-left: 15px;
    margin-bottom: 25px;
    color: #333;
}

.featured-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.news-card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-badge {
    font-size: 0.7rem;
    margin-bottom: 10px;
}

.article-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

.live-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.live-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.artist-featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    overflow: hidden;
}

.match-card {
    border-left: 4px solid var(--primary);
}

.match-live {
    border-left-color: var(--danger);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-nav {
        text-align: center;
    }
    
    .featured-card .card-img-top {
        height: 200px;
        object-fit: cover;
    }
}

/* Footer */
footer {
    margin-top: 50px;
    background-color: #f8f9fa;
    padding: 30px 0;
}
