body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: oklch(15.3% 0.006 107.1);
    color: #fff
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px
}

.league-box {
    background-color: oklch(22.8% 0.013 107.4);
    border: 1px solid oklch(28.6% 0.016 107.4);
    border-radius: 5px;
    padding: 16px;
    margin-bottom: 16px
}

.league-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
    text-transform: uppercase;
    text-align: start
}

.match-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 5px;
    background: oklch(28.6% 0.016 107.4);
    cursor: pointer;
    margin-bottom: 8px;
    transition: .3s;
    border: 1px solid oklch(39.4% 0.023 107.4)
}

.match-card:hover {
    background: 0 0;
    border: 1px solid oklch(46.6% 0.025 107.3);
}

.team {
    display: flex;
    font-weight: 600;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1
}

.team img {
    background-color: oklch(39.4% 0.023 107.4);
    padding: 3px;
    width: 50px;
    height: 50px;
    border-radius: 50%
}

.time {
    color: white;
    font-weight: 600;
    font-size: .9rem;
    flex: 1;
    text-align: center
}

@media(max-width:768px) {
    .match-card {
        flex-direction: column;
        gap: 8px
    }

    .time {
        text-align: center;
        margin: 4px 0
    }
}

.copy-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 8px;
    padding: 6px 12px;
    background: white;
    color: black;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.copy-btn:hover {
    opacity: 0.9;
}

.sitename {
    color: white;
    font-weight: bold;
    font-size: 30px;
    margin: 15px auto;
    text-align: center;
}