/*
|--------------------------------------------------------------------------
| GOOGLE FONT
|--------------------------------------------------------------------------
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/*
|--------------------------------------------------------------------------
| ROOT
|--------------------------------------------------------------------------
*/

:root{

    --bg-color:#020617;

    --card-color:#0f172a;

    --card-hover:#162033;

    --primary:#06b6d4;

    --primary-hover:#0891b2;

    --secondary:#8b5cf6;

    --text:#f8fafc;

    --text-light:#cbd5e1;

    --border:rgba(255,255,255,0.08);

    --danger:#ef4444;

    --success:#22c55e;

    --shadow:
    0 10px 40px rgba(0,0,0,0.35);

    --gradient:
    linear-gradient(
        135deg,
        #06b6d4,
        #8b5cf6
    );
}

/*
|--------------------------------------------------------------------------
| RESET
|--------------------------------------------------------------------------
*/

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

/*
|--------------------------------------------------------------------------
| HTML
|--------------------------------------------------------------------------
*/

html{
    scroll-behavior:smooth;
}

/*
|--------------------------------------------------------------------------
| BODY
|--------------------------------------------------------------------------
*/

body{

    background:
    radial-gradient(
        circle at top,
        rgba(6,182,212,0.15),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(139,92,246,0.12),
        transparent 30%
    ),
    var(--bg-color);

    color:var(--text);

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

    min-height:100vh;

    overflow-x:hidden;
}

/*
|--------------------------------------------------------------------------
| SCROLLBAR
|--------------------------------------------------------------------------
*/

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#020617;
}

::-webkit-scrollbar-thumb{
    background:var(--primary);
    border-radius:20px;
}

/*
|--------------------------------------------------------------------------
| LINKS
|--------------------------------------------------------------------------
*/

a{
    text-decoration:none;
    color:var(--text);
    transition:0.3s ease;
}

/*
|--------------------------------------------------------------------------
| IMAGES
|--------------------------------------------------------------------------
*/

img{
    width:100%;
    display:block;
}

/*
|--------------------------------------------------------------------------
| CONTAINER
|--------------------------------------------------------------------------
*/

.container{

    width:92%;

    max-width:1400px;

    margin:auto;
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:
    rgba(2,6,23,0.85);

    border-bottom:
    1px solid var(--border);
}

/*
|--------------------------------------------------------------------------
| HEADER WRAPPER
|--------------------------------------------------------------------------
*/

.header-wrapper{

    min-height:85px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:30px;
}

/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.logo a{

    font-size:32px;

    font-weight:900;

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    letter-spacing:-1px;
}

/*
|--------------------------------------------------------------------------
| NAVIGATION
|--------------------------------------------------------------------------
*/

nav ul{

    list-style:none;

    display:flex;

    align-items:center;

    gap:28px;
}

nav ul li a{

    position:relative;

    font-size:15px;

    font-weight:600;

    color:var(--text-light);
}

/*
|--------------------------------------------------------------------------
| NAV HOVER
|--------------------------------------------------------------------------
*/

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gradient);

    transition:0.3s;
}

nav ul li a:hover{

    color:white;
}

nav ul li a:hover::after{

    width:100%;
}

/*
|--------------------------------------------------------------------------
| USER AREA
|--------------------------------------------------------------------------
*/

.user-area{

    display:flex;

    align-items:center;

    gap:15px;
}

/*
|--------------------------------------------------------------------------
| USERNAME
|--------------------------------------------------------------------------
*/

.user-area p{

    font-size:14px;

    font-weight:600;

    color:var(--text-light);
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px 22px;

    border:none;

    border-radius:12px;

    background:var(--gradient);

    color:white;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;

    box-shadow:
    0 10px 25px rgba(6,182,212,0.25);
}

.btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 35px rgba(6,182,212,0.35);
}

/*
|--------------------------------------------------------------------------
| HERO
|--------------------------------------------------------------------------
*/

.hero{

    position:relative;

    padding:120px 0 100px;
}

/*
|--------------------------------------------------------------------------
| HERO CONTENT
|--------------------------------------------------------------------------
*/

.hero-content{

    max-width:760px;
}

/*
|--------------------------------------------------------------------------
| HERO TITLE
|--------------------------------------------------------------------------
*/

