.page{
    display: flex;
}

.join{
    padding: 20px;
}

.join button{
    background-image: linear-gradient(rgb(0, 80, 133), rgb(0, 174, 255));
    border-radius: 10px;
    font-size: xx-large;
    padding: 10px;
}

.join button a{
    color: white;
    text-decoration: none;
}

.content {
    flex: 1;
    border-style: none;
    min-height: 500px;
    transition: width 0.3s ease;
}


.right-menu {
    border-style: none;
    margin-left: auto;
    width: 50%;
    min-height: 500px;
    transition: width 0.3s ease, opacity 0.3s ease;
    overflow: hidden; /* Prevent content overflow when collapsed */
}

.right-menu.collapsed {
    width: 0;
    opacity: 0;
    pointer-events: none; /* Prevent clicking on hidden elements */
}


.featured-videos{
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(120px,1fr));
}

.grid-videos{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 15px;
}