*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body,html{
height:100%;
background:black;
color:white;
}

/* HERO SECTION */
.hero {
position: relative;
height: 100vh;
overflow: hidden;
}

.hero::before {
content: "";
position: absolute;
inset: 0;
background: url('https://wallpapercat.com/w/full/5/e/9/720636-2560x1440-desktop-hd-the-sorcerers-stone-wallpaper-image.jpg') center/cover no-repeat;
filter: grayscale(10%);
animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
from { transform: scale(1); }
to { transform: scale(1.15); }
}

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:
linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 35%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.05) 100%);
}

.content{
position:absolute;
top:50%;
left:8%;
transform:translateY(-50%);
max-width:650px;
}

h1{
font-size:5rem;
letter-spacing:2px;
font-weight:800;
margin-bottom:20px;
}

.meta{
opacity:0.7;
margin-bottom:20px;
font-weight:300;
}

.description{
opacity:0.85;
line-height:1.6;
margin-bottom:10px;
}

.Notice{
opacity:0.85;
line-height:1.6;
color:rgb(237, 249, 5); 
font-weight:700;
margin-bottom:20px;
}

.buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
padding:14px 28px;
border:1px solid rgba(255,255,255,0.4);
text-decoration:none;
color:white;
background:rgba(255,255,255,0.08);
backdrop-filter:blur(8px);
transition:0.3s ease;
}

.btn:hover{
background:white;
color:black;
}

.primary{
background:white;
color:black;
border:none;
}

/* ========================= */
/* MOVIE LIST SECTION */
/* ========================= */

.section{
padding:30px 40px;
}

.section h2{
margin-bottom:20px;
}

/* MOVIE CARD */
.movie-card{
padding:18px 0;
border-bottom:1px solid rgba(255,255,255,0.1);
}

/* TITLE */
.movie-heading{
font-size:16px;
font-weight:600;
margin-bottom:10px;
}

/* BUTTONS */
.movie-buttons{
display:flex;
gap:12px;
flex-wrap:wrap;
}

.movie-buttons a{
background:rgba(255,255,255,0.08);
padding:8px 14px;
border-radius:6px;
text-decoration:none;
color:white;
font-size:14px;
transition:0.2s;
}

.movie-buttons a:hover{
background:#e50914;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

h1{
font-size:2.4rem;
}

.content{
left:5%;
right:5%;
}

.section{
padding:20px;
}

/* stack buttons */
.movie-buttons{
flex-direction:column;
}

.movie-buttons a{
width:100%;
text-align:center;
}

}

/* EXTRA SMALL */

@media(max-width:480px){

.section{
padding:15px;
}

.movie-heading{
font-size:15px;
}

}