.hero h1{

    font-size:72px;

    line-height:1.1;

    font-weight:900;

    margin-bottom:25px;

    letter-spacing:-2px;
}

/*
|--------------------------------------------------------------------------
| HERO GRADIENT
|--------------------------------------------------------------------------
*/

.hero h1 span{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/*
|--------------------------------------------------------------------------
| HERO TEXT
|--------------------------------------------------------------------------
*/

.hero p{

    font-size:18px;

    line-height:1.8;

    color:var(--text-light);

    margin-bottom:35px;

    max-width:650px;
}

/*
|--------------------------------------------------------------------------
| HERO BUTTONS
|--------------------------------------------------------------------------
*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

/*
|--------------------------------------------------------------------------
| SECONDARY BUTTON
|--------------------------------------------------------------------------
*/

.btn-secondary{

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.1);

    box-shadow:none;
}

.btn-secondary:hover{

    background:
    rgba(255,255,255,0.12);
}

/*
|--------------------------------------------------------------------------
| SECTION
|--------------------------------------------------------------------------
*/

section{

    padding:70px 0;
}

/*
|--------------------------------------------------------------------------
| SECTION TITLE
|--------------------------------------------------------------------------
*/

.section-title{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    margin-bottom:40px;
}

.section-title h2{

    font-size:34px;

    font-weight:800;

    letter-spacing:-1px;
}

.section-title p{

    color:var(--text-light);

    font-size:15px;
}

/*
|--------------------------------------------------------------------------
| MOVIES GRID
|--------------------------------------------------------------------------
*/

.movies-grid{

    display:grid;

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

    gap:28px;
}

/*
|--------------------------------------------------------------------------
| MOVIE CARD
|--------------------------------------------------------------------------
*/

.movie-card{

    position:relative;

    background:var(--card-color);

    border:
    1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:var(--shadow);
}

/*
|--------------------------------------------------------------------------
| CARD HOVER
|--------------------------------------------------------------------------
*/

.movie-card:hover{

    transform:
    translateY(-10px);

    background:var(--card-hover);

    border-color:
    rgba(6,182,212,0.3);
}

/*
|--------------------------------------------------------------------------
| MOVIE IMAGE
|--------------------------------------------------------------------------
*/

.movie-image{

    width:100%;

    height:360px;

    object-fit:cover;
}

/*
|--------------------------------------------------------------------------
| MOVIE BADGE
|--------------------------------------------------------------------------
*/

.movie-badge{

    position:absolute;

    top:15px;

    left:15px;

    padding:8px 14px;

    border-radius:50px;

    background:
    rgba(6,182,212,0.9);

    color:white;

    font-size:12px;

    font-weight:700;

    backdrop-filter:blur(10px);
}

/*
|--------------------------------------------------------------------------
| MOVIE CONTENT
|--------------------------------------------------------------------------
*/

.movie-content{

    padding:22px;
}

/*
|--------------------------------------------------------------------------
| MOVIE TITLE
|--------------------------------------------------------------------------
*/

.movie-content h3{

    font-size:20px;

    font-weight:800;

    margin-bottom:12px;
}

/*
|--------------------------------------------------------------------------
| MOVIE TEXT
|--------------------------------------------------------------------------
*/

.movie-content p{

    font-size:14px;

    color:var(--text-light);

    margin-bottom:10px;

    line-height:1.7;
}

/*
|--------------------------------------------------------------------------
| MOVIE META
|--------------------------------------------------------------------------
*/

.movie-meta{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:18px;
}

/*
|--------------------------------------------------------------------------
| SEARCH FORM
|--------------------------------------------------------------------------
*/

.search-form{

    display:flex;

    align-items:center;

    gap:15px;

    background:
    rgba(255,255,255,0.03);

    padding:12px;

    border:
    1px solid var(--border);

    border-radius:20px;

    backdrop-filter:blur(15px);
}

/*
|--------------------------------------------------------------------------
| SEARCH INPUT
|--------------------------------------------------------------------------
*/

.search-form input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    color:white;

    font-size:15px;

    padding:10px;
}

