* {
    transition: all var(--transition-speed) ease;
}

body {
    background-color: var(--background-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    height: 100vh;
    overflow-x: hidden;
}

/*LEFT SIDEBAR*/

.left-sidebar {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    top: 15px;
    left: 15px;
    width: 80px;
    height: calc(100vh - 30px);
    background-color: var(--sidebar-color);
    border-radius: 10px;
    box-shadow: 5px 0 15px var(--shadow-color);
    z-index: 1000;
}

.top-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: auto;
    margin-top: 10px;
}

.bottom-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
}

.leftbutton {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leftbutton:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--hover-shadow);
    background-color: var(--background-color-button);
}

/*RIGHT SIDEBAR*/

.right-container {
    position: fixed;
    top: 15px;
    right: 15px;
    width: 300px;
}

.right-sidebar {
    height: 65vh;
    background-color: var(--sidebar-color);
    border-radius: 10px;
    box-shadow: -5px 0 15px var(--shadow-color);
    margin-bottom: 10px;
}

/*ADFRAME*/

.adframe {
    height: 29.5vh;
    background-color: var(--sidebar-color);
    border-radius: 10px;
    box-shadow: -5px 0 15px var(--shadow-color);
}

/*CONTINUE TO WATCH*/

.recent-watch {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 10px;
    height: 100%;
    box-sizing: border-box;
}

.cntwatch {
    position: relative;
    background-color: var(--background-color);
    width: 100%;
    height: calc(33.33% - 5px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cntwatch:hover {
    box-shadow: 0 0 15px var(--hover-shadow);
    transform: scale(1.03);
}

.play-icon {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.8;
}

.cntw-hover-bg {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 60%;
    border-radius: 10px;
    background: linear-gradient(transparent, #00000035);
    opacity: 0;
}

.watch-info {
    position: absolute;
    bottom: 5px;
    left: 10px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0;
}

.watch-name {
    position: absolute;
    bottom: 20px;
    left: 10px;
    font-size: 14px;
    color: var(--text-color);
    opacity: 0;
}

.cntwatch:hover .cntw-hover-bg {
    opacity: 1;
}

.cntwatch:hover .watch-info {
    opacity: 1;
}

.cntwatch:hover .watch-name {
    opacity: 1;
}

/*FILTER BUTTON*/

.filter-button {
    width: 50px;
    height: 50px;
    background-color: var(--sidebar-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.filter-button i {
    color: var(--primary-color);
    font-size: 20px;
}

.filter-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px var(--hover-shadow);
    background-color: var(--background-color-button);
}

/*SEARCH-BAR*/

.search-header {
    position: fixed;
    top: 15px;
    left: 110px;
    right: 330px;
    display: flex;
    gap: 15px;
    z-index: 1000;
}

.search-container {
    flex: 1;
    height: 50px;
    background-color: var(--sidebar-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    padding: 0 15px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.search-field {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 16px;
    padding: 0 10px;
}

.search-field::placeholder {
    color: var(--text-color);
    opacity: 0.5;
}

.search-field:focus {
    outline: none;
}

.search-container:hover {
    box-shadow: 0 0 10px var(--hover-shadow);
}

/**/