body {
    margin: 0;
    padding: 0;
}

.wrapper {
    margin-left: 272px;
    top: 81px;
    width: calc(100vw - 272px);
    height: calc(100vh - 81px) !important;
    height: 100px;
    position: relative;
}

@keyframes bottom-to-middle {
    0% {
        opacity: 0;
        transform: translateY(120vh) scale(0.8) rotate(6deg);
        filter: blur(8px);
    }
    50% {
        opacity: 1;
        transform: translateY(-6px) scale(1.03) rotate(0deg);
        filter: blur(0);
    }
    70% {
        transform: translateY(3px) scale(0.98);
    }
    85% {
        transform: translateY(-1px) scale(1.01);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 1020px) {
    .sidebar {
        display: none;
    }

    .topbar {
        left: 0;
        width: 100%;
    }

    .wrapper {
        margin-left: 0;
        left: 0;
        width: 100%;
    }

    .videos-container {
        margin-left: 50% !important;
        transform: translateX(-50%);
    }
}