* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* BODY */
body {
    background: #0f172a;
    color: #fff;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #020617;
    border-bottom: 1px solid #1e293b;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.sports span {
    margin-left: 15px;
    cursor: pointer;
    color: #94a3b8;
}

.sports .active {
    color: #22c55e;
}

/* LAYOUT */
.container {
    display: flex;
}

/* SIDEBAR */
.sidebar {
    width: 220px;
    background: #020617;
    padding: 20px;
    border-right: 1px solid #1e293b;
    min-height: 100vh;
}

.sidebar h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.sidebar ul li {
    list-style: none;
    margin-bottom: 10px;
    cursor: pointer;
    color: #cbd5f5;
}

/* MAIN */
.main-content {
    flex: 1;
    padding: 20px;
}

/* MATCH CARD */
.match {
    background: #020617;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #1e293b;
}

.league {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 10px;
}

.teams {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.score {
    font-weight: bold;
}

.status {
    margin-top: 10px;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
}

.live {
    color: red;
    font-weight: bold;
}

body{
    font-family: Arial, sans-serif;
    background:#f5f5f5;
    margin:0;
    padding:0;
}

h2{
    text-align:center;
    margin:20px 0;
    font-size:22px;
}

.match{
    background:#fff;
    margin:15px;
    padding:15px;
    border-radius:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.teams{
    display:flex;
    justify-content:space-between;
    padding:5px 0;
    font-size:18px;
}

.score{
    font-weight:bold;
    font-size:20px;
}

.status{
    text-align:center;
    margin-top:10px;
}

.live{
    background:red;
    color:#fff;
    padding:3px 8px;
    border-radius:5px;
    font-size:12px;
}

/* EVENTS TIMELINE */
#events-container{
    margin:20px;
    padding-left:20px;
    border-left:3px solid #ddd;
}

.event{
    position:relative;
    margin-bottom:15px;
    padding-left:20px;
    font-size:15px;
}

.event::before{
    content:"";
    position:absolute;
    left:-9px;
    top:5px;
    width:12px;
    height:12px;
    background:#3498db;
    border-radius:50%;
}

.event.goal::before{
    background:#2ecc71;
}

.event.yellow::before{
    background:#f1c40f;
}

.event.red::before{
    background:#e74c3c;
}

@keyframes pop {
    0% { transform:scale(0.5); opacity:0; }
    50% { transform:scale(1.1); opacity:1; }
    100% { transform:scale(1); opacity:0; }
}

.show-notif {
    animation: pop 1.2s ease-in-out;
}