/* styles.css */
body {
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

#video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.video-wrapper.active {
    display: flex;
}

video {
    width: 100%;
    height: auto;
    max-height: 100%;
}

.controls {
    position: absolute;
    right: 10px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.control-button {
    margin: 10px 0;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.control-button img {
    width: 30px;
    height: 30px;
}

.like-button.active img {
    filter: brightness(0) saturate(100%) invert(41%) sepia(95%) saturate(1151%) hue-rotate(331deg) brightness(98%) contrast(105%);
}
