/* ====================================
   MCU Timeline Guide
==================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;

background:#050505;

color:white;

overflow-x:hidden;

}

/* Background */

.background{

position:fixed;

width:100%;

height:100%;

background:

radial-gradient(circle at top,#8b0000 0%,transparent 35%),

linear-gradient(#050505,#000);

z-index:-2;

}

/* NAVBAR */

nav{

position:fixed;

top:0;

left:0;

width:100%;

padding:18px 20px;

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(0,0,0,.45);

backdrop-filter:blur(12px);

z-index:999;

}

.logo{

font-family:Orbitron;

font-size:26px;

font-weight:900;

letter-spacing:3px;

color:#ff4242;

}

nav ul{

display:flex;

gap:25px;

list-style:none;

}

nav li{

cursor:pointer;

transition:.3s;

}

nav li:hover{

color:#ff3d3d;

}

/* HERO */

.hero{

height:100vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

padding:20px;

}

.hero h1{

font-family:Orbitron;

font-size:62px;

line-height:1.1;

margin-bottom:20px;

}

.hero h1 span{

display:block;

color:#ff4040;

}

.hero p{

max-width:750px;

line-height:1.8;

font-size:17px;

color:#d8d8d8;

margin-bottom:30px;

}

#search{

width:100%;

max-width:550px;

padding:18px;

border:none;

border-radius:40px;

background:#151515;

color:white;

font-size:16px;

outline:none;

margin-bottom:25px;

}

.buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

justify-content:center;

}

button{

cursor:pointer;

border:none;

font-weight:600;

transition:.3s;

}

#timelineBtn{

background:#ff3b3b;

padding:16px 35px;

border-radius:35px;

color:white;

box-shadow:0 0 30px rgba(255,0,0,.35);

}

#timelineBtn:hover{

transform:translateY(-5px);

}

#essentialBtn{

background:transparent;

border:2px solid #ff4040;

padding:16px 35px;

border-radius:35px;

color:white;

}

/* STATS */

.stats{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

padding:40px 20px;

max-width:1100px;

margin:auto;

}

.stats div{

background:rgba(255,255,255,.05);

padding:25px;

text-align:center;

border-radius:18px;

border:1px solid rgba(255,0,0,.15);

backdrop-filter:blur(10px);

}

.stats h2{

font-size:42px;

color:#ff4b4b;

font-family:Orbitron;

}

/* FILTERS */

.filters{

display:flex;

overflow:auto;

gap:12px;

padding:20px;

margin-bottom:30px;

}

.filter{

padding:12px 22px;

border-radius:30px;

background:#171717;

color:white;

white-space:nowrap;

}

.filter.active{

background:#ff4040;

}

/* TIMELINE */

#timeline{

max-width:1200px;

margin:auto;

padding:20px;

display:grid;

gap:25px;

}

.movie-card{

background:rgba(255,255,255,.05);

padding:25px;

border-radius:18px;

border:1px solid rgba(255,0,0,.15);

transition:.35s;

}

.movie-card:hover{

transform:translateY(-6px);

box-shadow:0 0 25px rgba(255,0,0,.25);

}

.movie-card h2{

font-family:Orbitron;

color:#ff4d4d;

margin-bottom:10px;

}

.badges{

display:flex;

gap:10px;

margin:15px 0;

flex-wrap:wrap;

}

.badge{

background:#202020;

padding:6px 14px;

border-radius:20px;

font-size:13px;

}

.summary{

margin:18px 0;

line-height:1.7;

color:#ddd;

}

.why{

padding:18px;

background:#121212;

border-left:4px solid #ff4040;

border-radius:12px;

margin-top:15px;

}

/* FOOTER */

footer{

padding:50px 20px;

text-align:center;

color:#aaa;

}

/* MOBILE */

@media(max-width:768px){

nav ul{

display:none;

}

.hero h1{

font-size:40px;

}

.hero p{

font-size:15px;

}

.stats{

grid-template-columns:1fr;

}

}
.essential{

background:#ff4040;

color:white;

}

.optional{

background:#444;

color:white;

}
.actions{

margin-top:25px;

display:flex;

justify-content:flex-end;

}

.actions button{

padding:14px 24px;

border:none;

border-radius:35px;

background:#ff4040;

color:white;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.actions button:hover{

transform:scale(1.05);

box-shadow:0 0 20px rgba(255,0,0,.35);

}
.movie-card{

display:flex;

gap:20px;

align-items:flex-start;

}

.poster{

width:110px;

height:160px;

border-radius:15px;

background:

linear-gradient(

135deg,

#ff2e2e,

#111

);

display:flex;

justify-content:center;

align-items:center;

font-size:50px;

flex-shrink:0;

}

.content{

flex:1;

}

.actions{

display:flex;

gap:10px;

margin-top:25px;

flex-wrap:wrap;

}

.fav{

width:50px;

height:50px;

border-radius:50%;

background:#222;

color:white;

font-size:22px;

}

.trailer{

padding:14px 24px;

border-radius:35px;

background:#0078ff;

color:white;

text-decoration:none;

font-weight:bold;

}

.trailer:hover{

background:#005fe0;

}

@media(max-width:768px){

.movie-card{

flex-direction:column;

}

.poster{

width:100%;

height:220px;

font-size:70px;

}

}
.progress-section{

padding:25px;

}

.progress-bar{

height:18px;

background:#222;

border-radius:50px;

overflow:hidden;

max-width:1100px;

margin:auto;

}

#bar{

height:100%;

width:0;

background:

linear-gradient(

90deg,

#ff4040,

#ff9a00

);

transition:1s;

}
.dashboard{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:20px;

padding:25px;

max-width:1200px;

margin:auto;

}

.dashboard>div{

background:rgba(255,255,255,.05);

padding:25px;

border-radius:20px;

border:1px solid rgba(255,0,0,.2);

backdrop-filter:blur(12px);

}

#countdown{

font-size:26px;

font-family:Orbitron;

color:#ff4040;

margin-top:20px;

}

#nextMovie{

margin-top:15px;

font-size:18px;

font-weight:bold;

}

#watchHours{

margin-top:15px;

font-size:22px;

color:#ff5050;

}
.button-link{

display:inline-block;

padding:16px 35px;

border-radius:35px;

text-decoration:none;

text-align:center;

font-weight:600;

background:#ff4040;

color:white;

box-shadow:0 0 30px rgba(255,0,0,.35);

transition:.3s;

}

.button-link:hover{

transform:translateY(-5px);

}

.secondary-link{

background:transparent;

border:2px solid #ff4040;

color:white;

}