.selected {
    border: 10px solid #6063C7;
}

.card {
    transition: all 0.5s ease-in-out;
}

.image-view {
    background-repeat: no-repeat, repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    background-position: center;
}

#playerScreen {
    overflow: hidden;
    pointer-events: none;
}

.fader {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: transparent;
    z-index: 99999;
    transition: background-color 0.5s ease-in-out;
}

.fader.active {
    background-color: black;
}

.player-preview {
    width: 100vw;
    height: 100vh;
    transform: scale(0.2);
    position: absolute;
    top: -40vh;
    right: -40vw;
}

.player-preview iframe {
    width: 100%;
    height: 100%;
    border-radius: 50px;
}

.category-tag {
    background-color: #979797;
    border-radius: 20px;
    color: white;
    padding: 4px 8px;
}