body {
    margin:0;
    font-family: Arial;
    background:#0b0c10;
    color:white;
}

/* HEADER */
.header {
    text-align:center;
    padding:20px;
    font-size:20px;
    font-weight:bold;
}

/* GRID */
.grid {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap:15px;
    padding:15px;
}

/* CARD */
.card {
    background:#151515;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    transition:0.3s;
}

.card:hover {
    transform:scale(1.05);
}

.img {
    position:relative;
    height:140px;
}

.img img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.live {
    position:absolute;
    top:10px;
    right:10px;
    background:red;
    font-size:10px;
    padding:4px 8px;
    border-radius:5px;
}

.info {
    padding:10px;
}

.title {
    font-size:14px;
    font-weight:bold;
}

.sub {
    font-size:11px;
    opacity:0.6;
}

/* PLAYER (SPOTIFY STYLE) */
.player {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(20,20,20,0.75);
    backdrop-filter: blur(15px);
    border-top:1px solid rgba(255,255,255,0.1);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px;
}

/* LEFT */
.left {
    width:30%;
}

#now {
    font-size:13px;
    font-weight:bold;
}

.left .sub {
    font-size:10px;
    opacity:0.6;
}

/* CENTER */
.center {
    width:40%;
    text-align:center;
}

.center button {
    width:45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#1db954;
    color:white;
    font-size:18px;
    cursor:pointer;
}

/* RIGHT */
.right {
    width:30%;
}

/* PROGRESS */
.progress {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.1);
}

#bar {
    height:3px;
    width:0%;
    background:#1db954;
}