*{
    margin: 0;
}

body{
    font-family: "Inter", sans-serif;
}

.container{
    background-color: black;
    min-height: 100vh;
    color: white;
}

.content-container{
    margin-left: 50px;
    background-color: black;
}

.new-movies-list{
    padding: 10px;
}

.navbar{
    width: 100%;
    height: 50px;
    background-color: black;
    padding-bottom: 35px;
}

.right-icons {
    display:flex;  
    align-items:center;  
    gap:12px;
}

.navbar-icons{
    color: white;
    cursor: pointer;
}

.navbar-container{
    display: flex;
    align-items: center;
    background-color: black;
    padding: 0 50px;
    height: 85px;
    font-family: "Inter", sans-serif;
}

.logo-container{
    flex: 3;
    color: red;
}

.logo{
    font-family: "Inter", sans-serif;
    font-size: 50px;
}

.menu-container{
    flex: 10;
    color: white;
}

.menu-list{
    display: flex;
    list-style: none;
}

.menu-list-item{
    margin-right: 20px;
}

.profile-container{
    flex: 0.25;
}

.pfp{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.new-movies-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.new-movies {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.new-movies-item {
    flex-shrink: 0;
    position: relative;
}

.new-movies-item:hover .new-movies-item-img{
    transform: scale(1.2);
}

.new-movies-item-img {
    transition: all 0.25s ease-in-out;
    width: 220px;
    height: 200px;
    object-fit: cover;
    display: block;
}

.new-movies-item {
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
}

.new-movies-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    padding: 20px;
    opacity: 0;
    transition: opacity 0.25s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.new-movies-item:hover .new-movies-item-info {
    opacity: 1;
}

.new-movies-item:hover .new-movies-item-img {
    transform: scale(1.2);
}

.new-movies-item-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.new-movies-item-desc {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    max-height: 40px;
    overflow: hidden;
}

.watch-button {
    background-color: red;
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
    width: fit-content;
}

.watch-button:hover {
    background-color: darkred;
}

.new-movies-list {
    position: relative;
    transform: translateX(0);
}

.r-arrow {
    font-size: 100px;
    position: absolute;
    top: 100px;
    right: 20px;
    opacity: 0.5;
    cursor: pointer;
}
