*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#111;
    color:white;
    text-align:center;
}
.logo {
    width: 140px;
    height: auto;
}
.logout-btn {
    text-decoration: none;
    background: #df2883;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.title{
    margin:20px 0;
    font-size:40px;
}

.home-btn{
    position:fixed;
    top:20px;
    left:20px;
    background:#8c1e96;
    color:white;
    text-decoration:none;
    padding:12px 20px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
    z-index:100;
}

.home-btn:hover{
    background:#009624;
}

.reels-container{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:40px;
    padding:30px;
}

.reel{
    width:360px;
    background:#222;
    border-radius:15px;
    padding:15px;
    box-shadow:0 0 15px rgba(255,255,255,.15);
}

.reel h2{
    margin-bottom:10px;
}

video{
    width:100%;
    border-radius:10px;
    background:black;
}

@media(max-width:480px){

.reel{
    width:95%;
}

.title{
    font-size:30px;
}

.home-btn{
    padding:10px 16px;
}

}