* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff6b35;
    --secondary: #004e89;
    --accent: #1a659e;
    --success: #06d6a0;
    --dark: #1a1a2e;
    --light: #f4f4f9;
    --text: #2d3142;
    --border: #e0e0e0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

nav {
    padding: 0;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
    background: rgba(255,255,255,0.1);
    border-bottom-color: var(--primary);
}

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
}

.section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.section h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
    border-left: 5px solid var(--primary);
    padding-left: 20px;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.match-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.competition {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.match-time {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255,107,53,0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0;
}

.team {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--dark);
}

.vs {
    margin: 0 15px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

.watch-btn {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.watch-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.article-content {
    line-height: 1.8;
    font-size: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h3 {
    color: var(--secondary);
    margin: 30px 0 15px;
    font-size: 24px;
}

.comments {
    margin-top: 30px;
}

.comment {
    background: var(--light);
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-author {
    font-weight: 700;
    color: var(--secondary);
}

.comment-date {
    font-size: 13px;
    color: #666;
}

.comment-text {
    color: var(--text);
    line-height: 1.6;
}

footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 12px 20px;
    }

    .matches-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 25px 20px;
    }

    .section h2 {
        font-size: 24px;
    }
}

.live-badge {
    background: #ff0000;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

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

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-upcoming {
    background: rgba(6, 214, 160, 0.1);
    color: var(--success);
}

.status-live {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}
