body{margin:0;background:#0b0b0b;font-family:Arial;color:#fff}

.container{width:90%;margin:auto}

.logo{text-align:center;margin:20px}

/* LETTERS */
.letters{
    position:sticky;
    top:0;
    background:#0b0b0b;
    padding:10px;
    border-bottom:1px solid #222;
}

.letters a{margin-right:10px;color:#777;text-decoration:none}
.letters a.active,
.letters a:hover{color:#ff0055}

/* ROW */
.row{
    display:flex;
    align-items:center;
    gap:15px;
    padding:12px;
    border-bottom:1px solid #1f1f1f;
    transition:.2s;
}

.row:hover{
    background:#161616;
    transform:translateX(5px);
}

/* POSTER */
.poster img{
    width:60px;
    height:90px;
    object-fit:cover;
    border-radius:6px;
}

/* TITLE */
.title a{
    color:#fff;
    text-decoration:none;
}

.title a:hover{color:#ff0055}

/* USER */
.user{color:#aaa;font-size:13px}

/* BADGES */
.badge{
    font-size:11px;
    padding:3px 6px;
    border-radius:4px;
    margin-right:5px;
    font-weight:bold;
}

.badge.hd{background:#00c853;color:#000}
.badge.sub{background:#2962ff}
.badge.new{background:#ff0055}
.poster img {
    width:60px;
    height:90px;
    object-fit:cover;
    border-radius:6px;
    transition:0.3s;
}

.poster img:hover {
    transform:scale(1.8);
    z-index:10;
    position:relative;
    box-shadow:0 0 20px rgba(0,0,0,0.8);
}
.row:hover {
    background:#161616;
    transform:translateX(5px);
}