.search-form input::placeholder{

    color:#94a3b8;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

footer{

    margin-top:100px;

    background:
    rgba(15,23,42,0.8);

    border-top:
    1px solid var(--border);

    padding:70px 0 30px;
}

/*
|--------------------------------------------------------------------------
| FOOTER GRID
|--------------------------------------------------------------------------
*/

.footer-grid{

    display:grid;

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

    gap:40px;

    margin-bottom:50px;
}

/*
|--------------------------------------------------------------------------
| FOOTER TITLE
|--------------------------------------------------------------------------
*/

.footer-title{

    font-size:18px;

    margin-bottom:18px;

    font-weight:800;
}

/*
|--------------------------------------------------------------------------
| FOOTER TEXT
|--------------------------------------------------------------------------
*/

.footer-text{

    color:var(--text-light);

    line-height:1.8;

    font-size:14px;
}

/*
|--------------------------------------------------------------------------
| FOOTER LINKS
|--------------------------------------------------------------------------
*/

.footer-links{

    list-style:none;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links li a{

    color:var(--text-light);

    font-size:14px;
}

.footer-links li a:hover{

    color:var(--primary);

    padding-left:5px;
}

/*
|--------------------------------------------------------------------------
| COPYRIGHT
|--------------------------------------------------------------------------
*/

.copyright{

    padding-top:25px;

    border-top:
    1px solid var(--border);

    text-align:center;

    color:var(--text-light);

    font-size:14px;
}

/*
|--------------------------------------------------------------------------
| ALERTS
|--------------------------------------------------------------------------
*/

.alert{

    padding:16px 20px;

    border-radius:14px;

    margin-bottom:25px;

    font-weight:600;
}

.alert-success{

    background:
    rgba(34,197,94,0.12);

    border:
    1px solid rgba(34,197,94,0.25);

    color:#4ade80;
}

.alert-error{

    background:
    rgba(239,68,68,0.12);

    border:
    1px solid rgba(239,68,68,0.25);

    color:#f87171;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:992px){

    .hero h1{

        font-size:54px;
    }

    .header-wrapper{

        flex-direction:column;

        justify-content:center;

        padding:20px 0;
    }

    nav ul{

        flex-wrap:wrap;

        justify-content:center;
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .hero{

        padding:90px 0 70px;
    }

    .hero h1{

        font-size:42px;
    }

    .hero p{

        font-size:16px;
    }

    .section-title{

        flex-direction:column;

        align-items:flex-start;
    }

    .movies-grid{

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

        gap:20px;
    }

    .movie-image{

        height:250px;
    }

    .search-form{

        flex-direction:column;
    }

    .search-form button{

        width:100%;
    }
}

/*
|--------------------------------------------------------------------------
| SMALL MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:480px){

    .hero h1{

        font-size:34px;
    }

    .logo a{

        font-size:26px;
    }

    .btn{

        width:100%;
    }

    .movie-image{

        height:220px;
    }
}
/*
|--------------------------------------------------------------------------
| ROOT COLORS UPDATE
|--------------------------------------------------------------------------
*/

:root{

    --bg-color:#020617;

    --card-color:rgba(15,23,42,0.75);

    --card-hover:rgba(30,41,59,0.95);

    --primary:#ef4444;

    --primary-hover:#dc2626;

    --secondary:#8b5cf6;

    --text:#f8fafc;

    --text-light:#cbd5e1;

    --border:rgba(255,255,255,0.08);

    --danger:#ef4444;

    --success:#22c55e;

    --shadow:
    0 10px 40px rgba(0,0,0,0.35);

    --gradient:
    linear-gradient(
        135deg,
        #ef4444,
        #b91c1c
    );
}

/*
|--------------------------------------------------------------------------
| BODY BACKGROUND
|--------------------------------------------------------------------------
*/

body{

    background:
    linear-gradient(
        rgba(2,6,23,0.92),
        rgba(2,6,23,0.94)
    ),
    url('../img/auth-bg.jpg');

    background-size:cover;

    background-position:center;

    background-attachment:fixed;

    color:var(--text);

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

    min-height:100vh;

    overflow-x:hidden;
}

/*
|--------------------------------------------------------------------------
| GLASS EFFECT
|--------------------------------------------------------------------------
*/

header,
.movie-card,
.search-form,
footer{

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);
}

/*
|--------------------------------------------------------------------------
| BUTTONS
|--------------------------------------------------------------------------
*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:12px 24px;

    border:none;

    border-radius:14px;

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #b91c1c
    );

    color:white;

    font-size:14px;

    font-weight:700;

    cursor:pointer;

    transition:0.35s ease;

    box-shadow:
    0 12px 30px rgba(239,68,68,0.35);
}

/*
|--------------------------------------------------------------------------
| BUTTON HOVER
|--------------------------------------------------------------------------
*/

.btn:hover{

    background:
    linear-gradient(
        135deg,
        #dc2626,
        #991b1b
    );

    transform:
    translateY(-3px);

    box-shadow:
    0 18px 35px rgba(239,68,68,0.45);
}

/*
|--------------------------------------------------------------------------
| HERO BUTTONS
|--------------------------------------------------------------------------
*/

.btn-secondary{

    background:
    rgba(255,255,255,0.08);

    border:
    1px solid rgba(255,255,255,0.08);

    box-shadow:none;
}

.btn-secondary:hover{

    background:
    rgba(255,255,255,0.14);
}

/*
|--------------------------------------------------------------------------
| MOVIE CARD
|--------------------------------------------------------------------------
*/

.movie-card{

    position:relative;

    background:
    rgba(15,23,42,0.72);

    border:
    1px solid rgba(255,255,255,0.06);

    border-radius:24px;

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

/*
|--------------------------------------------------------------------------
| MOVIE CARD HOVER
|--------------------------------------------------------------------------
*/

.movie-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(239,68,68,0.3);

    box-shadow:
    0 20px 50px rgba(239,68,68,0.15);
}

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

header{

    position:sticky;

    top:0;

    z-index:999;

    background:
    rgba(2,6,23,0.72);

    border-bottom:
    1px solid rgba(255,255,255,0.06);
}

/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.logo a{

    font-size:32px;

    font-weight:900;

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #ffffff
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

/*
|--------------------------------------------------------------------------
| SECTION TITLE
|--------------------------------------------------------------------------
*/

.section-title h2{

    font-size:34px;

    font-weight:800;

    letter-spacing:-1px;

    color:white;
}

/*
|--------------------------------------------------------------------------
| MOVIE BADGE
|--------------------------------------------------------------------------
*/

.movie-badge{

    position:absolute;

    top:15px;

    left:15px;

    padding:8px 14px;

    border-radius:50px;

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #b91c1c
    );

    color:white;

    font-size:12px;

    font-weight:700;
}

/*
|--------------------------------------------------------------------------
| SEARCH FORM
|--------------------------------------------------------------------------
*/

.search-form{

    display:flex;

    align-items:center;

    gap:15px;

    background:
    rgba(15,23,42,0.65);

    padding:12px;

    border:
    1px solid rgba(255,255,255,0.06);

    border-radius:20px;
}

/*
|--------------------------------------------------------------------------
| SEARCH INPUT
|--------------------------------------------------------------------------
*/

.search-form input{

    flex:1;

    border:none;

    outline:none;

    background:transparent;

    color:white;

    font-size:15px;

    padding:10px;
}

/*
|--------------------------------------------------------------------------
| SEARCH BUTTON
|--------------------------------------------------------------------------
*/

.search-form button{

    border:none;

    cursor:pointer;
}

/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

footer{

    margin-top:100px;

    background:
    rgba(2,6,23,0.72);

    border-top:
    1px solid rgba(255,255,255,0.06);

    padding:70px 0 30px;
}
<header class="header">

    <div class="container">

        <div class="header-wrapper">

            <!-- LOGO -->

            <div class="logo">

                <a href="/index.php">

                    Jamana <span>Streaming</span>

                </a>

            </div>

            <!-- MOBILE TOGGLE -->

            <button class="menu-toggle"
                    id="menuToggle">

                <span></span>
                <span></span>
                <span></span>

            </button>

            <!-- NAVIGATION -->

            <nav class="navbar"
                 id="navbar">

                <ul class="nav-menu">

                    <li>

                        <a href="/index.php">

                            Accueil

                        </a>

                    </li>

                    <li>

                        <a href="/pages/categories.php">

                            Catégories

                        </a>

                    </li>

                    <li>

                        <a href="/pages/movies.php">

                            Films

                        </a>

                    </li>

                    <li>

                        <a href="/pages/series.php">

                            Séries

                        </a>

                    </li>

                    <li>

                        <a href="/pages/watchlist.php">

                            Ma liste

                        </a>

                    </li>

                </ul>

                <!-- MOBILE USER AREA -->

                <div class="mobile-user-area">

                    <?php if(isset($_SESSION['user_id'])): ?>

                        <div class="mobile-user-info">

                            <span>

                                <?= htmlspecialchars($_SESSION['username']); ?>

                            </span>

                        </div>

                        <a href="/pages/dashboard.php"
                           class="mobile-btn">

                            Dashboard

                        </a>

                        <a href="/auth/logout.php"
                           class="mobile-btn logout-btn">

                            Déconnexion

                        </a>

                    <?php else: ?>

                        <a href="/auth/login.php"
                           class="mobile-btn">

                            Connexion

                        </a>

                        <a href="/auth/signup.php"
                           class="mobile-btn register-btn">

                            Inscription

                        </a>

                    <?php endif; ?>

                </div>

            </nav>

            <!-- DESKTOP USER AREA -->

            <div class="user-area desktop-user-area">

                <?php if(isset($_SESSION['user_id'])): ?>

                    <div class="user-profile">

                        <div class="user-avatar">

                            <?= strtoupper(
                                substr(
                                    $_SESSION['username'],
                                    0,
                                    1
                                )
                            ); ?>

                        </div>

                        <span>

                            <?= htmlspecialchars($_SESSION['username']); ?>

                        </span>

                    </div>

                    <a href="/pages/dashboard.php"
                       class="btn">

                        Dashboard

                    </a>

                    <a href="/auth/logout.php"
                       class="btn logout-btn">

                        Déconnexion

                    </a>

                <?php else: ?>

                    <a href="/auth/login.php"
                       class="btn btn-secondary">

                        Connexion

                    </a>

                    <a href="/auth/signup.php"
                       class="btn">

                        Inscription

                    </a>

                <?php endif; ?>

            </div>

        </div>

    </div>

</header>

<!-- MOBILE MENU SCRIPT -->

<script>

const menuToggle =
document.getElementById(
    "menuToggle"
);

const navbar =
document.getElementById(
    "navbar"
);

menuToggle.addEventListener(
    "click",
    () => {

        navbar.classList.toggle(
            "active"
        );

        menuToggle.classList.toggle(
            "active"
        );
    }
);

</script>

Ajoute maintenant ceci dans main.css :

/*
|--------------------------------------------------------------------------
| HEADER
|--------------------------------------------------------------------------
*/

.header{

    position:sticky;

    top:0;

    z-index:9999;

    width:100%;

    backdrop-filter:blur(18px);

    background:
    rgba(2,6,23,0.75);

    border-bottom:
    1px solid rgba(255,255,255,0.06);
}

/*
|--------------------------------------------------------------------------
| HEADER WRAPPER
|--------------------------------------------------------------------------
*/

.header-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:85px;

    gap:30px;
}

/*
|--------------------------------------------------------------------------
| LOGO
|--------------------------------------------------------------------------
*/

.logo a{

    font-size:30px;

    font-weight:900;

    color:white;

    letter-spacing:-1px;
}

.logo span{

    color:#ef4444;
}

/*
|--------------------------------------------------------------------------
| NAVBAR
|--------------------------------------------------------------------------
*/

.navbar{

    display:flex;

    align-items:center;
}

/*
|--------------------------------------------------------------------------
| NAV MENU
|--------------------------------------------------------------------------
*/

.nav-menu{

    display:flex;

    align-items:center;

    gap:28px;

    list-style:none;
}

.nav-menu li a{

    position:relative;

    color:#cbd5e1;

    font-size:15px;

    font-weight:600;

    transition:0.3s;
}

.nav-menu li a:hover{

    color:white;
}

.nav-menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#ef4444;

    transition:0.3s;
}

