* {
    box-sizing: border-box;
}

body, html {
    
    margin: 0;
    background-size: cover;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000;
    overflow-x: hidden;
}

.movie-banner {
    
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 12%;
    padding-bottom: 2%;
}


.dark-overlay {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.9) 100%);
    z-index: 1;
}


#menu-toggle {
    display: none;
}

.menu-icon-label {
    position: absolute;
    top: 30px;
    left: 30px;
    cursor: pointer;
    z-index: 10;
    display: block;
}

.menu-icon-label span {
    display: block;
    width: 35px;
    height: 4px;
    background-color: #e50914;
    margin-bottom: 6px;
    border-radius: 2px;
    transition: 0.3s;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -300px; 
    width: 280px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: 0.5s ease;
    padding-top: 80px;
    border-right: 1px solid rgba(229, 9, 20, 0.3);
}


#menu-toggle:checked ~ .sidebar {
    left: 0;
   
}

.sidebar h3 {
    color: #e50914;
    padding-left: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sidebar a {
    display: block;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.sidebar a:hover {
    background: #e50914;
    padding-left: 40px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}


.banner-card {
    position: relative;
    z-index: 2;
    max-width: 420px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08); 
    backdrop-filter: blur(15px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
    color: white;
}

.main-title {
    font-size: 3.5rem;
    font-size: 35px;
    margin: 0 0 15px 0;
    font-weight: 900;
    line-height: 1;
}

.tag {
    font-size: 0.85rem;
    background: rgba(229, 9, 20, 0.8);
    padding: 5px 12px;
    border-radius: 6px;
    margin-right: 10px;
    font-weight: bold;
}

.description {
    font-size: 1rem;
    line-height: 1.7;
    color: #efefef;
    margin-bottom: 35px;
}

.play-btn {
    background: #e50914;
    color: white;
    border: none;
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
}

.play-btn:hover {
    background: #ff0a16;
    transform: scale(1.08);
}
.brand-logo {
    position: fixed; 
    top: 25px;
    right: 40px;
    display: flex;
    align-items: center;
    z-index: 9999;
    opacity: 0.85; 
    transition: opacity 0.3s ease; 
    cursor: pointer;
}

.brand-logo:hover {
    opacity: 1; 
}

.full-name {
   position: fixed;
   top: 25px;
   right: 25px;
   z-index: 999;

    color: #E50914;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;

}