
body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
    background: #141414;
    color: grey;
    margin: 0;
    padding: 0;
}
.title{
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
    color: grey;
    font-size:30px;

}
.headerStyle{
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
    color: grey;
    padding-left:20px;
    padding-top: 10px;
    font-size:25px;

}
.navbar {
    background: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar h1 {
    color: grey;
    margin: 0;
}
.menu a {
    color: grey;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    transition: background 0.3s ease;
}
.menu a:hover {
    background: lightgrey;
    color: black;
}
.scroll-container {
    padding: 20px;
    overflow-x: auto;
}
.scroll-row {
    display: flex;
    gap: 10px;
}
.movie-card {
    position: relative;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}
.movie-card img {
    width: 200px;
    height: 300px;
    border-radius: 10px;
}
.movie-card:hover {
    transform: scale(1.1);
}
.movie-title {
    transition: all 0.3s ease-in-out;
}
.movie-card:hover .movie-title {
    color: yellow;
    font-size: 1.2em;
}
.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    padding: 5px;
    color: white;
}

.video-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    max-width: 80%;
    width: 80%;
    max-height: 90%;
    overflow: hidden;
    color: white;
}

/* Flex Layout for Image and Metadata */
.popup-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

/* Image */
.popup-image {
    position: relative;
    max-width: 50%;
}

.popup-image img {
    width: 100%;
    border-radius: 8px;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    padding: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.play-button:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}

/* Metadata */
.popup-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 50%;
}

/* Video Player */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.video-player {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* Close Button */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: black;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1001;
}

.close-button:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}
/*.video-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 10px;
    display: flex;
    padding: 20px;
    color: white;
    z-index: 1000;
}

.popup-content {
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
}
.popup-image {
    position: relative;
    width: 40%;
}
.popup-image img {
    width: 100%;
    border-radius: 10px;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
}*/
/*
/* Position the Play Button in the Center of the Image */
/*.play-button {
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background: rgba(255, 255, 255, 0.3); 
    border: none;
    border-radius: 50%;
    padding: 20px; 
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 30px;
    color: white;
}
.play-button:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) scale(1.1); 
} 
*/

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: url('https://picsum.photos/800/600') center/cover no-repeat;
}

.login-form {
    background: rgba(0, 0, 0, 0.85);
    padding: 40px; /* Increased padding */
    border-radius: 12px;
    text-align: center;
    color: white;
    max-width: 400px; /* Increased max-width */
    width: 90%; /* Responsive width */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6); /* Add subtle shadow for better aesthetics */
}

.login-form input {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 5px;
}
.login-form button {
    background: grey;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Arial, sans-serif;
    color: grey;
}
.navbar a {
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.navbar a:hover {
    background: grey;
    color: white;
}
.video-popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    color: white;
    font-size: 20px;
    border: none;
    cursor: pointer;
}
.login-form input, .login-form button {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 10px;
    border-radius: 5px;
}
.login-form input:hover, .login-form button:hover {
    background: lightgrey;
}

/* Glossy Input Fields */
.glossy-input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: inset 2px 2px 5px #ccc, inset -2px -2px 5px #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.glossy-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
    background: #fff;
}

/* Glossy Buttons */
.glossy-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(145deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.glossy-button:hover {
    background: linear-gradient(145deg, #0056b3, #003d80);
}

/* Verification Code Inputs */
.verification-code {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.verification-digit {
    width: 40px;
    height: 50px;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: linear-gradient(145deg, #f0f0f0, #ffffff);
    box-shadow: inset 2px 2px 5px #ccc, inset -2px -2px 5px #fff;
    transition: all 0.3s ease;
}

.verification-digit:focus {
    border-color: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.6);
}
