body{
    background:#0f172a;
    color:#fff;
    font-family:Segoe UI, sans-serif;
    margin:0;
}

h1{
    background:#5b21b6;
    padding:15px;
    text-align:center;
}

.schedule{
    max-width:1100px;
    margin:auto;
    padding:20px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:15px;
}

.match{
    background:#020617;
    border-radius:10px;
    padding:15px;
    box-shadow:0 0 12px rgba(0,0,0,.6);
    transition:.3s;
}

.match:hover{
    transform:translateY(-4px);
    box-shadow:0 0 18px #8b5cf6;
}

.stage{
    font-size:13px;
    color:#a5b4fc;
}

.teams{
    font-size:17px;
    margin:10px 0;
    font-weight:600;
}

.teams span{
    color:#38bdf8;
    margin:0 6px;
}

.time{
    font-size:14px;
    color:#22c55e;
}

footer{
    text-align:center;
    padding:15px;
    color:#94a3b8;
}