* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
    background-color: black;
}

.reel-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.reel-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 20%, transparent 60%);
}

.sidebar-icons {
    position: absolute;
    right: 12px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
    font-size: 22px;
}

.sidebar-icons .icon {
    text-align: center;
}

.sidebar-icons .icon span {
    display: block;
    font-size: 12px;
    margin-top: 4px;
}

.sidebar-icons .profile-thumb img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.bottom-info {
    color: white;
    padding-right: 60px;
    margin-bottom: 20px;
}

.user-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.user-line .username {
    font-weight: bold;
}

.follow-btn {
    padding: 4px 10px;
    background: white;
    color: black;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.caption {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.audio {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #ccc;
}

.audio i {
    margin-right: 6px;
}