/* ==========================
   Miraculous66 v1.0
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#111;
    color:#fff;
    line-height:1.8;
}

/* ===== Navbar ===== */

.navbar{
    position:sticky;
    top:0;
    z-index:1000;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 8%;

    background:#000;

    border-bottom:1px solid #222;
}

.logo img{

    width:65px;

}

.navbar ul{

    display:flex;

    list-style:none;

    gap:35px;

}

.navbar ul li a{

    text-decoration:none;

    color:#fff;

    font-weight:500;

    transition:.3s;

}

.navbar ul li a:hover{

    color:#e50914;

}

.active{

    color:#e50914 !important;

}

/* ===== Notice ===== */

.notice{

    background:#b00000;

    text-align:center;

    padding:18px;

    line-height:2;

    font-size:15px;

}

/* ===== Hero ===== */

.hero{

    position:relative;

    height:90vh;

    overflow:hidden;

}

.banner{

    width:100%;

    height:100%;

    object-fit:cover;

}

.overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:20px;

}

.main-logo{

    width:170px;

    margin-bottom:25px;

}

.hero h1{

    font-size:50px;

    margin-bottom:15px;

}

.hero p{

    font-size:22px;

    color:#ddd;

    margin-bottom:35px;

}

.button{

    display:inline-block;

    background:#e50914;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:8px;

    transition:.3s;

}

.button:hover{

    background:#ff2936;

}/*========== Season 6 ==========*/

.page-title{

text-align:center;

font-size:42px;

margin-top:60px;

color:#e50914;

}

.page-text{

text-align:center;

color:#bbb;

margin:20px auto 50px;

max-width:700px;

line-height:2;

}

.episodes{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

gap:20px;

width:90%;

max-width:1000px;

margin:auto;

padding-bottom:80px;

}

.episode{

background:#1b1b1b;

padding:20px;

border-radius:12px;

text-align:center;

text-decoration:none;

color:white;

font-size:20px;

transition:.3s;

border:1px solid #333;

}

.episode:hover{

background:#e50914;

transform:translateY(-5px);

}

.locked{

background:#2b2b2b;

color:#777;

cursor:not-allowed;

border:1px solid #555;

}

.locked:hover{

background:#2b2b2b;

transform:none;

}

.locked span{

display:block;

margin-top:10px;

color:#ff4d4d;

font-size:15px;

font-weight:bold;

}/* ===== Movies ===== */

.episode b{

display:block;

font-size:20px;

margin-bottom:8px;

}

.episode span{

display:block;

margin-top:15px;

color:#ff4d4d;

font-weight:bold;

}

.episode{

cursor:pointer;

}/* ===== Contact ===== */

.contact-box{

max-width:550px;

margin:40px auto 80px;

background:#1b1b1b;

padding:40px;

border-radius:18px;

text-align:center;

border:1px solid #333;

transition:.3s;

}

.contact-box:hover{

transform:translateY(-8px);

border-color:#e50914;

}

.contact-logo{

width:120px;

margin-bottom:25px;

}

.contact-box h3{

font-size:30px;

margin-bottom:15px;

color:#fff;

}

.contact-box p{

color:#bbb;

margin-bottom:30px;

line-height:2;

}/* ===== Back Home Button ===== */

.back-home{

text-align:center;

margin:40px 0 80px;

}.release{
    text-align:center;
    margin:50px auto;
    padding:20px;
}

.release h2{
    font-size:28px;
    margin-bottom:30px;
}

.release .card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,0,0,0.4);
    border-radius:20px;
    padding:25px;
    margin:20px auto;
    max-width:350px;
    transition:0.3s;
}

.release .card:hover{
    transform:translateY(-5px);
}

.release .card h3{
    font-size:22px;
    margin-bottom:15px;
}

.release .card p{
    font-size:18px;
    color:#ff4444;
}