.nav-menu li a:hover::after{

    width:100%;
}

/*
|--------------------------------------------------------------------------
| USER AREA
|--------------------------------------------------------------------------
*/

.user-area{

    display:flex;

    align-items:center;

    gap:14px;
}

/*
|--------------------------------------------------------------------------
| USER PROFILE
|--------------------------------------------------------------------------
*/

.user-profile{

    display:flex;

    align-items:center;

    gap:10px;

    padding:8px 14px;

    border-radius:14px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.06);
}

.user-avatar{

    width:38px;

    height:38px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #991b1b
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:14px;

    font-weight:800;

    color:white;
}

.user-profile span{

    font-size:14px;

    font-weight:600;

    color:white;
}

/*
|--------------------------------------------------------------------------
| MENU TOGGLE
|--------------------------------------------------------------------------
*/

.menu-toggle{

    width:50px;

    height:50px;

    border:none;

    display:none;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    border-radius:12px;

    cursor:pointer;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.08);
}

.menu-toggle span{

    width:24px;

    height:2px;

    background:white;

    transition:0.3s;
}

/*
|--------------------------------------------------------------------------
| TOGGLE ANIMATION
|--------------------------------------------------------------------------
*/

.menu-toggle.active span:nth-child(1){

    transform:
    rotate(45deg)
    translateY(8px);
}

