/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    font-family: 'Georgia', serif; /* Use a classic serif for a cinematic feel */
    color: white;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Update 'film-poster.jpg' to your actual image name */
    background: url('hero-bg.jpg') no-repeat center center/cover;
}

/* Darkens the background image so text pops */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    letter-spacing: 3px;
}

.studio-tag {
    font-size: 0.8rem;
    font-family: 'Arial', sans-serif;
    margin-bottom: 10px;
    opacity: 0.8;
}

.movie-title {
    font-size: clamp(3rem, 10vw, 6rem); /* Responsive text size */
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.coming-soon-box {
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding: 20px 0;
    display: inline-block;
    margin-bottom: 40px;
}

.status {
    font-size: 1rem;
    margin-bottom: 5px;
}

.release-date {
    font-size: 2rem;
    font-weight: bold;
}

/* Subscription Form */
.subscription p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-family: 'Arial', sans-serif;
}

input {
    padding: 10px;
    width: 250px;
    border: none;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    outline: none;
}

button {
    padding: 10px 20px;
    background: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background: #ccc;
}