@font-face {
    font-family: 'F1Font';
    src: url('fonts/Formula1Display.ttf') format('truetype'); /* aapke server me fonts folder me rakhen */
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: white;
font-family:'Poppins',sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.header {
    padding: 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border-bottom: 1px solid #222;
}

#matches {
    max-width: 900px;
    margin: 10px auto;
    padding: 10px;
}

.league-title {
    font-size: 18px;
    font-weight: 700;
    margin: 20px 0 8px;
    color: #fff;
    text-transform: uppercase;
}

.match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    margin-bottom: 6px;
    padding: 20px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
}

.match:hover {
    background: #333;
}

.time {
    font-size: 12px;
    color: #94a3b8;
    min-width: 60px;
}

.team {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.team img {
    width: 22px;
    height: 22px;
}

.vs {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 8px;
}

.loading {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
}

