:root {
    --live-green: #00ff88;
    --live-bg: #0d1117;
    --live-card: #161b22;
}

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

body {
    background-color: var(--live-bg);
    color: #c9d1d9;
    font-family: 'Segoe UI', sans-serif;
}

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

header {
    background: #010409;
    padding: 20px 0;
    border-bottom: 1px solid #30363d;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-live {
    font-size: 24px;
    font-weight: bold;
    color: var(--live-green);
}

nav ul { display: flex; list-style: none; }
nav li { margin-left: 25px; }
nav a { text-decoration: none; color: #8b949e; font-size: 14px; }
nav a:hover { color: var(--live-green); }

.live-hero {
    padding: 100px 0;
    text-align: center;
    background: radial-gradient(circle at center, #1f2937, var(--live-bg));
}

.live-hero h1 { font-size: 52px; color: #fff; margin-bottom: 20px; }

.live-badge {
    display: inline-block;
    background: #ff0000;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: blink 1s infinite;
}

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

.match-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.match-card {
    background: var(--live-card);
    border: 1px solid #30363d;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.match-card h3 { color: #fff; margin-bottom: 15px; }

footer {
    padding: 60px 0;
    text-align: center;
    font-size: 13px;
    color: #8b949e;
    border-top: 1px solid #30363d;
    margin-top: 100px;
}
