/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('netflix-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

/* Netflix-Style "Get Started" Section */
#get-started-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

#get-started-section input {
    width: 350px;
    height: 50px;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: white;
}

#get-started-section input::placeholder {
    color: #bbb;
}

#get-started-section button {
    height: 50px;
    padding: 10px 25px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: #e50914;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#get-started-section button:hover {
    background: #b20710;
}

/* Sign-In Button */
.signin-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

#signin-btn {
    background-color: red;
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

#signin-btn:hover {
    background: darkred;
}

/* Profile Section */
.profile-section {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
}

.profile-icon {
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    padding: 10px;
    border-radius: 5px;
}

.profile-dropdown:hover .dropdown-content {
    display: block;
}

/* Netflix-Style Sign-In Page */
.signin-page {
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
}

.signin-box {
    background: black;
    padding: 40px;
    text-align: center;
    color: white;
    border-radius: 10px;
    width: 350px;
}

.signin-box h2 {
    margin-bottom: 20px;
}

.signin-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
}

.signin-box input::placeholder {
    color: #bbb;
}

.signin-box button {
    width: 100%;
    padding: 12px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.signin-box button:hover {
    background: darkred;
}

.signin-box a {
    color: red;
    text-decoration: none;
}

/* Welcome Message */
.hidden {
    display: none;
}

#welcome-message {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-top: 20px;
}

/* Movie Section */
.movies {
    padding: 20px;
}

.movie-container {
    display: flex;
    overflow-x: scroll;
    gap: 20px;
}

/* Movie Poster Styling */
.movie {
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.movie img {
    width: 200px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Movie Number Styling */
.movie-number {
    position: absolute;
    font-size: 4rem;
    bottom: 10px;
    left: 5px;
    font-family: 'Arial Black', sans-serif;
    color: rgb(10, 1, 1);
    -webkit-text-stroke: 0.25rem white;
    text-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.5);
}

/* Hover Effects */
.movie:hover img {
    transform: scale(1.1);
}

.movie:hover .movie-number {
    background: red;
    box-shadow: 0 0 10px red;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #222;
}