.menu-toggle.active span:nth-child(2){

    opacity:0;
}

.menu-toggle.active span:nth-child(3){

    transform:
    rotate(-45deg)
    translateY(-8px);
}

/*
|--------------------------------------------------------------------------
| MOBILE USER AREA
|--------------------------------------------------------------------------
*/

.mobile-user-area{

    display:none;
}

/*
|--------------------------------------------------------------------------
| LOGOUT BUTTON
|--------------------------------------------------------------------------
*/

.logout-btn{

    background:
    linear-gradient(
        135deg,
        #dc2626,
        #991b1b
    );
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:992px){

    .menu-toggle{

        display:flex;
    }

    .desktop-user-area{

        display:none;
    }

    .navbar{

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        padding:25px;

        background:
        rgba(2,6,23,0.98);

        backdrop-filter:blur(20px);

        border-bottom:
        1px solid rgba(255,255,255,0.06);

        flex-direction:column;

        align-items:flex-start;

        gap:25px;

        opacity:0;

        visibility:hidden;

        transform:
        translateY(-10px);

        transition:0.35s ease;
    }

    .navbar.active{

        opacity:1;

        visibility:visible;

        transform:
        translateY(0);
    }

    .nav-menu{

        width:100%;

        flex-direction:column;

        align-items:flex-start;

        gap:20px;
    }

    .nav-menu li{

        width:100%;
    }

    .nav-menu li a{

        display:block;

        width:100%;

        padding:12px 0;

        font-size:16px;
    }

    .mobile-user-area{

        width:100%;

        display:flex;

        flex-direction:column;

        gap:15px;

        padding-top:20px;

        border-top:
        1px solid rgba(255,255,255,0.06);
    }

    .mobile-user-info{

        color:white;

        font-size:15px;

        font-weight:700;
    }

    .mobile-btn{

        display:flex;

        align-items:center;

        justify-content:center;

        padding:14px;

        border-radius:14px;

        background:
        rgba(255,255,255,0.06);

        color:white;

        font-weight:700;
    }

    .register-btn{

        background:
        linear-gradient(
            135deg,
            #ef4444,
            #991b1b
        );
    }
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media(max-width:768px){

    .header-wrapper{

        min-height:75px;
    }

    .logo a{

        font-size:24px;
    }
}
/*
|--------------------------------------------------------------------------
| FOOTER
|--------------------------------------------------------------------------
*/

.footer{

    position:relative;

    overflow:hidden;

    margin-top:100px;

    background:
    linear-gradient(
        180deg,
        rgba(15,23,42,0.98),
        rgba(2,6,23,1)
    );

    border-top:
    1px solid rgba(255,255,255,0.06);

    padding:
    90px 0 30px;
}

/*
|--------------------------------------------------------------------------
| FOOTER BLUR
|--------------------------------------------------------------------------
*/

.footer-blur{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:0.18;

    pointer-events:none;
}

.footer-blur-1{

    width:260px;

    height:260px;

    background:#ef4444;

    top:-80px;

    left:-80px;
}

.footer-blur-2{

    width:240px;

    height:240px;

    background:#3b82f6;

    bottom:-100px;

    right:-100px;
}

/*
|--------------------------------------------------------------------------
| FOOTER TOP
|--------------------------------------------------------------------------
*/

.footer-top{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.5fr;

    gap:50px;

    margin-bottom:60px;
}

/*
|--------------------------------------------------------------------------
| BRAND
|--------------------------------------------------------------------------
*/

.footer-brand h2{

    font-size:34px;

    font-weight:900;

    color:white;

    margin-bottom:18px;
}

.footer-brand span{

    color:#ef4444;
}

.footer-brand p{

    color:#94a3b8;

    line-height:1.8;

    max-width:420px;

    margin-bottom:25px;
}

/*
|--------------------------------------------------------------------------
| SOCIALS
|--------------------------------------------------------------------------
*/

.footer-socials{

    display:flex;

    flex-wrap:wrap;

    gap:12px;
}

.footer-socials a{

    padding:10px 18px;

    border-radius:14px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.06);

    color:white;

    font-size:14px;

    font-weight:600;

    transition:0.3s;
}

