.content-section {
    padding: 1rem;
}

.video-preview-wrapper {
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    border-radius: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.membership-overlay {
    z-index: 3;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.membership-section {
    width: 90%;
    background: white;
    border-radius: 10px;
}

.membership-section h4 {
    color: black;
}

.watch-next-wrapper h4 {
    margin-bottom: 20px;
}

.watch-next-track {
    max-height: 600px;
    overflow-x: hidden;
    overflow-y: scroll;
    padding-left: 0;
    padding-right: 0;
}

.watch-next-item {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: var(--border-radius);
}

.watch-next-track .watch-next-item:last-of-type {
    margin-bottom: 0;
}

.watch-next-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.watch-next-item img {
    width: 90%;
    height: 160px;
    border-radius: 10px;
    margin-bottom: 3px;
    object-fit: cover;
}

.watch-next-item a {
    text-decoration: none;
    display: block;
    height: 100%;
}

.watch-next-item.selected {
    background: rgba(255, 255, 255, 0.1);
}

.content-stats {
    color: var(--faded);
}

.be-the-first {
    width: 95%;
    height: 500px;
    border: 2px solid var(--purple1);
    border-radius: 35px;
    padding: 35px;
}

.be-the-first .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 18px;
}

.be-the-first .star-rating .fa-star {
    color: var(--faded);
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 5px;
}

.be-the-first .star-rating .fa-star:hover,
.be-the-first .star-rating .fa-star:hover~.fa-star {
    color: var(--purple2);
}

.share-button {
    color: white;
    background: unset;
    border: var(--border-active-full);
}

.share-button:hover {
    color: var(--body);
    background: white;
}

.autoplay-inner {
    max-width: 480px;
    border: var(--border-active-full);
    border-radius: var(--border-radius);
    background: var(--body);
}

/* quick way to stop elements from shifting as countdown timer changes width */
#autoplay-countdown {
    font-family: monospace;
}

@media (max-width: 767.98px) {
    .autoplay-popup {
        left: 0;
        right: 0;
        margin: 1rem;
        display: flex;
        justify-content: center;
    }

    .autoplay-inner {
        width: 100%;
        max-width: none;
    }
}
