* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    background-color: black;
}

main {
    width: 100%;
    height: 100%;
    background: linear-gradient(to right bottom, #151515, #434343, #151515);
    padding: 20px;
    overflow: auto;
}

section {
    max-width: 350px;
    height: 100%;
    margin: auto;
    border-radius: 10px;
    background-color: transparent;
    /* overflow: hidden; */
}

.all-reels {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    overflow: auto;
}

.all-reels::-webkit-scrollbar {
    display: none;
}

.reel {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    background: rgb(40, 40, 40);
    border: 2px solid #707070;
}


.reel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.reel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.reel .bottom {
    width: 100%;
    padding: 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    position: absolute;
    bottom: 0;
    border-radius: 10px;
}

.bottom .user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.bottom .user h4 {
    font-size: 14px;
    font-weight: 600;
}

.bottom .user button {
    background: #fff;
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
}

.bottom .user button:hover {
    background: #e0e0e0;
}

.bottom h3 {
    font-size: 12px;
    font-weight: 600;
}

.bottom .user img {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    object-fit: cover;
}

.right {
    width: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: absolute;
    right: 0;
    bottom: 15%;
    padding: 30px;
    /* transform: translateX(100%); */
    /* text-align: center; */
}

.right i {
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
}

.right h6 {
    font-size: 15px;
    font-weight: 500;
}

.right>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.love{
    color: red;
}

.right > div h4,
.right > div h6 {
    pointer-events: none;
}

.mute{
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 15px;
    color: white;
    background: #212121;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}
.mute i{
    pointer-events: none;
}

.mute:active{
    transform: scale(0.9);
}