.footer-socials a:hover{

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #b91c1c
    );

    transform:
    translateY(-3px);
}

/*
|--------------------------------------------------------------------------
| FOOTER LINKS
|--------------------------------------------------------------------------
*/

.footer-links h3,
.footer-newsletter h3{

    color:white;

    font-size:20px;

    margin-bottom:22px;
}

.footer-links ul{

    list-style:none;
}

.footer-links ul li{

    margin-bottom:14px;
}

.footer-links ul li a{

    color:#94a3b8;

    transition:0.3s;
}

.footer-links ul li a:hover{

    color:white;

    padding-left:6px;
}

/*
|--------------------------------------------------------------------------
| NEWSLETTER
|--------------------------------------------------------------------------
*/

.footer-newsletter p{

    color:#94a3b8;

    margin-bottom:22px;

    line-height:1.7;
}

.footer-newsletter form{

    display:flex;

    flex-direction:column;

    gap:14px;
}

.footer-newsletter input{

    width:100%;

    padding:16px 18px;

    border:none;

    outline:none;

    border-radius:16px;

    background:
    rgba(255,255,255,0.05);

    border:
    1px solid rgba(255,255,255,0.06);

    color:white;
}

.footer-newsletter input::placeholder{

    color:#94a3b8;
}

.footer-newsletter button{

    border:none;

    cursor:pointer;

    padding:16px;

    border-radius:16px;

    font-weight:700;

    color:white;

    background:
    linear-gradient(
        135deg,
        #ef4444,
        #991b1b
    );

    transition:0.3s;
}

