* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
}

/* Header */
header {
    background: #000;
    border-bottom: 2px solid #c40000;
    padding: 15px 20px;
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: #ff2a2a;
}

/* Container */
.container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

/* Live Matches */
.section-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff2a2a;
}

.matches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.match-card {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 15px;
    transition: 0.3s;
}

.match-card:hover {
    transform: translateY(-4px);
    border-color: #ff2a2a;
}

.match-title {
    font-size: 16px;
    margin-bottom: 10px;
}

.match-time {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 12px;
}

.watch-btn {
    display: inline-block;
    padding: 8px 14px;
    background: #c40000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
}

.watch-btn:hover {
    background: #ff2a2a;
}

/* Footer */
footer {
    background: #000;
    border-top: 2px solid #c40000;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
    font-size: 13px;
    color: #aaa;
}