.footer-newsletter button:hover{

    transform:
    translateY(-2px);

    box-shadow:
    0 15px 40px rgba(239,68,68,0.35);
}

/*
|--------------------------------------------------------------------------
| FOOTER BOTTOM
|--------------------------------------------------------------------------
*/

.footer-bottom{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:20px;

    padding-top:30px;

    border-top:
    1px solid rgba(255,255,255,0.06);
}

.footer-bottom p{

    color:#64748b;

    font-size:14px;
}

.footer-bottom-links{

    display:flex;

    align-items:center;

    gap:25px;
}

.footer-bottom-links a{

    color:#94a3b8;

    font-size:14px;

    transition:0.3s;
}

.footer-bottom-links a:hover{

    color:white;
}

/*
|--------------------------------------------------------------------------
| RESPONSIVE
|--------------------------------------------------------------------------
*/

@media(max-width:1100px){

    .footer-top{

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

@media(max-width:768px){

    .footer{

        padding:
        70px 0 25px;
    }

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;
    }

    .footer-bottom{

        flex-direction:column;

        align-items:flex-start;
    }

    .footer-bottom-links{

        flex-wrap:wrap;

        gap:14px;
    }

    .footer-brand h2{

        font-size:28px;
    }
}
.small-hero{

    padding:40px 0 20px;
    min-height:auto;
}

.hero-content h1{

    font-size:32px;
    margin-bottom:10px;
}

.hero-content p{

    font-size:14px;
    line-height:1.6;
    margin-bottom:0;
}

.hero-badge{

    margin-bottom:12px;
    padding:6px 14px;
}

.movies-section{

    padding-top:25px;
}
