/* =========================================
   FLOP CORN 🍿
   MAIN WEBSITE DESIGN
========================================= */


/* ---------- GLOBAL SETTINGS ---------- */

:root {
    --yellow: #ffd21c;
    --yellow-light: #ffe66b;
    --yellow-dark: #dcae00;

    --red: #ff3b30;

    --black: #070707;
    --dark: #0d0d0d;
    --card: #151515;
    --card-light: #1c1c1c;

    --white: #ffffff;
    --grey: #a5a5a5;
    --light-grey: #d8d8d8;

    --border: rgba(255, 255, 255, 0.09);

    --navbar-height: 82px;

    --transition:
        0.3s ease;
}


* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;

    scroll-padding-top:
        var(--navbar-height);
}


body {
    min-height: 100vh;

    overflow-x: hidden;

    color:
        var(--white);

    background:
        var(--black);

    font-family:
        "DM Sans",
        sans-serif;
}


body::-webkit-scrollbar {
    width: 9px;
}


body::-webkit-scrollbar-track {
    background:
        #080808;
}


body::-webkit-scrollbar-thumb {
    border-radius:
        20px;

    background:
        var(--yellow);
}


button,
input {
    font: inherit;
}


button,
a {
    -webkit-tap-highlight-color:
        transparent;
}


button {
    color:
        inherit;

    border:
        none;

    cursor:
        pointer;
}


a {
    color:
        inherit;

    text-decoration:
        none;
}


img {
    display:
        block;

    max-width:
        100%;
}



/* ---------- BACKGROUND GLOWS ---------- */

.background-effects {
    position:
        fixed;

    inset:
        0;

    z-index:
        -5;

    overflow:
        hidden;

    pointer-events:
        none;
}


.yellow-glow {
    position:
        absolute;

    top:
        200px;

    left:
        -250px;

    width:
        550px;

    height:
        550px;

    border-radius:
        50%;

    opacity:
        0.12;

    filter:
        blur(100px);

    background:
        var(--yellow);
}


.red-glow {
    position:
        absolute;

    right:
        -250px;

    bottom:
        300px;

    width:
        500px;

    height:
        500px;

    border-radius:
        50%;

    opacity:
        0.08;

    filter:
        blur(120px);

    background:
        var(--red);
}



/* =========================================
   NAVIGATION BAR
========================================= */

.navbar {
    position:
        fixed;

    top:
        0;

    left:
        0;

    z-index:
        1000;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    width:
        100%;

    height:
        var(--navbar-height);

    padding:
        0 6%;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    background:
        rgba(7, 7, 7, 0.78);

    backdrop-filter:
        blur(22px);

    -webkit-backdrop-filter:
        blur(22px);
}


.logo {
    display:
        flex;

    align-items:
        center;

    gap:
        11px;
}


.logo-icon {
    display:
        grid;

    place-items:
        center;

    width:
        46px;

    height:
        46px;

    border:
        1px solid
        rgba(255, 210, 28, 0.3);

    border-radius:
        15px;

    font-size:
        25px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 210, 28, 0.2),
            rgba(255, 210, 28, 0.04)
        );

    box-shadow:
        0 0 25px
        rgba(255, 210, 28, 0.12);

    transition:
        var(--transition);
}


.logo:hover
.logo-icon {
    transform:
        rotate(-8deg)
        scale(1.08);
}


.logo-text {
    font-family:
        "Outfit",
        sans-serif;

    font-size:
        23px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


.logo-text span {
    color:
        var(--yellow);
}


.nav-links {
    display:
        flex;

    align-items:
        center;

    gap:
        7px;
}


.nav-links a {
    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    padding:
        11px 15px;

    border-radius:
        12px;

    color:
        #bdbdbd;

    font-size:
        14px;

    font-weight:
        600;

    transition:
        var(--transition);
}


.nav-links a:hover {
    color:
        var(--white);

    background:
        rgba(255, 255, 255, 0.07);
}


.nav-links a.active {
    color:
        var(--yellow);

    background:
        rgba(255, 210, 28, 0.1);
}


.navbar-right {
    display:
        flex;

    align-items:
        center;

    gap:
        11px;
}


.search-button {
    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

    border:
        1px solid
        var(--border);

    border-radius:
        13px;

    background:
        rgba(255, 255, 255, 0.05);

    transition:
        var(--transition);
}


.search-button:hover {
    color:
        var(--yellow);

    border-color:
        rgba(255, 210, 28, 0.35);

    background:
        rgba(255, 210, 28, 0.1);

    transform:
        translateY(-2px);
}


.login-button {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    min-height:
        44px;

    padding:
        0 18px;

    border-radius:
        13px;

    color:
        #101010;

    font-weight:
        800;

    background:
        var(--yellow);

    box-shadow:
        0 8px 25px
        rgba(255, 210, 28, 0.18);

    transition:
        var(--transition);
}


.login-button:hover {
    background:
        var(--yellow-light);

    transform:
        translateY(-2px);

    box-shadow:
        0 12px 32px
        rgba(255, 210, 28, 0.3);
}


.mobile-menu-button {
    display:
        none;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

    border:
        1px solid
        var(--border);

    border-radius:
        13px;

    background:
        rgba(255, 255, 255, 0.05);
}



/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    position:
        fixed;

    top:
        calc(
            var(--navbar-height)
            + 10px
        );

    right:
        4%;

    z-index:
        999;

    display:
        none;

    flex-direction:
        column;

    width:
        230px;

    padding:
        12px;

    border:
        1px solid
        var(--border);

    border-radius:
        18px;

    background:
        rgba(17, 17, 17, 0.96);

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.6);

    backdrop-filter:
        blur(20px);
}


.mobile-menu.show {
    display:
        flex;

    animation:
        menuAnimation
        0.25s ease;
}


.mobile-menu a {
    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    padding:
        14px;

    border-radius:
        12px;

    color:
        var(--light-grey);

    font-weight:
        600;
}


.mobile-menu a:hover {
    color:
        var(--yellow);

    background:
        rgba(255, 210, 28, 0.09);
}


@keyframes menuAnimation {

    from {
        opacity:
            0;

        transform:
            translateY(-10px)
            scale(0.96);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0)
            scale(1);
    }

}



/* =========================================
   HERO SECTION
========================================= */

.hero {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    min-height:
        100vh;

    padding:
        calc(
            var(--navbar-height)
            + 60px
        )
        7%
        80px;

    overflow:
        hidden;
}


.hero-backdrop {
    position:
        absolute;

    inset:
        0;

    z-index:
        -4;

    background:

        radial-gradient(
            circle at 78% 45%,
            rgba(255, 210, 28, 0.18),
            transparent 22%
        ),

        linear-gradient(
            90deg,
            #070707 10%,
            rgba(7, 7, 7, 0.9) 45%,
            rgba(7, 7, 7, 0.45) 100%
        ),

        url(
            "https://images.unsplash.com/photo-1489599849927-2ee91cede3ba?auto=format&fit=crop&w=1900&q=85"
        );

    background-position:
        center;

    background-size:
        cover;

    transform:
        scale(1.03);

    animation:
        heroZoom
        15s ease-in-out
        infinite alternate;
}


@keyframes heroZoom {

    from {
        transform:
            scale(1.03);
    }

    to {
        transform:
            scale(1.1);
    }

}


.hero-dark-overlay {
    position:
        absolute;

    inset:
        0;

    z-index:
        -3;

    background:

        linear-gradient(
            0deg,
            var(--black) 0%,
            transparent 35%
        ),

        linear-gradient(
            90deg,
            rgba(7, 7, 7, 0.9),
            rgba(7, 7, 7, 0.25)
        );
}


.hero-content {
    width:
        min(
            720px,
            100%
        );

    animation:
        heroContent
        0.8s ease;
}


@keyframes heroContent {

    from {
        opacity:
            0;

        transform:
            translateY(30px);
    }

    to {
        opacity:
            1;

        transform:
            translateY(0);
    }

}


.hero-badge {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        9px 14px;

    margin-bottom:
        23px;

    border:
        1px solid
        rgba(255, 210, 28, 0.25);

    border-radius:
        50px;

    color:
        var(--yellow);

    background:
        rgba(255, 210, 28, 0.08);

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1.3px;
}


.hero-badge i {
    animation:
        firePulse
        1.2s ease
        infinite alternate;
}


@keyframes firePulse {

    to {
        transform:
            scale(1.25);
    }

}


.hero h1 {
    max-width:
        700px;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            58px,
            7vw,
            105px
        );

    font-weight:
        900;

    line-height:
        0.88;

    letter-spacing:
        -5px;
}


.hero h1 span {
    display:
        block;

    color:
        var(--yellow);
}


.hero h1 strong {
    display:
        block;

    color:
        transparent;

    -webkit-text-stroke:
        2px
        rgba(255, 255, 255, 0.8);
}


.hero-description {
    max-width:
        610px;

    margin:
        30px 0;

    color:
        #c6c6c6;

    font-size:
        17px;

    line-height:
        1.8;
}


.hero-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;
}


.primary-button,
.secondary-button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    min-height:
        54px;

    padding:
        0 23px;

    border-radius:
        15px;

    font-weight:
        800;

    transition:
        var(--transition);
}


.primary-button {
    color:
        #101010;

    background:
        var(--yellow);

    box-shadow:
        0 12px 35px
        rgba(255, 210, 28, 0.22);
}


.primary-button:hover {
    background:
        var(--yellow-light);

    transform:
        translateY(-4px);

    box-shadow:
        0 18px 42px
        rgba(255, 210, 28, 0.32);
}


.secondary-button {
    color:
        var(--white);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    background:
        rgba(255, 255, 255, 0.07);

    backdrop-filter:
        blur(12px);
}


.secondary-button:hover {
    border-color:
        rgba(255, 255, 255, 0.35);

    background:
        rgba(255, 255, 255, 0.13);

    transform:
        translateY(-4px);
}


.hero-stats {
    display:
        flex;

    align-items:
        center;

    gap:
        24px;

    margin-top:
        48px;
}


.stat {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}


.stat strong {
    color:
        var(--white);

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        20px;
}


.stat span {
    color:
        var(--grey);

    font-size:
        12px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}


.stat-line {
    width:
        1px;

    height:
        38px;

    background:
        rgba(255, 255, 255, 0.15);
}


.scroll-message {
    position:
        absolute;

    right:
        5%;

    bottom:
        45px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    color:
        #8f8f8f;

    font-size:
        12px;

    letter-spacing:
        1px;

    text-transform:
        uppercase;

    transform:
        rotate(90deg);
}


.scroll-message i {
    color:
        var(--yellow);

    animation:
        scrollArrow
        1s ease
        infinite alternate;
}


@keyframes scrollArrow {

    to {
        transform:
            translateX(8px);
    }

}



/* =========================================
   MOVIE SECTIONS
========================================= */

.movie-section {
    position:
        relative;

    padding:
        85px 6%;
}


.section-heading {
    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        20px;

    margin-bottom:
        34px;
}


.small-heading {
    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-bottom:
        9px;

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        1.5px;
}


.section-heading h2 {
    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            31px,
            4vw,
            47px
        );

    font-weight:
        800;

    letter-spacing:
        -1.5px;
}


.view-all-button {
    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        12px 16px;

    border:
        1px solid
        var(--border);

    border-radius:
        12px;

    color:
        var(--light-grey);

    background:
        rgba(255, 255, 255, 0.04);

    font-size:
        13px;

    font-weight:
        700;

    transition:
        var(--transition);
}


.view-all-button:hover {
    color:
        var(--yellow);

    border-color:
        rgba(255, 210, 28, 0.3);

    transform:
        translateX(4px);
}


.movie-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            5,
            minmax(0, 1fr)
        );

    gap:
        21px;
}



/* ---------- MOVIE CARD ---------- */

.movie-card {
    position:
        relative;

    overflow:
        hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    background:
        var(--card);

    cursor:
        pointer;

    transition:
        0.4s ease;
}


.movie-card:hover {
    border-color:
        rgba(255, 210, 28, 0.35);

    transform:
        translateY(-10px);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.5);
}


.movie-poster {
    position:
        relative;

    overflow:
        hidden;

    aspect-ratio:
        2 / 3;

    background:
        #222;
}


.movie-poster img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        0.55s ease;
}


.movie-card:hover
.movie-poster img {
    transform:
        scale(1.08);
}


.poster-overlay {
    position:
        absolute;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    opacity:
        0;

    background:
        rgba(0, 0, 0, 0.58);

    transition:
        var(--transition);
}


.movie-card:hover
.poster-overlay {
    opacity:
        1;
}


.poster-play-button {
    display:
        grid;

    place-items:
        center;

    width:
        58px;

    height:
        58px;

    border-radius:
        50%;

    color:
        #111;

    background:
        var(--yellow);

    transform:
        scale(0.7);

    transition:
        0.35s ease;
}


.movie-card:hover
.poster-play-button {
    transform:
        scale(1);
}


.movie-rating {
    position:
        absolute;

    top:
        13px;

    right:
        13px;

    display:
        flex;

    align-items:
        center;

    gap:
        5px;

    padding:
        7px 10px;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    border-radius:
        10px;

    color:
        var(--white);

    background:
        rgba(5, 5, 5, 0.8);

    backdrop-filter:
        blur(10px);

    font-size:
        12px;

    font-weight:
        800;
}


.movie-rating i {
    color:
        var(--yellow);
}


.movie-info {
    padding:
        17px;
}


.movie-info h3 {
    overflow:
        hidden;

    margin-bottom:
        8px;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        17px;

    font-weight:
        700;

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}


.movie-details {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        8px;

    color:
        var(--grey);

    font-size:
        12px;
}


.movie-genre {
    overflow:
        hidden;

    color:
        var(--yellow);

    text-overflow:
        ellipsis;

    white-space:
        nowrap;
}



/* ---------- LOADING CARDS ---------- */

.loading-card {
    min-height:
        430px;

    border:
        1px solid
        rgba(255, 255, 255, 0.04);

    border-radius:
        20px;

    background:

        linear-gradient(
            100deg,
            #111 20%,
            #202020 50%,
            #111 80%
        );

    background-size:
        220% 100%;

    animation:
        loadingAnimation
        1.5s linear
        infinite;
}


@keyframes loadingAnimation {

    to {
        background-position:
            -220% 0;
    }

}



/* =========================================
   COMMUNITY REVIEW SECTION
========================================= */

.review-section {
    padding:
        85px 6%
        120px;
}


.review-banner {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        1fr 0.8fr;

    align-items:
        center;

    gap:
        70px;

    overflow:
        hidden;

    padding:
        75px;

    border:
        1px solid
        rgba(255, 210, 28, 0.17);

    border-radius:
        35px;

    background:

        radial-gradient(
            circle at 90% 20%,
            rgba(255, 210, 28, 0.15),
            transparent 35%
        ),

        linear-gradient(
            145deg,
            #16140a,
            #0d0d0d
        );
}


.review-banner::before {
    position:
        absolute;

    top:
        -100px;

    right:
        -80px;

    width:
        300px;

    height:
        300px;

    border-radius:
        50%;

    opacity:
        0.16;

    filter:
        blur(70px);

    background:
        var(--yellow);

    content:
        "";
}


.review-banner-content {
    position:
        relative;

    z-index:
        2;
}


.review-banner h2 {
    max-width:
        620px;

    margin-bottom:
        20px;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            40px,
            5vw,
            67px
        );

    font-weight:
        900;

    line-height:
        1;

    letter-spacing:
        -3px;
}


.review-banner h2 span {
    color:
        var(--yellow);
}


.review-banner-content > p:not(
.small-heading
) {
    max-width:
        570px;

    margin-bottom:
        30px;

    color:
        var(--grey);

    font-size:
        16px;

    line-height:
        1.8;
}


.review-preview {
    position:
        relative;

    z-index:
        2;

    transform:
        rotate(3deg);
}


.review-card {
    padding:
        28px;

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius:
        24px;

    background:
        rgba(255, 255, 255, 0.07);

    box-shadow:
        0 30px 80px
        rgba(0, 0, 0, 0.45);

    backdrop-filter:
        blur(20px);

    transition:
        0.4s ease;
}


.review-card:hover {
    transform:
        rotate(-3deg)
        scale(1.03);
}


.review-user {
    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    margin-bottom:
        20px;
}


.profile-placeholder {
    display:
        grid;

    place-items:
        center;

    width:
        48px;

    height:
        48px;

    border-radius:
        50%;

    color:
        #111;

    background:
        var(--yellow);
}


.review-user div:last-child {
    display:
        flex;

    flex-direction:
        column;

    gap:
        4px;
}


.review-user span {
    color:
        var(--grey);

    font-size:
        12px;
}


.review-stars {
    display:
        flex;

    gap:
        5px;

    margin-bottom:
        16px;

    color:
        var(--yellow);
}


.review-card > p {
    color:
        #dfdfdf;

    font-size:
        15px;

    line-height:
        1.75;
}


.review-actions {
    display:
        flex;

    gap:
        24px;

    margin-top:
        22px;

    padding-top:
        17px;

    border-top:
        1px solid
        var(--border);

    color:
        var(--grey);

    font-size:
        13px;
}


.review-actions span {
    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    cursor:
        pointer;

    transition:
        var(--transition);
}


.review-actions span:hover {
    color:
        var(--yellow);
}



/* =========================================
   SEARCH OVERLAY
========================================= */

.search-overlay {
    position:
        fixed;

    inset:
        0;

    z-index:
        2000;

    display:
        flex;

    justify-content:
        center;

    overflow-y:
        auto;

    padding:
        100px 6%;

    visibility:
        hidden;

    opacity:
        0;

    background:
        rgba(4, 4, 4, 0.97);

    backdrop-filter:
        blur(25px);

    transition:
        0.35s ease;
}


.search-overlay.show {
    visibility:
        visible;

    opacity:
        1;
}


.search-container {
    position:
        relative;

    width:
        min(
            1000px,
            100%
        );
}


.close-search {
    position:
        absolute;

    top:
        -55px;

    right:
        0;

    display:
        grid;

    place-items:
        center;

    width:
        44px;

    height:
        44px;

    border:
        1px solid
        var(--border);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.06);

    font-size:
        19px;

    transition:
        var(--transition);
}


.close-search:hover {
    color:
        #111;

    background:
        var(--yellow);

    transform:
        rotate(90deg);
}


.search-heading {
    margin-bottom:
        25px;

    text-align:
        center;
}


.search-heading p {
    margin-bottom:
        8px;

    color:
        var(--yellow);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        1.5px;
}


.search-heading h2 {
    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            37px,
            6vw,
            65px
        );
}


.large-search-box {
    display:
        flex;

    align-items:
        center;

    gap:
        15px;

    padding:
        0 23px;

    border:
        1px solid
        rgba(255, 210, 28, 0.22);

    border-radius:
        18px;

    background:
        #111;
}


.large-search-box i {
    color:
        var(--yellow);

    font-size:
        19px;
}


.large-search-box input {
    width:
        100%;

    height:
        68px;

    color:
        var(--white);

    border:
        none;

    outline:
        none;

    background:
        transparent;

    font-size:
        17px;
}


.large-search-box input::placeholder {
    color:
        #777;
}


.search-results {
    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap:
        20px;

    margin-top:
        35px;
}


.search-message {
    grid-column:
        1 / -1;

    padding:
        50px;

    color:
        var(--grey);

    text-align:
        center;
}



/* =========================================
   FOOTER
========================================= */

footer {
    padding:
        70px 6%
        30px;

    border-top:
        1px solid
        var(--border);

    background:
        #090909;

    text-align:
        center;
}


.footer-logo {
    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        10px;

    margin-bottom:
        15px;

    font-size:
        27px;
}


.footer-logo strong {
    font-family:
        "Outfit",
        sans-serif;

    letter-spacing:
        1px;
}


.footer-logo span {
    color:
        var(--yellow);
}


footer > p {
    color:
        var(--grey);

    font-size:
        14px;
}


.footer-links {
    display:
        flex;

    flex-wrap:
        wrap;

    justify-content:
        center;

    gap:
        28px;

    margin:
        30px 0;
}


.footer-links a {
    color:
        var(--light-grey);

    font-size:
        13px;

    transition:
        var(--transition);
}


.footer-links a:hover {
    color:
        var(--yellow);
}


.footer-bottom {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding-top:
        25px;

    border-top:
        1px solid
        var(--border);

    color:
        #666;

    font-size:
        11px;
}



/* =========================================
   RESPONSIVE DESIGN
========================================= */

@media (
    max-width: 1150px
) {

    .nav-links {
        display:
            none;
    }


    .mobile-menu-button {
        display:
            grid;
    }


    .movie-grid {
        grid-template-columns:
            repeat(
                4,
                minmax(0, 1fr)
            );
    }


    .review-banner {
        gap:
            45px;

        padding:
            60px 45px;
    }

}



@media (
    max-width: 900px
) {

    .movie-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(0, 1fr)
            );
    }


    .review-banner {
        grid-template-columns:
            1fr;

        gap:
            50px;
    }


    .review-preview {
        max-width:
            550px;
    }


    .search-results {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

}



@media (
    max-width: 680px
) {

    :root {
        --navbar-height:
            70px;
    }


    .navbar {
        padding:
            0 4%;
    }


    .logo-icon {
        width:
            40px;

        height:
            40px;

        border-radius:
            12px;

        font-size:
            21px;
    }


    .logo-text {
        font-size:
            18px;
    }


    .login-button {
        width:
            43px;

        min-height:
            43px;

        padding:
            0;
    }


    .login-button span {
        display:
            none;
    }


    .search-button,
    .mobile-menu-button {
        width:
            41px;

        height:
            41px;
    }


    .hero {
        min-height:
            850px;

        padding:
            130px 5%
            90px;
    }


    .hero h1 {
        font-size:
            clamp(
                55px,
                18vw,
                82px
            );

        letter-spacing:
            -4px;
    }


    .hero-description {
        font-size:
            15px;
    }


    .hero-buttons {
        flex-direction:
            column;
    }


    .primary-button,
    .secondary-button {
        width:
            100%;
    }


    .hero-stats {
        gap:
            15px;
    }


    .scroll-message {
        display:
            none;
    }


    .movie-section {
        padding:
            65px 4%;
    }


    .section-heading {
        align-items:
            center;
    }


    .view-all-button {
        padding:
            10px;

        font-size:
            0;
    }


    .view-all-button i {
        font-size:
            14px;
    }


    .movie-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );

        gap:
            13px;
    }


    .movie-info {
        padding:
            13px;
    }


    .movie-info h3 {
        font-size:
            14px;
    }


    .loading-card {
        min-height:
            330px;
    }


    .review-section {
        padding:
            60px 4%
            80px;
    }


    .review-banner {
        padding:
            45px 23px;

        border-radius:
            25px;
    }


    .review-banner h2 {
        letter-spacing:
            -2px;
    }


    .review-preview {
        transform:
            rotate(0);
    }


    .review-card {
        padding:
            21px;
    }


    .search-overlay {
        padding:
            100px 4%
            50px;
    }


    .search-results {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            13px;
    }


    .footer-bottom {
        flex-direction:
            column;
    }

}



@media (
    max-width: 400px
) {

    .logo-text {
        display:
            none;
    }


    .hero-stats {
        justify-content:
            space-between;

        width:
            100%;
    }


    .stat-line {
        display:
            none;
    }


    .movie-grid {
        gap:
            10px;
    }


    .movie-info h3 {
        font-size:
            13px;
    }

}
/* ===========================
   REVIEW POPUP
=========================== */

.review-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.review-box{
    width: 450px;
    max-width: 90%;
    background: #111;
    border: 2px solid #f5c518;
    border-radius: 15px;
    padding: 25px;
    color: white;
}

.review-box h2{
    margin-bottom: 20px;
    color: #f5c518;
}

.review-box label{
    display:block;
    margin-top:15px;
    margin-bottom:8px;
    font-weight:600;
}

.review-box input,
.review-box textarea{
    width:100%;
    padding:12px;
    border:none;
    border-radius:10px;
    background:#222;
    color:white;
    font-size:15px;
    box-sizing:border-box;
}

.review-box textarea{
    resize:none;
}

.review-buttons{
    display:flex;
    justify-content:flex-end;
    gap:10px;
    margin-top:20px;
}

.review-buttons button{
    padding:10px 20px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}

#cancelReview{
    background:#444;
    color:white;
}

#submitReview{
    background:#f5c518;
    color:black;
}
/* ===== FLOP CORN METER ===== */

.flopcorn-meter {
    width: 90%;
    max-width: 650px;
    margin: 30px auto;
    padding: 25px;
    text-align: center;
    background: linear-gradient(145deg, #171717, #252525);
    border: 2px solid #ffcc00;
    border-radius: 18px;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.25);
}

.flopcorn-meter h3 {
    color: #ffcc00;
    font-size: 25px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.meter-track {
    width: 100%;
    height: 20px;
    background: #444;
    border-radius: 20px;
    overflow: hidden;
}

.meter-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #ff3838,
        #ffcc00,
        #32cd32
    );
    border-radius: 20px;
    transition: width 1s ease;
}

.meter-score {
    margin-top: 15px;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

.meter-verdict {
    margin-top: 10px;
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
}

.meter-info {
    margin-top: 8px;
    color: #aaa;
    font-size: 14px;
}

/* =================================
   FIX PROFILE DROPDOWN
================================= */

.profile-menu {
    position: absolute;
    top: 78px;
    right: 5%;

    display: none;

    width: 280px;
    padding: 24px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;

    background: #151515;

    box-shadow:
        0 20px 60px
        rgba(0, 0, 0, 0.7);

    text-align: center;

    z-index: 9999;
}

.profile-menu.show {
    display: block;
}

.profile-menu-photo {
    width: 75px;
    height: 75px;

    margin-bottom: 12px;

    border: 3px solid #ffd21c;
    border-radius: 50%;

    object-fit: cover;
}

.profile-menu h3 {
    margin-bottom: 5px;

    color: white;

    font-size: 20px;
}

.profile-menu p {
    margin-bottom: 20px;

    color: #aaaaaa;

    font-size: 13px;

    overflow-wrap: anywhere;
}

.profile-menu button {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    margin-top: 10px;
    padding: 13px;

    border: none;
    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;
}

#myProfileButton {
    color: #111111;
    background: #ffd21c;
}

#profileSignOutButton {
    color: white;
    background: #292929;
}

#profileSignOutButton:hover {
    background: #e53935;
}
/* FIX FULL PROFILE POPUP */

.full-profile-overlay {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    padding: 20px;

    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);

    z-index: 99999;
}

.full-profile-overlay.show {
    display: flex;
}

/* =================================
   FULL PROFILE POPUP DESIGN 🍿
================================= */

.full-profile-card {
    position: relative;

    width: 100%;
    max-width: 430px;

    padding: 38px 32px 32px;

    border: 1px solid rgba(255, 210, 28, 0.25);
    border-radius: 26px;

    color: white;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #0d0d0d
        );

    box-shadow:
        0 30px 90px
        rgba(0, 0, 0, 0.8);

    text-align: center;

    animation: profilePopup 0.3s ease;
}

@keyframes profilePopup {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(0.94);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


/* CLOSE BUTTON */

.close-profile-button {
    position: absolute;

    top: 16px;
    right: 16px;

    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    border: 1px solid
        rgba(255, 255, 255, 0.12);

    border-radius: 50%;

    color: white;
    background: #292929;

    font-size: 24px;

    transition: 0.25s;
}

.close-profile-button:hover {
    color: #111111;
    background: #ffd21c;

    transform: rotate(90deg);
}


/* PROFILE PHOTO */

.full-profile-photo {
    width: 105px;
    height: 105px;

    margin-bottom: 17px;

    border: 4px solid #ffd21c;
    border-radius: 50%;

    object-fit: cover;

    box-shadow:
        0 0 35px
        rgba(255, 210, 28, 0.25);
}


/* USER NAME */

.full-profile-card h2 {
    margin-bottom: 7px;

    color: white;

    font-size: 27px;
    font-weight: 900;
}


/* EMAIL */

.full-profile-card > p {
    color: #aaaaaa;

    font-size: 14px;

    overflow-wrap: anywhere;
}


/* DIVIDER */

.profile-divider {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background:
        rgba(255, 255, 255, 0.1);
}


/* PROFILE INFORMATION */

.profile-details {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}

.profile-details div {
    padding: 18px 10px;

    border: 1px solid
        rgba(255, 255, 255, 0.08);

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.04);
}

.profile-details strong {
    display: block;

    margin-bottom: 7px;

    color: #ffd21c;

    font-size: 15px;
}

.profile-details span {
    color: #aaaaaa;

    font-size: 12px;
}


/* MEMBER MESSAGE */

.full-profile-card
.profile-member-text {

    margin-top: 22px;

    padding: 13px;

    border: 1px solid
        rgba(255, 210, 28, 0.18);

    border-radius: 12px;

    color: #ffd21c;

    background:
        rgba(255, 210, 28, 0.07);

    font-size: 13px;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 500px) {

    .full-profile-card {
        padding:
            34px 20px 25px;
    }

    .profile-details {
        grid-template-columns: 1fr;
    }

}

/* FIX FOOTER LOGO SIZE */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .small-flopcorn-logo {
    width: 45px;
    height: 45px;

    object-fit: cover;

    border-radius: 10px;

    flex-shrink: 0;
}

.footer-logo strong {
    font-size: 22px;
}

.footer-logo strong span {
    color: #ffd21c;
}

/* =================================
   MY WATCHLIST ❤️
================================= */

.watchlist-heading {
    width: 100%;
    margin-top: 5px;
    text-align: left;
}

.watchlist-heading h3 {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
}

.watchlist-heading h3 i {
    color: #ffd21c;
    margin-right: 7px;
}

.watchlist-heading p {
    margin: 5px 0 15px;
    color: #9b9b9b;
    font-size: 14px;
}

.profile-watchlist {
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-right: 4px;
}

.watchlist-movie-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px;
    background: #202020;
    border: 1px solid #333333;
    border-radius: 13px;
    cursor: pointer;
    transition: 0.25s;
}

.watchlist-movie-card:hover {
    border-color: #ffd21c;
    transform: translateY(-2px);
}

.watchlist-movie-card img {
    width: 52px;
    height: 76px;
    object-fit: cover;
    border-radius: 8px;
}

.watchlist-movie-card div {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    text-align: left;
}

.watchlist-movie-card strong {
    color: white;
    font-size: 14px;
    line-height: 1.25;
}

.watchlist-movie-card span {
    color: #ffd21c;
    font-size: 13px;
}

.watchlist-message {
    grid-column: 1 / -1;
    color: #aaaaaa;
    text-align: center;
    padding: 20px 10px;
    line-height: 1.7;
}

.profile-watchlist::-webkit-scrollbar {
    width: 5px;
}

.profile-watchlist::-webkit-scrollbar-thumb {
    background: #ffd21c;
    border-radius: 10px;
}

@media (max-width: 600px) {

    .profile-watchlist {
        grid-template-columns: 1fr;
    }

}

/* FIX PROFILE POPUP SCROLL */

.full-profile-overlay {
    overflow-y: auto;
    padding: 30px 15px;
}

.full-profile-card {
    max-height: 90vh;
    overflow-y: auto;
}

.full-profile-card::-webkit-scrollbar {
    width: 6px;
}

.full-profile-card::-webkit-scrollbar-thumb {
    background: #ffd21c;
    border-radius: 10px;
}

/* =========================================
   BROWSE MOVIES BY LANGUAGE
========================================= */

.language-section {
    padding: 70px 6%;
    background:
        linear-gradient(
            135deg,
            rgba(255, 204, 0, 0.08),
            rgba(0, 0, 0, 0.95)
        );
}

.language-heading {
    text-align: center;
    margin-bottom: 35px;
}

.language-heading h2 {
    margin-top: 10px;
    font-family: "Outfit", sans-serif;
    font-size: 42px;
    color: white;
}

.language-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.language-button {
    padding: 16px 27px;
    border: 1px solid rgba(255, 204, 0, 0.35);
    border-radius: 50px;

    background: rgba(20, 20, 20, 0.9);

    color: white;

    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.language-button:hover {
    color: black;

    background: #ffd000;

    border-color: #ffd000;

    transform: translateY(-5px);

    box-shadow:
        0 12px 30px
        rgba(255, 208, 0, 0.25);
}


/* MOBILE DESIGN */

@media (max-width: 768px) {

    .language-section {
        padding: 50px 20px;
    }

    .language-heading h2 {
        font-size: 31px;
    }

    .language-buttons {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 12px;
    }

    .language-button {
        width: 100%;

        padding: 14px 10px;

        font-size: 14px;
    }

}

/* FIX LANGUAGE MOVIES ON MOBILE */

.language-results {
    width: 100%;
    margin-top: 40px;
}

#selectedLanguageTitle {
    width: 100%;
    margin-bottom: 25px;
    color: white;
    text-align: left;
}

#languageMovies {
    width: 100%;
}


@media (max-width: 768px) {

    .language-results {
        display: block;
        width: 100%;
    }

    #selectedLanguageTitle {
        display: block;
        width: 100%;

        margin: 30px 0 20px;

        font-size: 25px;
        text-align: center;

        color: white;
    }

    #languageMovies {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        width: 100%;

        gap: 14px;
    }

}
/* =========================================
   FLOP CORN USERNAME POPUP 🍿
========================================= */

.username-overlay {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.88);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    backdrop-filter: blur(10px);
}


/* SHOW USERNAME POPUP */

.username-overlay.show {
    display: flex;
}


/* USERNAME CARD */

.username-card {
    width: 100%;
    max-width: 430px;

    padding: 38px 30px;

    background:
        linear-gradient(
            145deg,
            #1b1b1b,
            #0d0d0d
        );

    border: 1px solid
        rgba(255, 193, 7, 0.35);

    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.7);

    animation:
        usernamePopup 0.35s ease;
}


/* POPUP ANIMATION */

@keyframes usernamePopup {

    from {
        opacity: 0;

        transform:
            translateY(25px)
            scale(0.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* POPCORN ICON */

.username-icon {
    width: 75px;
    height: 75px;

    margin:
        0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 193, 7, 0.12);

    border:
        1px solid
        rgba(255, 193, 7, 0.35);

    border-radius: 50%;

    font-size: 38px;
}


/* HEADING */

.username-card h2 {
    margin-bottom: 12px;

    color: #ffffff;

    font-family:
        "Outfit",
        sans-serif;

    font-size: 27px;
}


/* DESCRIPTION */

.username-card > p {
    margin-bottom: 24px;

    color: #aaaaaa;

    font-size: 14px;

    line-height: 1.6;
}


/* USERNAME INPUT */

#usernameInput {
    width: 100%;

    padding: 15px 17px;

    color: #ffffff;

    background: #080808;

    border:
        1px solid
        #333333;

    border-radius: 12px;

    outline: none;

    font-family:
        "DM Sans",
        sans-serif;

    font-size: 16px;

    transition: 0.25s;
}


#usernameInput:focus {
    border-color:
        #ffc107;

    box-shadow:
        0 0 0 3px
        rgba(255, 193, 7, 0.12);
}


/* MESSAGE */

.username-card
.username-message {

    min-height: 22px;

    margin:
        10px 0;

    color:
        #ff5252;

    font-size:
        13px;
}


/* CREATE USERNAME BUTTON */

#saveUsernameButton {
    width: 100%;

    padding: 15px;

    color: #111111;

    background:
        linear-gradient(
            135deg,
            #ffd54f,
            #ffb300
        );

    border: none;

    border-radius: 12px;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.25s;
}


#saveUsernameButton:hover {
    transform:
        translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(255, 193, 7, 0.22);
}


/* MOBILE */

@media (
    max-width: 500px
) {

    .username-card {
        padding:
            32px 21px;

        border-radius:
            20px;
    }


    .username-card h2 {
        font-size:
            23px;
    }

}
/* =========================================
   CHANGE USERNAME BUTTON ✏️
========================================= */

.change-username-button {
    margin-top: 14px;

    padding: 11px 18px;

    color: #ffc107;

    background:
        rgba(255, 193, 7, 0.1);

    border:
        1px solid
        rgba(255, 193, 7, 0.35);

    border-radius: 10px;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.25s;
}


.change-username-button:hover {

    color: #111111;

    background: #ffc107;

    transform:
        translateY(-2px);

}
/* PROFESSIONAL DELETE REVIEW BUTTON 🗑️ */

.delete-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    background: rgba(255, 59, 59, 0.08);
    color: #ff5c5c;

    border: 1px solid rgba(255, 82, 82, 0.45);
    border-radius: 9px;

    padding: 9px 14px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.delete-review-button:hover {
    background: rgba(255, 59, 59, 0.18);
    border-color: #ff5252;

    transform: translateY(-1px);
}

.delete-review-button:active {
    transform: scale(0.97);
}
/* =====================================
   FINAL REVIEW DESIGN FIX 🍿
===================================== */

#publicReviews {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.public-review-card {
    display: block !important;

    width: 100% !important;
    box-sizing: border-box !important;

    padding: 22px !important;

    background: linear-gradient(
        145deg,
        #181818,
        #101010
    ) !important;

    border: 1px solid #303030 !important;
    border-radius: 18px !important;

    color: white !important;
}

.public-review-card strong {
    display: block !important;

    margin-bottom: 10px !important;

    color: white !important;

    font-size: 18px !important;
    font-weight: 700 !important;
}

.public-review-rating {
    display: inline-flex !important;

    align-items: center !important;

    margin-bottom: 12px !important;

    padding: 7px 11px !important;

    color: #ffd000 !important;

    background: rgba(
        255,
        204,
        0,
        0.14
    ) !important;

    border-radius: 9px !important;

    font-weight: 700 !important;
}

.public-review-card p {
    display: block !important;

    margin: 5px 0 17px !important;

    color: #eeeeee !important;

    font-size: 16px !important;
    line-height: 1.6 !important;
}


/* PROFESSIONAL DELETE BUTTON */

button.delete-review-button {
    appearance: none !important;

    display: inline-flex !important;

    align-items: center !important;
    justify-content: center !important;

    background: rgba(
        255,
        65,
        65,
        0.1
    ) !important;

    color: #ff5d5d !important;

    border: 1px solid
        rgba(
            255,
            82,
            82,
            0.55
        ) !important;

    border-radius: 9px !important;

    padding: 9px 15px !important;

    font-family: inherit !important;

    font-size: 13px !important;

    font-weight: 700 !important;

    cursor: pointer !important;

    transition: 0.2s ease !important;
}


button.delete-review-button:hover {

    color: white !important;

    background:
        #e53935 !important;

    border-color:
        #e53935 !important;

    transform:
        translateY(-1px);

}


button.delete-review-button:active {

    transform:
        scale(0.97);

}


/* MOBILE */

@media (
    max-width: 600px
) {

    .public-review-card {

        padding:
            17px !important;

        border-radius:
            14px !important;

    }

}
/* =====================================
   REVIEWS SCROLL FIX 🍿
===================================== */

#publicReviews {
    max-height: 600px !important;

    overflow-y: auto !important;
    overflow-x: hidden !important;

    padding-right: 10px !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}


/* CUSTOM REVIEW SCROLLBAR */

#publicReviews::-webkit-scrollbar {
    width: 7px;
}

#publicReviews::-webkit-scrollbar-track {
    background: #171717;

    border-radius: 10px;
}

#publicReviews::-webkit-scrollbar-thumb {
    background: #ffd000;

    border-radius: 10px;
}

#publicReviews::-webkit-scrollbar-thumb:hover {
    background: #ffea70;
}


/* KEEP FLOP CORN METER SHORT */

.flop-meter,
.flop-corn-meter,
.meter-card {
    height: fit-content !important;
    align-self: flex-start !important;
}
/* KEEP FLOP CORN METER ORIGINAL SIZE 🍿 */

.flop-meter,
.flop-corn-meter,
.meter-card,
#flopCornMeter {
    height: fit-content !important;
    min-height: 0 !important;

    align-self: flex-start !important;

    position: sticky !important;
    top: 20px !important;
}
/* FIX FLOP CORN METER STRETCHING 🍿 */

.movie-content,
.movie-details-grid,
.reviews-layout {
    align-items: flex-start !important;
}

/* Left Flop Corn Meter box */

.meter-container,
.flop-meter,
.flop-corn-meter,
.meter-card,
#flopCornMeter {
    height: auto !important;
    min-height: unset !important;
    max-height: 320px !important;

    align-self: flex-start !important;

    flex-grow: 0 !important;
    flex-shrink: 0 !important;
}
/* =====================================
   SMOOTH MOVIE CARD ANIMATION 🍿
===================================== */

.movie-card {
    animation:
        movieCardAppear
        0.6s ease
        both;
}


/* CARDS APPEAR ONE AFTER ANOTHER */

.movie-card:nth-child(1) {
    animation-delay: 0.05s;
}

.movie-card:nth-child(2) {
    animation-delay: 0.10s;
}

.movie-card:nth-child(3) {
    animation-delay: 0.15s;
}

.movie-card:nth-child(4) {
    animation-delay: 0.20s;
}

.movie-card:nth-child(5) {
    animation-delay: 0.25s;
}


/* CARD ENTRANCE */

@keyframes movieCardAppear {

    from {
        opacity: 0;

        transform:
            translateY(30px)
            scale(0.96);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* SMOOTHER HOVER EFFECT */

.movie-card:hover {
    transform:
        translateY(-10px)
        scale(1.02);

    border-color:
        rgba(255, 210, 28, 0.55);

    box-shadow:
        0 25px 55px
        rgba(0, 0, 0, 0.55),

        0 0 25px
        rgba(255, 210, 28, 0.12);
}


/* POSTER SHINE EFFECT */

.movie-poster::after {
    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.7s ease;

    content: "";

    pointer-events: none;
}


.movie-card:hover
.movie-poster::after {

    left: 150%;

}


/* MOBILE TAP EFFECT */

.movie-card:active {

    transform:
        scale(0.97);

}
/* =====================================
   EXTRA PROFESSIONAL ANIMATIONS 🍿
===================================== */


/* ---------- NAVBAR ENTRANCE ---------- */

.navbar {
    animation:
        navbarEntrance
        0.7s ease
        both;
}


@keyframes navbarEntrance {

    from {
        opacity: 0;

        transform:
            translateY(-20px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* ---------- LOGO POPCORN FLOAT ---------- */

.logo-icon {

    animation:
        logoFloat
        3s ease-in-out
        infinite;

}


@keyframes logoFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-4px);

    }

}


/* KEEP LOGO HOVER EFFECT */

.logo:hover
.logo-icon {

    animation-play-state:
        paused;

    transform:
        rotate(-7deg)
        scale(1.08);

}


/* ---------- HERO TITLE ENTRANCE ---------- */

.hero h1 {

    animation:
        titleEntrance
        0.9s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        both;

}


@keyframes titleEntrance {

    from {

        opacity: 0;

        transform:
            translateX(-35px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* ---------- HERO DESCRIPTION ---------- */

.hero-description {

    animation:
        descriptionEntrance
        0.8s ease
        0.25s
        both;

}


@keyframes descriptionEntrance {

    from {

        opacity: 0;

        transform:
            translateY(18px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ---------- HERO BUTTON ENTRANCE ---------- */

.hero-buttons {

    animation:
        buttonEntrance
        0.8s ease
        0.4s
        both;

}


@keyframes buttonEntrance {

    from {

        opacity: 0;

        transform:
            translateY(18px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ---------- BUTTON ICON MOVEMENT ---------- */

.primary-button i,
.secondary-button i {

    transition:
        transform
        0.3s ease;

}


.primary-button:hover i,
.secondary-button:hover i {

    transform:
        translateX(4px);

}


/* ---------- SECTION HEADING ---------- */

.section-heading {

    animation:
        sectionHeadingEntrance
        0.7s ease
        both;

}


@keyframes sectionHeadingEntrance {

    from {

        opacity: 0;

        transform:
            translateY(20px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ---------- YELLOW HEADING ICON ---------- */

.small-heading i {

    animation:
        headingIconPulse
        1.8s ease-in-out
        infinite;

}


@keyframes headingIconPulse {

    0%,
    100% {

        opacity: 0.7;

        transform:
            scale(1);

    }

    50% {

        opacity: 1;

        transform:
            scale(1.15);

    }

}


/* ---------- LANGUAGE BUTTONS ---------- */

.language-button {

    position:
        relative;

    overflow:
        hidden;

}


.language-button::before {

    position:
        absolute;

    top: 0;

    left: -110%;

    width: 70%;

    height: 100%;

    content: "";

    pointer-events:
        none;

    background:
        linear-gradient(
            90deg,

            transparent,

            rgba(
                255,
                255,
                255,
                0.18
            ),

            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left
        0.6s ease;

}


.language-button:hover::before {

    left:
        140%;

}


/* ---------- REVIEW BANNER ---------- */

.review-banner {

    animation:
        reviewBannerEntrance
        0.8s ease
        both;

}


@keyframes reviewBannerEntrance {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* ---------- PUBLIC REVIEW ENTRANCE ---------- */

.public-review-card {

    animation:
        reviewCardEntrance
        0.55s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        )
        both;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


@keyframes reviewCardEntrance {

    from {

        opacity: 0;

        transform:
            translateX(25px);

    }

    to {

        opacity: 1;

        transform:
            translateX(0);

    }

}


/* REVIEW HOVER */

.public-review-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(
            255,
            210,
            28,
            0.32
        ) !important;

    box-shadow:
        0 15px 35px
        rgba(
            0,
            0,
            0,
            0.35
        );

}


/* ---------- FLOP CORN METER GLOW ---------- */

.flopcorn-meter {

    animation:
        meterGlow
        3s ease-in-out
        infinite;

}


@keyframes meterGlow {

    0%,
    100% {

        box-shadow:
            0 0 20px
            rgba(
                255,
                204,
                0,
                0.16
            );

    }

    50% {

        box-shadow:
            0 0 30px
            rgba(
                255,
                204,
                0,
                0.3
            );

    }

}


/* METER FILL ANIMATION */

.meter-fill {

    position:
        relative;

    overflow:
        hidden;

}


.meter-fill::after {

    position:
        absolute;

    inset:
        0;

    content:
        "";

    background:
        linear-gradient(
            90deg,

            transparent,

            rgba(
                255,
                255,
                255,
                0.35
            ),

            transparent
        );

    transform:
        translateX(-100%);

    animation:
        meterLight
        2.5s ease-in-out
        infinite;

}


@keyframes meterLight {

    0% {

        transform:
            translateX(-100%);

    }

    55%,
    100% {

        transform:
            translateX(100%);

    }

}


/* ---------- PROFILE MENU ENTRANCE ---------- */

.profile-menu.show {

    animation:
        profileMenuEntrance
        0.3s ease
        both;

}


@keyframes profileMenuEntrance {

    from {

        opacity: 0;

        transform:
            translateY(-10px)
            scale(0.97);

    }

    to {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);

    }

}


/* ---------- BACKGROUND GLOW MOVEMENT ---------- */

.yellow-glow {

    animation:
        yellowGlowMovement
        10s ease-in-out
        infinite alternate;

}


@keyframes yellowGlowMovement {

    from {

        transform:
            translate(
                0,
                0
            );

    }

    to {

        transform:
            translate(
                80px,
                50px
            );

    }

}


.red-glow {

    animation:
        redGlowMovement
        12s ease-in-out
        infinite alternate;

}


@keyframes redGlowMovement {

    from {

        transform:
            translate(
                0,
                0
            );

    }

    to {

        transform:
            translate(
                -70px,
                -40px
            );

    }

}


/* ---------- MOBILE PERFORMANCE ---------- */

@media (
    max-width: 768px
) {

    .yellow-glow,
    .red-glow {

        animation-duration:
            16s;

    }


    .logo-icon {

        animation:
            none;

    }


    .flopcorn-meter {

        animation-duration:
            4s;

    }

}
/* =====================================
   FLOP CORN LIGHT & DARK MODE 💡
===================================== */


/* ---------- LAMP BUTTON ---------- */

.theme-lamp {
    position: relative;

    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    color: #777777;

    border: 1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.05);

    font-size: 19px;

    cursor: pointer;

    transition:
        color 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


/* LAMP HOVER */

.theme-lamp:hover {

    color:
        #ffd21c;

    border-color:
        rgba(255, 210, 28, 0.4);

    transform:
        translateY(-2px);

}


/* LAMP TURNING ON */

.theme-lamp.lamp-on {

    color:
        #ffd21c;

    border-color:
        rgba(255, 210, 28, 0.65);

    background:
        rgba(255, 210, 28, 0.13);

    box-shadow:

        0 0 12px
        rgba(255, 210, 28, 0.5),

        0 0 30px
        rgba(255, 210, 28, 0.25);

}


/* LIGHT BULB GLOW */

.theme-lamp.lamp-on i {

    animation:
        lampGlow
        1.8s ease-in-out
        infinite alternate;

}


@keyframes lampGlow {

    from {

        filter:
            drop-shadow(
                0 0 3px
                rgba(
                    255,
                    210,
                    28,
                    0.5
                )
            );

    }

    to {

        filter:
            drop-shadow(
                0 0 9px
                rgba(
                    255,
                    210,
                    28,
                    1
                )
            );

    }

}


/* LAMP CLICK ANIMATION */

.theme-lamp:active {

    transform:
        scale(0.88);

}


/* =====================================
   LIGHT MODE ☀️
===================================== */

body.light-mode {

    color:
        #181818;

    background:
        #f5f3ed;

}


/* NAVBAR */

body.light-mode
.navbar {

    border-bottom:
        1px solid
        rgba(0, 0, 0, 0.09);

    background:
        rgba(255, 255, 255, 0.88);

}


/* LOGO */

body.light-mode
.logo-text {

    color:
        #151515;

}


/* NAVIGATION LINKS */

body.light-mode
.nav-links a {

    color:
        #555555;

}


body.light-mode
.nav-links a:hover {

    color:
        #111111;

    background:
        rgba(0, 0, 0, 0.06);

}


body.light-mode
.nav-links a.active {

    color:
        #b88900;

    background:
        rgba(255, 210, 28, 0.18);

}


/* SEARCH AND MENU BUTTONS */

body.light-mode
.search-button,

body.light-mode
.mobile-menu-button {

    color:
        #222222;

    border-color:
        rgba(0, 0, 0, 0.12);

    background:
        rgba(0, 0, 0, 0.04);

}


/* LAMP IN LIGHT MODE */

body.light-mode
.theme-lamp {

    background:
        #fff8d8;

}


/* MOVIE SECTIONS */

body.light-mode
.movie-section {

    background:
        #f5f3ed;

}


/* SECTION TITLES */

body.light-mode
.section-heading h2,

body.light-mode
.language-heading h2 {

    color:
        #181818;

}


/* MOVIE CARDS */

body.light-mode
.movie-card {

    color:
        #181818;

    border-color:
        rgba(0, 0, 0, 0.1);

    background:
        #ffffff;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);

}


body.light-mode
.movie-card:hover {

    border-color:
        rgba(210, 165, 0, 0.55);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.15);

}


/* MOVIE INFORMATION */

body.light-mode
.movie-info h3 {

    color:
        #181818;

}


body.light-mode
.movie-details {

    color:
        #707070;

}


/* LANGUAGE SECTION */

body.light-mode
.language-section {

    background:

        linear-gradient(

            135deg,

            rgba(
                255,
                210,
                28,
                0.18
            ),

            #f5f3ed

        );

}


/* LANGUAGE BUTTONS */

body.light-mode
.language-button {

    color:
        #202020;

    border-color:
        rgba(180, 140, 0, 0.35);

    background:
        #ffffff;

}


/* REVIEWS */

body.light-mode
.review-section {

    background:
        #f5f3ed;

}


body.light-mode
.public-review-card {

    color:
        #181818 !important;

    border-color:
        #dedede !important;

    background:
        #ffffff !important;

    box-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.07);

}


body.light-mode
.public-review-card strong {

    color:
        #181818 !important;

}


body.light-mode
.public-review-card p {

    color:
        #444444 !important;

}


/* REVIEW BANNER */

body.light-mode
.review-banner {

    border-color:
        rgba(190, 145, 0, 0.3);

    background:

        linear-gradient(

            145deg,

            #fff8d8,

            #ffffff

        );

}


body.light-mode
.review-banner h2 {

    color:
        #181818;

}


body.light-mode
.review-banner-content > p:not(
.small-heading
) {

    color:
        #606060;

}


/* FOOTER */

body.light-mode
footer {

    color:
        #181818;

    border-color:
        rgba(0, 0, 0, 0.1);

    background:
        #ebe8df;

}


body.light-mode
.footer-logo strong {

    color:
        #181818;

}


body.light-mode
.footer-links a {

    color:
        #444444;

}


body.light-mode
footer > p {

    color:
        #666666;

}


/* MOBILE MENU */

body.light-mode
.mobile-menu {

    border-color:
        rgba(0, 0, 0, 0.1);

    background:
        rgba(255, 255, 255, 0.97);

}


body.light-mode
.mobile-menu a {

    color:
        #333333;

}


/* SMOOTH THEME CHANGE */

body,

.navbar,

.movie-section,

.movie-card,

.language-section,

.review-section,

.review-banner,

footer {

    transition:

        color 0.45s ease,

        background 0.45s ease,

        border-color 0.45s ease,

        box-shadow 0.45s ease;

}


/* MOBILE LAMP SIZE */

@media (
    max-width: 680px
) {

    .theme-lamp {

        width:
            41px;

        height:
            41px;

        font-size:
            17px;

    }

}
/* =====================================
   LAMP LIGHT SWITCH ANIMATION 💡
===================================== */


/* LIGHT WAVE */

.theme-lamp::after {

    position: fixed;

    top: 50%;

    left: 50%;

    z-index: -1;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    content: "";

    opacity: 0;

    pointer-events: none;

    background:

        radial-gradient(

            circle,

            rgba(
                255,
                220,
                90,
                0.35
            ),

            rgba(
                255,
                220,
                90,
                0.12
            )
            35%,

            transparent
            70%

        );

    transform:

        translate(
            -50%,
            -50%
        )

        scale(0);

}


/* PLAY WHEN LAMP IS ON */

.theme-lamp.lamp-on::after {

    animation:

        lampLightWave

        0.8s

        ease-out;

}


@keyframes lampLightWave {

    0% {

        opacity:
            0.8;

        transform:

            translate(
                -50%,
                -50%
            )

            scale(0);

    }


    60% {

        opacity:
            0.3;

    }


    100% {

        opacity:
            0;

        transform:

            translate(
                -50%,
                -50%
            )

            scale(100);

    }

}


/* BULB SWITCH EFFECT */

.theme-lamp i {

    transition:

        transform
        0.35s ease,

        color
        0.35s ease,

        filter
        0.35s ease;

}


.theme-lamp.lamp-on i {

    transform:

        scale(1.15)

        rotate(
            8deg
        );

}


/* SMALL CLICK BOUNCE */

.theme-lamp:active i {

    transform:

        scale(
            0.75
        );

}
/* =====================================
   FLOP CORN LOGO POP ANIMATION 🍿
===================================== */


/* SMOOTH LOGO MOVEMENT */

.logo-icon {

    position: relative;

    transition:

        transform
        0.35s
        cubic-bezier(
            0.34,
            1.56,
            0.64,
            1
        ),

        box-shadow
        0.35s ease,

        border-color
        0.35s ease;

}


/* POPCORN HOVER EFFECT */

.logo:hover
.logo-icon {

    animation:

        popcornLogoPop

        0.65s

        ease;

    border-color:

        rgba(
            255,
            210,
            28,
            0.7
        );

    box-shadow:

        0 0 18px

        rgba(
            255,
            210,
            28,
            0.3
        ),

        0 0 40px

        rgba(
            255,
            210,
            28,
            0.12
        );

}


/* POP ANIMATION */

@keyframes popcornLogoPop {

    0% {

        transform:

            translateY(0)

            rotate(0deg)

            scale(1);

    }


    30% {

        transform:

            translateY(-8px)

            rotate(-7deg)

            scale(1.12);

    }


    55% {

        transform:

            translateY(1px)

            rotate(4deg)

            scale(0.97);

    }


    75% {

        transform:

            translateY(-3px)

            rotate(-2deg)

            scale(1.04);

    }


    100% {

        transform:

            translateY(0)

            rotate(0deg)

            scale(1);

    }

}


/* YELLOW GLOW BEHIND LOGO */

.logo-icon::after {

    position:

        absolute;

    inset:

        -8px;

    z-index:

        -1;

    border-radius:

        18px;

    content:

        "";

    opacity:

        0;

    background:

        radial-gradient(

            circle,

            rgba(
                255,
                210,
                28,
                0.35
            ),

            transparent

            70%

        );

    transform:

        scale(0.6);

    transition:

        opacity
        0.35s ease,

        transform
        0.35s ease;

}


/* SHOW GLOW */

.logo:hover
.logo-icon::after {

    opacity:

        1;

    transform:

        scale(1.25);

}


/* LOGO TEXT EFFECT */

.logo-text {

    transition:

        letter-spacing
        0.35s ease;

}


.logo:hover
.logo-text {

    letter-spacing:

        1.8px;

}
/* =====================================
   ICONIC MARVEL DIALOGUES ⚡
===================================== */

.marvel-quotes-section {
    position: relative;

    padding:
        35px 6%
        55px;

    overflow: hidden;

    background:
        #070707;
}


/* QUOTE CARD */

.marvel-quote-card {
    position: relative;

    width: 100%;
    max-width: 1100px;

    min-height: 270px;

    margin: auto;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding:
        50px 70px;

    border:
        1px solid
        rgba(
            255,
            210,
            28,
            0.2
        );

    border-radius:
        28px;

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(
                255,
                210,
                28,
                0.12
            ),
            transparent 50%
        ),

        linear-gradient(
            145deg,
            #171717,
            #0b0b0b
        );

    box-shadow:
        0 25px 70px
        rgba(
            0,
            0,
            0,
            0.45
        );

    text-align: center;

    animation:
        marvelCardEntrance
        0.8s ease
        both;
}


/* CARD ENTRANCE */

@keyframes marvelCardEntrance {

    from {

        opacity: 0;

        transform:
            translateY(25px);

    }

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* MOVING BACKGROUND GLOW */

.quote-glow {
    position: absolute;

    top: -150px;

    left: 50%;

    width: 420px;

    height: 420px;

    border-radius:
        50%;

    opacity:
        0.12;

    filter:
        blur(80px);

    background:
        #ffd21c;

    transform:
        translateX(-50%);

    animation:
        quoteGlowMove
        5s ease-in-out
        infinite alternate;

    pointer-events:
        none;
}


@keyframes quoteGlowMove {

    from {

        transform:
            translateX(-65%);

    }

    to {

        transform:
            translateX(-35%);

    }

}


/* SMALL HEADING */

.quote-label {
    position: relative;

    z-index: 2;

    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    margin-bottom:
        20px;

    color:
        #ffd21c;

    font-size:
        11px;

    font-weight:
        900;

    letter-spacing:
        2px;
}


.quote-label i {

    animation:
        marvelBolt
        1.3s ease-in-out
        infinite alternate;

}


@keyframes marvelBolt {

    from {

        opacity:
            0.65;

        transform:
            scale(1);

    }

    to {

        opacity:
            1;

        transform:
            scale(1.25);

    }

}


/* LARGE QUOTATION ICON */

.quote-icon {
    position: absolute;

    top: 25px;

    left: 35px;

    color:
        rgba(
            255,
            210,
            28,
            0.11
        );

    font-size:
        75px;
}


/* DIALOGUE */

#marvelQuote {
    position: relative;

    z-index: 2;

    max-width:
        850px;

    color:
        #ffffff;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            27px,
            4vw,
            46px
        );

    font-weight:
        800;

    line-height:
        1.25;

    letter-spacing:
        -1px;
}


/* CHARACTER NAME */

#marvelCharacter {
    position: relative;

    z-index: 2;

    margin-top:
        18px;

    color:
        #ffd21c;

    font-size:
        14px;

    font-weight:
        800;

    letter-spacing:
        1px;
}


/* QUOTE TIMER LINE */

.quote-progress {
    position: absolute;

    right: 0;

    bottom: 0;

    left: 0;

    height:
        4px;

    overflow:
        hidden;

    background:
        rgba(
            255,
            255,
            255,
            0.05
        );
}


.quote-progress-fill {

    width:
        100%;

    height:
        100%;

    background:

        linear-gradient(
            90deg,
            #d69d00,
            #ffd21c,
            #fff09a
        );

    transform-origin:
        left;

    animation:
        quoteTimer
        5s linear
        infinite;

}


@keyframes quoteTimer {

    from {

        transform:
            scaleX(0);

    }

    to {

        transform:
            scaleX(1);

    }

}


/* LIGHT MODE */

body.light-mode
.marvel-quotes-section {

    background:
        #f5f3ed;

}


body.light-mode
.marvel-quote-card {

    border-color:
        rgba(
            180,
            135,
            0,
            0.25
        );

    background:

        radial-gradient(
            circle at 50% 0%,
            rgba(
                255,
                210,
                28,
                0.18
            ),
            transparent 50%
        ),

        linear-gradient(
            145deg,
            #ffffff,
            #fff9e5
        );

    box-shadow:
        0 20px 50px
        rgba(
            0,
            0,
            0,
            0.1
        );

}


body.light-mode
#marvelQuote {

    color:
        #181818;

}


/* MOBILE */

@media (
    max-width: 680px
) {

    .marvel-quotes-section {

        padding:
            25px 4%
            40px;

    }


    .marvel-quote-card {

        min-height:
            245px;

        padding:
            45px 22px;

        border-radius:
            22px;

    }


    .quote-icon {

        top:
            18px;

        left:
            20px;

        font-size:
            52px;

    }


    #marvelQuote {

        font-size:
            27px;

        line-height:
            1.3;

    }


    #marvelCharacter {

        font-size:
            12px;

    }

}
/* =====================================
   SMALLER MARVEL DIALOGUE BOX ⚡
===================================== */

.marvel-quote-card {

    max-width:
        900px;

    min-height:
        210px;

    padding:
        35px 50px;

}


#marvelQuote {

    max-width:
        720px;

    font-size:
        clamp(
            24px,
            3vw,
            37px
        );

}


.quote-label {

    margin-bottom:
        14px;

}


#marvelCharacter {

    margin-top:
        13px;

}


/* MOBILE */

@media (
    max-width: 680px
) {

    .marvel-quote-card {

        min-height:
            200px;

        padding:
            35px 20px;

    }


    #marvelQuote {

        font-size:
            23px;

    }

}
/* =====================================
   MARVEL DIALOGUE CHANGE ANIMATION ⚡
===================================== */

#marvelQuote,
#marvelCharacter {

    transition:

        opacity
        0.4s ease,

        transform
        0.4s ease;

}


#marvelQuote.quote-changing,
#marvelCharacter.quote-changing {

    opacity:
        0;

    transform:
        translateY(
            10px
        );

}
/* =========================================
   MOVIE RELEASE CALENDAR 📅
========================================= */

.release-calendar-section {
    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 210, 28, 0.08),
            transparent 35%
        );
}


/* CALENDAR BOX */

.calendar-container {
    max-width: 1000px;

    margin:
        0 auto
        45px;

    padding:
        30px;

    border:
        1px solid
        rgba(255, 210, 28, 0.2);

    border-radius:
        25px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #0d0d0d
        );

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.4);
}


/* MONTH HEADER */

.calendar-header {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        28px;
}


.calendar-header h3 {
    color:
        var(--yellow);

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        28px;

    text-align:
        center;
}


.calendar-header button {
    display:
        grid;

    place-items:
        center;

    width:
        45px;

    height:
        45px;

    border:
        1px solid
        rgba(255, 210, 28, 0.25);

    border-radius:
        13px;

    color:
        var(--yellow);

    background:
        rgba(255, 210, 28, 0.08);

    transition:
        0.3s ease;
}


.calendar-header button:hover {
    color:
        #111;

    background:
        var(--yellow);

    transform:
        scale(1.08);
}


/* WEEK NAMES */

.calendar-weekdays {
    display:
        grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:
        10px;

    margin-bottom:
        12px;
}


.calendar-weekdays span {
    color:
        var(--yellow);

    font-size:
        13px;

    font-weight:
        800;

    text-align:
        center;
}


/* CALENDAR DATES */

.calendar-grid {
    display:
        grid;

    grid-template-columns:
        repeat(7, 1fr);

    gap:
        10px;
}


.calendar-day {
    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        85px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    border-radius:
        15px;

    color:
        white;

    background:
        rgba(255, 255, 255, 0.04);

    font-size:
        16px;

    font-weight:
        700;

    cursor:
        pointer;

    transition:
        0.3s ease;
}


.calendar-day:hover {
    color:
        #111;

    border-color:
        var(--yellow);

    background:
        var(--yellow);

    transform:
        translateY(-4px);
}


/* EMPTY CALENDAR BOX */

.calendar-day.empty {
    border:
        none;

    background:
        transparent;

    cursor:
        default;
}


.calendar-day.empty:hover {
    transform:
        none;
}


/* TODAY DATE */

.calendar-day.today {
    color:
        var(--yellow);

    border:
        2px solid
        var(--yellow);

    background:
        rgba(255, 210, 28, 0.1);
}


/* MOVIE RELEASE DOT */

.calendar-day.has-movie::after {
    position:
        absolute;

    bottom:
        10px;

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--yellow);

    content:
        "";
}


.calendar-day.has-movie:hover::after {
    background:
        #111;
}


/* SELECTED DATE */

.calendar-day.selected {
    color:
        #111;

    background:
        var(--yellow);

    box-shadow:
        0 0 25px
        rgba(255, 210, 28, 0.3);
}


/* RELEASE MOVIES */

.calendar-movies {
    margin-top:
        50px;
}


.calendar-movies > h3 {
    margin-bottom:
        28px;

    color:
        var(--yellow);

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        25px;
}


/* MOBILE CALENDAR */

@media (max-width: 680px) {

    .calendar-container {
        padding:
            18px 10px;

        border-radius:
            18px;
    }


    .calendar-header h3 {
        font-size:
            20px;
    }


    .calendar-header button {
        width:
            38px;

        height:
            38px;
    }


    .calendar-weekdays {
        gap:
            4px;
    }


    .calendar-weekdays span {
        font-size:
            10px;
    }


    .calendar-grid {
        gap:
            5px;
    }


    .calendar-day {
        min-height:
            48px;

        border-radius:
            9px;

        font-size:
            12px;
    }


    .calendar-day.has-movie::after {
        bottom:
            5px;

        width:
            5px;

        height:
            5px;
    }


    .calendar-movies > h3 {
        font-size:
            19px;
    }

}
/* =========================================
   RELEASE CALENDAR ANIMATIONS 📅✨
========================================= */


/* CALENDAR ENTER ANIMATION */

.calendar-container {
    animation:
        calendarEntrance
        0.8s ease
        both;
}


@keyframes calendarEntrance {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(0.97);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* MONTH TITLE ANIMATION */

.calendar-header h3 {
    animation:
        monthTitleGlow
        2.5s ease-in-out
        infinite alternate;
}


@keyframes monthTitleGlow {

    from {
        text-shadow:
            0 0 5px
            rgba(255, 210, 28, 0.15);
    }

    to {
        text-shadow:
            0 0 22px
            rgba(255, 210, 28, 0.65);
    }

}


/* CALENDAR DATE ENTRANCE */

.calendar-day {
    opacity: 0;

    animation:
        calendarDateEntrance
        0.45s ease
        forwards;

    animation-delay:
        calc(
            var(--calendar-position)
            *
            0.025s
        );
}


@keyframes calendarDateEntrance {

    from {
        opacity: 0;

        transform:
            translateY(18px)
            scale(0.85);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


/* MOVIE RELEASE DOT PULSE */

.calendar-day.has-movie::after {
    animation:
        releaseDotPulse
        1.2s ease-in-out
        infinite;
}


@keyframes releaseDotPulse {

    0%,
    100% {
        transform:
            scale(1);

        box-shadow:
            0 0 4px
            rgba(255, 210, 28, 0.5);
    }

    50% {
        transform:
            scale(1.6);

        box-shadow:
            0 0 15px
            rgba(255, 210, 28, 1);
    }

}


/* TODAY DATE GLOW */

.calendar-day.today {
    animation:
        calendarDateEntrance
        0.45s ease
        forwards,

        todayCalendarGlow
        1.8s ease-in-out
        infinite alternate;
}


@keyframes todayCalendarGlow {

    from {
        box-shadow:
            0 0 5px
            rgba(255, 210, 28, 0.2);
    }

    to {
        box-shadow:
            0 0 25px
            rgba(255, 210, 28, 0.65);
    }

}


/* SELECTED DATE POP */

.calendar-day.selected {
    animation:
        selectedDatePop
        0.35s ease;
}


@keyframes selectedDatePop {

    0% {
        transform:
            scale(0.85);
    }

    60% {
        transform:
            scale(1.15);
    }

    100% {
        transform:
            scale(1);
    }

}


/* MOVIES BELOW CALENDAR */

.calendar-movies {
    animation:
        calendarMoviesEntrance
        0.65s ease
        both;
}


@keyframes calendarMoviesEntrance {

    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* RESPECT REDUCED-MOTION SETTINGS */

@media (
    prefers-reduced-motion: reduce
) {

    .calendar-container,
    .calendar-day,
    .calendar-day.today,
    .calendar-day.selected,
    .calendar-day.has-movie::after,
    .calendar-header h3,
    .calendar-movies {

        animation:
            none !important;

    }

}
/* =========================================
   PREMIUM FLOP CORN NAVBAR 🍿
========================================= */


/* MAIN NAVBAR */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background:
        rgba(5, 5, 5, 0.88);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255, 210, 28, 0.16);

    box-shadow:
        0 8px 35px
        rgba(0, 0, 0, 0.55);

    transition:
        all 0.35s ease;
}


/* SOFT YELLOW LIGHT BELOW NAVBAR */

.navbar::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -1px;

    width: 55%;
    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 210, 28, 0.7),
            transparent
        );

    box-shadow:
        0 0 15px
        rgba(255, 210, 28, 0.35);

    pointer-events: none;
}


/* FLOP CORN LOGO */

.logo {
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


.logo:hover {
    transform:
        scale(1.04);

    filter:
        drop-shadow(
            0 0 10px
            rgba(255, 210, 28, 0.45)
        );
}


/* NAVIGATION LINKS */

.nav-links a {
    position: relative;

    border-radius: 12px;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s ease;
}


.nav-links a:hover {
    color:
        #ffd21c;

    background:
        rgba(255, 210, 28, 0.08);

    transform:
        translateY(-2px);
}


/* ANIMATED LINE BELOW LINKS */

.nav-links a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 5px;

    width: 0;
    height: 2px;

    transform:
        translateX(-50%);

    border-radius:
        50px;

    background:
        #ffd21c;

    box-shadow:
        0 0 9px
        rgba(255, 210, 28, 0.75);

    transition:
        width 0.3s ease;
}


.nav-links a:hover::after {
    width: 45%;
}


/* ACTIVE NAVIGATION BUTTON */

.nav-links a.active {
    color:
        #ffd21c;

    background:
        linear-gradient(
            135deg,
            rgba(255, 210, 28, 0.18),
            rgba(255, 210, 28, 0.07)
        );

    border:
        1px solid
        rgba(255, 210, 28, 0.18);

    box-shadow:
        inset 0 0 18px
        rgba(255, 210, 28, 0.05);
}


.nav-links a.active::after {
    width:
        45%;
}


/* NAVBAR ICON BUTTONS */

.nav-actions button {
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.nav-actions button:hover {
    transform:
        translateY(-3px)
        scale(1.05);

    border-color:
        rgba(255, 210, 28, 0.55);

    box-shadow:
        0 6px 20px
        rgba(255, 210, 28, 0.13);
}


/* PROFILE BUTTON */

.profile-btn {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.profile-btn:hover {
    transform:
        scale(1.08);

    box-shadow:
        0 0 22px
        rgba(255, 210, 28, 0.5);
}
/* =========================================
   NAVBAR SPACING FIX
========================================= */

.navbar {
    padding-left: 5%;
    padding-right: 5%;
}

.nav-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex: 1;

    margin-left: 25px;
    margin-right: 25px;
}

.nav-links a {
    padding: 12px 10px;

    white-space: nowrap;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;
}

.nav-actions {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}
/* MOBILE HAMBURGER MENU FIX */

@media (max-width: 768px) {

    .navbar {
        padding-left: 14px;
        padding-right: 14px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex !important;

        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        width: 44px;
        height: 44px;

        margin-left: 4px;
    }

    .nav-actions {
        gap: 8px;

        margin-left: auto;
    }

}
/* =========================================
   MOBILE THREE-LINE MENU FIX
========================================= */

@media (max-width: 768px) {

    .mobile-menu-button {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        padding: 0;

        flex-shrink: 0;

        color: white;

        background:
            rgba(255, 255, 255, 0.06);

        border:
            1px solid
            rgba(255, 255, 255, 0.13);

        border-radius: 12px;

        font-size: 20px;

        cursor: pointer;
    }

    .navbar-right {
        display: flex;

        align-items: center;

        gap: 8px;

        margin-left: auto;

        flex-shrink: 0;
    }

}
/* FORCE MOBILE HAMBURGER BUTTON TO SHOW */

@media screen and (max-width: 900px) {

    #mobileMenuButton {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        position: relative !important;

        width: 44px !important;
        min-width: 44px !important;
        height: 44px !important;

        align-items: center !important;
        justify-content: center !important;

        padding: 0 !important;
        margin: 0 !important;

        color: #ffffff !important;

        background:
            rgba(255, 255, 255, 0.07) !important;

        border:
            1px solid
            rgba(255, 255, 255, 0.15) !important;

        border-radius:
            12px !important;

        font-size:
            20px !important;

        flex-shrink:
            0 !important;
    }


    #mobileMenuButton i {
        display: block !important;

        visibility: visible !important;

        opacity: 1 !important;

        color: #ffffff !important;

        font-size: 20px !important;
    }


    .navbar-right {
        display: flex !important;

        align-items: center !important;

        gap: 8px !important;

        flex-shrink: 0 !important;
    }

}
/* SHOW THREE-LINE MENU ON LAPTOP ALSO */

#mobileMenuButton {
    display: flex !important;

    align-items: center;
    justify-content: center;

    width: 44px;
    min-width: 44px;
    height: 44px;

    padding: 0;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    border-radius: 12px;

    font-size: 20px;

    cursor: pointer;

    flex-shrink: 0;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


#mobileMenuButton:hover {
    transform:
        translateY(-2px);

    color:
        #ffd21c;

    border-color:
        rgba(255, 210, 28, 0.55);

    box-shadow:
        0 5px 18px
        rgba(255, 210, 28, 0.15);
} 
/* =========================================
   FLOP CORN — WEBSITE-WIDE ANIMATIONS 🍿✨
========================================= */


/* SMOOTH PAGE */

html {
    scroll-behavior: smooth;
}


/* MAIN SECTIONS ENTER */

section {
    animation:
        sectionCinematicEntry
        0.9s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        )
        both;
}


@keyframes sectionCinematicEntry {

    from {
        opacity: 0;

        transform:
            translateY(45px);

        filter:
            blur(5px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);

        filter:
            blur(0);
    }

}


/* MOVIE CARDS */

.movie-card {
    position: relative;

    overflow: hidden;

    transition:
        transform 0.4s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),

        box-shadow 0.4s ease,

        border-color 0.4s ease;
}


.movie-card:hover {
    transform:
        translateY(-14px)
        scale(1.035);

    border-color:
        rgba(
            255,
            210,
            28,
            0.7
        );

    box-shadow:
        0 20px 45px
        rgba(
            0,
            0,
            0,
            0.75
        ),

        0 0 25px
        rgba(
            255,
            210,
            28,
            0.22
        );
}


/* POSTER ZOOM */

.movie-card img {
    transition:
        transform 0.65s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),

        filter 0.5s ease;
}


.movie-card:hover img {
    transform:
        scale(1.09);

    filter:
        brightness(1.08)
        contrast(1.05);
}


/* MOVIE CARD SHINE */

.movie-card::after {
    content: "";

    position: absolute;

    top: -100%;
    left: -70%;

    width: 45%;
    height: 300%;

    transform:
        rotate(25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                0.2
            ),
            transparent
        );

    transition:
        left 0.7s ease;

    pointer-events: none;
}


.movie-card:hover::after {
    left:
        140%;
}


/* SECTION TITLES */

.section-title,
.section-header h2 {
    animation:
        titleEntrance
        0.8s ease
        both;

    transition:
        transform 0.35s ease,

        text-shadow 0.35s ease;
}


.section-title:hover,
.section-header h2:hover {
    transform:
        translateX(8px);

    text-shadow:
        0 0 20px
        rgba(
            255,
            210,
            28,
            0.55
        );
}


@keyframes titleEntrance {

    from {
        opacity: 0;

        transform:
            translateX(-40px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* BUTTON SHINE */

button,
.btn,
.hero-btn {
    position: relative;

    overflow: hidden;

    transition:
        transform 0.3s ease,

        box-shadow 0.3s ease;
}


button:hover,
.btn:hover,
.hero-btn:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(
            255,
            210,
            28,
            0.2
        );
}


button::after,
.btn::after,
.hero-btn::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    transform:
        skewX(-25deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(
                255,
                255,
                255,
                0.3
            ),
            transparent
        );

    transition:
        left 0.65s ease;

    pointer-events: none;
}


button:hover::after,
.btn:hover::after,
.hero-btn:hover::after {
    left:
        150%;
}


/* NAVBAR ENTER */

.navbar {
    animation:
        navbarDrop
        0.75s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        )
        both;
}


@keyframes navbarDrop {

    from {
        opacity: 0;

        transform:
            translateY(-70px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* LOGO GLOW */

.logo {
    animation:
        logoSoftGlow
        2.2s
        ease-in-out
        infinite alternate;
}


@keyframes logoSoftGlow {

    from {
        filter:
            drop-shadow(
                0 0 2px
                rgba(
                    255,
                    210,
                    28,
                    0.15
                )
            );
    }

    to {
        filter:
            drop-shadow(
                0 0 13px
                rgba(
                    255,
                    210,
                    28,
                    0.55
                )
            );
    }

}


/* MOBILE: KEEP ANIMATIONS SMOOTH */

@media (
    max-width: 768px
) {

    .movie-card:hover {
        transform:
            translateY(-7px)
            scale(1.015);
    }

}


/* ACCESSIBILITY */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;

    }

}
/* =========================================
   KEEP CALENDAR RELEASE YELLOW DOT 🟡
========================================= */

.calendar-day.has-movie::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 10px;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #ffd21c;

    transform:
        translateX(-50%);

    box-shadow:
        0 0 10px
        rgba(255, 210, 28, 0.9);

    animation:
        releaseDotPulse
        1.2s
        ease-in-out
        infinite;

    pointer-events: none;
}


@keyframes releaseDotPulse {

    0%,
    100% {

        transform:
            translateX(-50%)
            scale(1);

        box-shadow:
            0 0 6px
            rgba(255, 210, 28, 0.7);

    }

    50% {

        transform:
            translateX(-50%)
            scale(1.6);

        box-shadow:
            0 0 18px
            rgba(255, 210, 28, 1);

    }

}
/* =========================================
   CALENDAR YELLOW DOT BELOW DATE 🟡
========================================= */

.calendar-day.has-movie::after {
    content: "" !important;

    position: absolute !important;

    top: auto !important;
    left: 50% !important;
    right: auto !important;
    bottom: 9px !important;

    width: 7px !important;
    height: 7px !important;

    border-radius: 50% !important;

    background: #ffd21c !important;

    transform:
        translateX(-50%)
        scale(1);

    box-shadow:
        0 0 9px
        rgba(255, 210, 28, 0.9);

    animation:
        releaseDotBelowPulse
        1.2s
        ease-in-out
        infinite !important;

    pointer-events: none !important;
}


@keyframes releaseDotBelowPulse {

    0%,
    100% {

        transform:
            translateX(-50%)
            scale(1);

        box-shadow:
            0 0 6px
            rgba(255, 210, 28, 0.7);

    }

    50% {

        transform:
            translateX(-50%)
            scale(1.5);

        box-shadow:
            0 0 16px
            rgba(255, 210, 28, 1);

    }

}


/* MOBILE DOT POSITION */

@media (max-width: 680px) {

    .calendar-day.has-movie::after {

        bottom: 5px !important;

        width: 5px !important;
        height: 5px !important;

    }

}



/* FLOATING CINEMA LIGHTS */

.live-background span {
    position: absolute;

    bottom: -80px;

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background:
        rgba(255, 210, 28, 0.7);

    box-shadow:
        0 0 12px
        rgba(255, 210, 28, 0.8),

        0 0 30px
        rgba(255, 210, 28, 0.3);

    animation:
        flopCornParticle
        12s linear
        infinite;
}


/* DIFFERENT PARTICLE POSITIONS */

.live-background span:nth-child(1) {
    left: 5%;

    animation-delay: 0s;
}


.live-background span:nth-child(2) {
    left: 15%;

    width: 6px;
    height: 6px;

    animation-delay: 3s;

    animation-duration: 15s;
}


.live-background span:nth-child(3) {
    left: 25%;

    animation-delay: 6s;
}


.live-background span:nth-child(4) {
    left: 36%;

    width: 7px;
    height: 7px;

    animation-delay: 1s;

    animation-duration: 17s;
}


.live-background span:nth-child(5) {
    left: 47%;

    animation-delay: 8s;
}


.live-background span:nth-child(6) {
    left: 58%;

    width: 6px;
    height: 6px;

    animation-delay: 4s;

    animation-duration: 14s;
}


.live-background span:nth-child(7) {
    left: 68%;

    animation-delay: 10s;
}


.live-background span:nth-child(8) {
    left: 78%;

    width: 8px;
    height: 8px;

    animation-delay: 2s;

    animation-duration: 16s;
}


.live-background span:nth-child(9) {
    left: 88%;

    animation-delay: 7s;
}


.live-background span:nth-child(10) {
    left: 96%;

    width: 6px;
    height: 6px;

    animation-delay: 5s;

    animation-duration: 18s;
}


/* PARTICLE MOVEMENT */

@keyframes flopCornParticle {

    0% {
        opacity: 0;

        transform:
            translateY(0)
            translateX(0)
            scale(0.4);
    }


    15% {
        opacity: 0.8;
    }


    50% {
        transform:
            translateY(-55vh)
            translateX(35px)
            scale(1.2);
    }


    85% {
        opacity: 0.7;
    }


    100% {
        opacity: 0;

        transform:
            translateY(-115vh)
            translateX(-30px)
            scale(0.5);
    }

}


/* KEEP WEBSITE CONTENT ABOVE PARTICLES */

.navbar,
main,
section,
footer {
    position: relative;

    z-index: 1;
}


/* MOBILE PERFORMANCE */

@media (max-width: 768px) {

    .live-background span:nth-child(even) {
        display: none;
    }

}
/* =========================================
   FLOP CORN CURSOR SPOTLIGHT ✨
========================================= */

body::before {
    content: "";

    position: fixed;

    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 28, 0.09),
            rgba(255, 210, 28, 0.025) 35%,
            transparent 70%
        );

    transform:
        translate(-50%, -50%);

    pointer-events: none;

    z-index: 0;

    transition:
        top 0.08s linear,
        left 0.08s linear;
}


/* KEEP WEBSITE CONTENT ABOVE THE LIGHT */

.navbar,
main,
section,
footer {
    position: relative;

    z-index: 1;
}


/* HIDE CURSOR LIGHT ON TOUCH PHONES */

@media (
    hover: none
) {

    body::before {
        display: none;
    }

}
/* =========================================
   LIVE CINEMA LIGHT SWEEP 🎬✨
========================================= */

body {
    position: relative;

    overflow-x: hidden;
}


/* MOVING CINEMA LIGHT */

body::after {
    content: "";

    position: fixed;

    top: -30%;
    left: -45%;

    width: 38vw;
    height: 170vh;

    z-index: 0;

    pointer-events: none;

    opacity: 0.32;

    background:
        linear-gradient(
            105deg,
            transparent 20%,
            rgba(255, 210, 28, 0.025) 38%,
            rgba(255, 210, 28, 0.12) 50%,
            rgba(255, 210, 28, 0.025) 62%,
            transparent 80%
        );

    filter:
        blur(35px);

    transform:
        rotate(-12deg);

    animation:
        cinemaLightSweep
        11s
        ease-in-out
        infinite;
}


/* LIGHT MOVEMENT */

@keyframes cinemaLightSweep {

    0% {

        left: -50%;

        opacity: 0;

    }


    15% {

        opacity: 0.25;

    }


    50% {

        left: 55%;

        opacity: 0.38;

    }


    85% {

        opacity: 0.2;

    }


    100% {

        left: 120%;

        opacity: 0;

    }

}


/* KEEP WEBSITE ABOVE THE LIGHT */

.navbar,
main,
section,
footer,
.mobile-menu {
    position: relative;

    z-index: 1;
}


/* MOBILE VERSION */

@media (max-width: 768px) {

    body::after {

        width: 65vw;

        opacity: 0.22;

        animation-duration:
            14s;

    }

}


/* REDUCE ANIMATION IF DEVICE REQUESTS IT */

@media (
    prefers-reduced-motion: reduce
) {

    body::after {

        animation:
            none;

        display:
            none;

    }

}
/* =========================================
   FLOP CORN EXPLORE PAGE 🇮🇳🍿
========================================= */

.explore-page {
    min-height: 100vh;

    margin: 0;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(255, 210, 28, 0.10),
            transparent 28%
        ),
        #050505;
}


/* EXPLORE NAVBAR */

.explore-navbar {
    position: sticky;

    top: 0;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 16px 6%;

    background:
        rgba(5, 5, 5, 0.88);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255, 210, 28, 0.18);
}


.explore-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    color: white;

    text-decoration: none;
}


.explore-logo img {
    width: 48px;

    height: 48px;

    object-fit: cover;

    border-radius: 50%;

    border:
        2px solid
        #ffd21c;

    box-shadow:
        0 0 18px
        rgba(255, 210, 28, 0.35);
}


.explore-logo h1 {
    margin: 0;

    color: #ffd21c;

    font-size: 1.25rem;

    letter-spacing: 1px;
}


.explore-logo span {
    display: block;

    margin-top: 2px;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 0.68rem;

    letter-spacing: 4px;
}


.back-home-button {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 17px;

    color: #050505;

    background:
        #ffd21c;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.back-home-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 8px 25px
        rgba(255, 210, 28, 0.35);
}


/* EXPLORE HERO */

.explore-hero {
    position: relative;

    min-height: 580px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    padding: 100px 6%;

    text-align: center;
}


.explore-hero::before {
    content: "";

    position: absolute;

    width: 620px;

    height: 620px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 28, 0.17),
            transparent 68%
        );

    animation:
        exploreHeroGlow
        3s ease-in-out
        infinite alternate;
}


@keyframes exploreHeroGlow {

    from {
        transform:
            scale(0.85);

        opacity: 0.5;
    }

    to {
        transform:
            scale(1.15);

        opacity: 1;
    }

}


.explore-hero-content {
    position: relative;

    z-index: 1;

    max-width: 850px;

    animation:
        exploreHeroEntrance
        0.9s ease both;
}


@keyframes exploreHeroEntrance {

    from {
        opacity: 0;

        transform:
            translateY(45px)
            scale(0.94);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


.explore-small-title {
    color: #ffd21c;

    font-size: 0.82rem;

    font-weight: 800;

    letter-spacing: 3px;
}


.explore-hero h2 {
    margin:
        20px 0;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            3rem,
            7vw,
            6.4rem
        );

    line-height: 0.95;
}


.explore-hero h2 span {
    display: block;

    color: #ffd21c;

    text-shadow:
        0 0 35px
        rgba(255, 210, 28, 0.35);
}


.explore-hero-content > p:not(
    .explore-small-title
) {
    max-width: 680px;

    margin:
        0 auto 34px;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 1.05rem;

    line-height: 1.8;
}


.explore-start-button {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    padding:
        15px 24px;

    color: #050505;

    background: #ffd21c;

    border-radius: 14px;

    text-decoration: none;

    font-weight: 800;

    box-shadow:
        0 10px 30px
        rgba(255, 210, 28, 0.22);

    transition:
        transform 0.3s ease;
}


.explore-start-button:hover {
    transform:
        translateY(-4px)
        scale(1.03);
}


/* QUICK CATEGORIES */

.explore-categories {
    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(
            6,
            1fr
        );

    gap: 13px;

    max-width: 1250px;

    margin:
        -45px auto
        80px;

    padding:
        0 5%;
}


.explore-categories a {
    min-height: 115px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 10px;

    color: white;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    border-radius: 18px;

    text-decoration: none;

    font-size: 1.55rem;

    backdrop-filter:
        blur(14px);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.explore-categories a span {
    font-size: 0.82rem;

    font-weight: 700;
}


.explore-categories a:hover {
    transform:
        translateY(-10px);

    border-color:
        rgba(255, 210, 28, 0.7);

    box-shadow:
        0 15px 35px
        rgba(255, 210, 28, 0.13);
}


/* MOVIE SECTIONS */

.explore-movie-section {
    max-width: 1450px;

    margin: auto;

    padding:
        70px 6%;
}


.explore-section-heading {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 30px;
}


.explore-section-heading p {
    margin:
        0 0 7px;

    color: #ffd21c;

    font-size: 0.73rem;

    font-weight: 800;

    letter-spacing: 2px;
}


.explore-section-heading h2 {
    margin: 0;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3.4rem
        );
}


/* EXPLORE MOVIE GRID */

.explore-page .movie-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(
                0,
                1fr
            )
        );

    gap: 23px;
}


/* MOVIE CARD */

.explore-movie-card {
    min-width: 0;

    overflow: hidden;

    cursor: pointer;

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 18px;

    animation:
        exploreMovieEntrance
        0.65s ease
        both;

    animation-delay:
        calc(
            var(--movie-position)
            *
            0.07s
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


@keyframes exploreMovieEntrance {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(0.92);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


.explore-movie-card:hover {
    transform:
        translateY(-13px)
        scale(1.025);

    border-color:
        rgba(255, 210, 28, 0.65);

    box-shadow:
        0 20px 45px
        rgba(0, 0, 0, 0.65),

        0 0 25px
        rgba(255, 210, 28, 0.16);
}


.explore-poster {
    position: relative;

    aspect-ratio:
        2 / 3;

    overflow: hidden;
}


.explore-poster img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.65s ease,
        filter 0.5s ease;
}


.explore-movie-card:hover img {
    transform:
        scale(1.1);

    filter:
        brightness(0.72);
}


/* RATING */

.explore-rating {
    position: absolute;

    top: 12px;

    right: 12px;

    padding:
        7px 10px;

    color: #ffd21c;

    background:
        rgba(0, 0, 0, 0.78);

    border-radius: 9px;

    font-size: 0.78rem;

    font-weight: 800;

    backdrop-filter:
        blur(10px);
}


/* CARD OVERLAY */

.explore-card-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    opacity: 0;

    background:
        linear-gradient(
            transparent,
            rgba(0, 0, 0, 0.88)
        );

    transition:
        opacity 0.4s ease;
}


.explore-card-overlay span {
    transform:
        translateY(25px);

    color: #ffd21c;

    font-weight: 800;

    transition:
        transform 0.4s ease;
}


.explore-movie-card:hover
.explore-card-overlay {
    opacity: 1;
}


.explore-movie-card:hover
.explore-card-overlay span {
    transform:
        translateY(0);
}


/* MOVIE INFORMATION */

.explore-movie-info {
    padding:
        16px;
}


.explore-movie-info h3 {
    overflow: hidden;

    margin:
        0 0 7px;

    color: white;

    font-size: 0.96rem;

    white-space: nowrap;

    text-overflow:
        ellipsis;
}


.explore-movie-info p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.78rem;
}


/* LOADING CARDS */

.loading-card {
    aspect-ratio:
        2 / 3;

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.04) 25%,
            rgba(255, 210, 28, 0.10) 45%,
            rgba(255, 255, 255, 0.04) 65%
        );

    background-size:
        220% 100%;

    animation:
        exploreLoading
        1.4s linear
        infinite;
}


@keyframes exploreLoading {

    to {
        background-position:
            -220% 0;
    }

}


/* ERROR MESSAGE */

.explore-error {
    grid-column:
        1 / -1;

    padding: 35px;

    color:
        rgba(255, 255, 255, 0.6);

    text-align: center;
}


/* TABLET */

@media (
    max-width: 1050px
) {

    .explore-categories {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }


    .explore-page .movie-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

}


/* MOBILE */

@media (
    max-width: 650px
) {

    .explore-navbar {
        padding:
            12px 15px;
    }


    .explore-logo img {
        width: 41px;

        height: 41px;
    }


    .explore-logo h1 {
        font-size:
            0.95rem;
    }


    .explore-logo span {
        font-size:
            0.55rem;
    }


    .back-home-button {
        padding:
            10px 12px;

        font-size:
            0.75rem;
    }


    .explore-hero {
        min-height:
            530px;

        padding:
            80px 20px;
    }


    .explore-hero h2 {
        font-size:
            3.2rem;
    }


    .explore-categories {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        margin-top:
            -25px;

        padding:
            0 15px;
    }


    .explore-categories a {
        min-height:
            105px;
    }


    .explore-movie-section {
        padding:
            55px 15px;
    }


    .explore-page .movie-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            13px;
    }


    .explore-movie-info {
        padding:
            12px;
    }


    .explore-movie-info h3 {
        font-size:
            0.82rem;
    }

}
/* =========================================
   EXPLORE CATEGORY HUB — GOLD THEME 🧭🍿
========================================= */

.explore-hub {
    max-width: 1450px;

    margin: 0 auto;

    padding:
        40px 6%
        100px;
}


/* CATEGORY GROUP */

.explore-category-group {
    margin-bottom: 100px;
}


.explore-group-heading {
    margin-bottom: 30px;
}


.explore-group-heading p {
    margin:
        0 0 8px;

    color: #ffd21c;

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.explore-group-heading h2 {
    position: relative;

    display: inline-block;

    margin: 0;

    color: #ffffff;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            2.2rem,
            5vw,
            4rem
        );
}


.explore-group-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 55%;

    height: 4px;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            #ffd21c,
            #b98500,
            transparent
        );

    box-shadow:
        0 0 14px
        rgba(255, 210, 28, 0.5);
}


/* =========================================
   LARGE CATEGORY CARDS
========================================= */

.explore-category-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap: 22px;
}


.explore-category-card {
    position: relative;

    min-height: 220px;

    display: flex;

    align-items: center;

    gap: 25px;

    overflow: hidden;

    padding: 32px;

    color: #ffffff;

    text-decoration: none;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 210, 28, 0.13),
            transparent 38%
        ),

        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    border:
        1px solid
        rgba(255, 210, 28, 0.20);

    border-radius: 25px;

    box-shadow:
        0 18px 50px
        rgba(0, 0, 0, 0.4);

    isolation: isolate;

    transition:
        transform 0.45s
        cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),

        border-color 0.4s ease,

        box-shadow 0.4s ease;
}


/* MOVING GOLD LIGHT */

.explore-category-card::before {
    content: "";

    position: absolute;

    top: -70%;

    left: -80%;

    width: 48%;

    height: 250%;

    z-index: -1;

    transform:
        rotate(24deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 210, 28, 0.15),
            rgba(255, 235, 150, 0.3),
            transparent
        );

    transition:
        left 0.9s ease;
}


.explore-category-card:hover::before {
    left: 145%;
}


/* BACKGROUND GOLD CIRCLE */

.explore-category-card::after {
    content: "";

    position: absolute;

    right: -80px;

    bottom: -110px;

    width: 240px;

    height: 240px;

    z-index: -2;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 28, 0.22),
            transparent 68%
        );

    transition:
        transform 0.6s ease,
        opacity 0.6s ease;
}


.explore-category-card:hover::after {
    transform:
        scale(1.45);

    opacity: 1;
}


.explore-category-card:hover {
    transform:
        translateY(-12px)
        scale(1.015);

    border-color:
        rgba(255, 210, 28, 0.85);

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, 0.65),

        0 0 35px
        rgba(255, 210, 28, 0.18);
}


/* CATEGORY EMOJI */

.category-icon {
    min-width: 82px;

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(255, 210, 28, 0.32);

    border-radius: 23px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 210, 28, 0.16),
            rgba(185, 133, 0, 0.06)
        );

    font-size: 2.6rem;

    box-shadow:
        inset 0 0 25px
        rgba(255, 210, 28, 0.06),

        0 0 20px
        rgba(255, 210, 28, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


.explore-category-card:hover
.category-icon {
    transform:
        rotate(-7deg)
        scale(1.12);

    box-shadow:
        0 0 30px
        rgba(255, 210, 28, 0.28);
}


/* CATEGORY TEXT */

.explore-category-card > div {
    flex: 1;
}


.explore-category-card p {
    margin:
        0 0 8px;

    color: #ffd21c;

    font-size: 0.68rem;

    font-weight: 900;

    letter-spacing: 2px;
}


.explore-category-card h3 {
    margin:
        0 0 9px;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            1.5rem,
            3vw,
            2.25rem
        );

    line-height: 1;
}


.explore-category-card
div > span {
    color:
        rgba(255, 255, 255, 0.55);

    font-size: 0.88rem;

    line-height: 1.5;
}


.explore-category-card
> i {
    color: #ffd21c;

    font-size: 1.15rem;

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


.explore-category-card:hover
> i {
    transform:
        translateX(9px);

    filter:
        drop-shadow(
            0 0 9px
            #ffd21c
        );
}


/* =========================================
   SPECIAL MARVEL GOLD CARD ⚡
========================================= */

.marvel-card {
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 215, 70, 0.25),
            transparent 36%
        ),

        linear-gradient(
            135deg,
            #171300,
            #080700 55%,
            #000000
        );

    border:
        1px solid
        rgba(255, 215, 70, 0.62);

    box-shadow:
        inset 0 0 45px
        rgba(255, 210, 28, 0.05),

        0 18px 55px
        rgba(0, 0, 0, 0.7);
}


.marvel-card h3 {
    color:
        #ffd21c;

    text-shadow:
        0 0 20px
        rgba(255, 210, 28, 0.32);
}


.marvel-card .category-icon {
    animation:
        marvelGoldPower
        1.8s
        ease-in-out
        infinite alternate;
}


@keyframes marvelGoldPower {

    from {
        transform:
            scale(1);

        box-shadow:
            0 0 8px
            rgba(255, 210, 28, 0.15);
    }

    to {
        transform:
            scale(1.07);

        box-shadow:
            0 0 32px
            rgba(255, 210, 28, 0.48);
    }

}


/* =========================================
   WATCH BY MOOD
========================================= */

.explore-mood-grid {
    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(
                0,
                1fr
            )
        );

    gap: 15px;
}


.explore-mood-grid a {
    min-height: 135px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 13px;

    color: white;

    background:
        linear-gradient(
            145deg,
            rgba(255, 210, 28, 0.09),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid
        rgba(255, 210, 28, 0.18);

    border-radius: 20px;

    text-decoration: none;

    font-size: 2.2rem;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


.explore-mood-grid a span {
    font-size: 0.82rem;

    font-weight: 800;
}


.explore-mood-grid a:hover {
    transform:
        translateY(-10px)
        scale(1.04);

    border-color:
        #ffd21c;

    box-shadow:
        0 15px 35px
        rgba(255, 210, 28, 0.15);
}


/* =========================================
   SURPRISE ME BOX 🎲
========================================= */

.surprise-movie-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    overflow: hidden;

    padding:
        48px;

    background:
        linear-gradient(
            125deg,
            rgba(255, 210, 28, 0.20),
            rgba(185, 133, 0, 0.08),
            rgba(255, 255, 255, 0.025)
        );

    border:
        1px solid
        rgba(255, 210, 28, 0.5);

    border-radius: 28px;

    box-shadow:
        0 25px 70px
        rgba(0, 0, 0, 0.55),

        inset 0 0 45px
        rgba(255, 210, 28, 0.04);
}


.surprise-movie-box p {
    margin:
        0 0 7px;

    color: #ffd21c;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 2px;
}


.surprise-movie-box h2 {
    margin:
        0 0 8px;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            2.2rem,
            5vw,
            4rem
        );
}


.surprise-movie-box
div > span {
    color:
        rgba(255, 255, 255, 0.58);
}


#surpriseMovieButton {
    min-width: 190px;

    padding:
        16px 22px;

    color: #080700;

    background:
        linear-gradient(
            135deg,
            #ffe56a,
            #ffd21c,
            #b98500
        );

    border: none;

    border-radius: 14px;

    font-weight: 900;

    cursor: pointer;

    box-shadow:
        0 10px 30px
        rgba(255, 210, 28, 0.24);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


#surpriseMovieButton:hover {
    transform:
        translateY(-5px)
        scale(1.04);

    box-shadow:
        0 16px 38px
        rgba(255, 210, 28, 0.42);
}


/* =========================================
   TABLET
========================================= */

@media (
    max-width: 950px
) {

    .explore-category-grid {
        grid-template-columns:
            1fr;
    }


    .explore-mood-grid {
        grid-template-columns:
            repeat(
                3,
                1fr
            );
    }

}


/* =========================================
   MOBILE
========================================= */

@media (
    max-width: 650px
) {

    .explore-hub {
        padding:
            30px 15px
            70px;
    }


    .explore-category-group {
        margin-bottom:
            70px;
    }


    .explore-category-card {
        min-height:
            180px;

        gap:
            16px;

        padding:
            22px 17px;

        border-radius:
            20px;
    }


    .category-icon {
        min-width:
            62px;

        height:
            62px;

        border-radius:
            18px;

        font-size:
            2rem;
    }


    .explore-category-card h3 {
        font-size:
            1.45rem;
    }


    .explore-category-card
    div > span {
        font-size:
            0.75rem;
    }


    .explore-mood-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            11px;
    }


    .explore-mood-grid a {
        min-height:
            110px;
    }


    .surprise-movie-box {
        flex-direction:
            column;

        align-items:
            flex-start;

        padding:
            30px 23px;
    }


    #surpriseMovieButton {
        width:
            100%;
    }

}
/* =========================================
   FLOP CORN CATEGORY PAGE 🍿
   BLACK + YELLOW + GOLD
========================================= */

.category-page {
    min-height: 100vh;
    margin: 0;
    color: #ffffff;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(255, 210, 28, 0.11),
            transparent 28%
        ),
        #050505;
}


/* =========================================
   CATEGORY NAVBAR
========================================= */

.category-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 15px 6%;

    background:
        rgba(5, 5, 5, 0.9);

    border-bottom:
        1px solid
        rgba(255, 210, 28, 0.18);

    backdrop-filter:
        blur(18px);
}


.category-logo {
    display: flex;
    align-items: center;

    gap: 12px;

    color: #ffffff;

    text-decoration: none;
}


.category-logo img {
    width: 48px;
    height: 48px;

    object-fit: cover;

    border:
        2px solid
        #ffd21c;

    border-radius: 50%;

    box-shadow:
        0 0 20px
        rgba(255, 210, 28, 0.3);
}


.category-logo h1 {
    margin: 0;

    color: #ffd21c;

    font-size: 1.2rem;

    letter-spacing: 1px;
}


.category-logo span {
    display: block;

    margin-top: 3px;

    color:
        rgba(255, 255, 255, 0.5);

    font-size: 0.62rem;

    letter-spacing: 3px;
}


.back-explore-button {
    display: flex;
    align-items: center;

    gap: 9px;

    padding:
        11px 17px;

    color: #080700;

    background:
        linear-gradient(
            135deg,
            #ffe66d,
            #ffd21c,
            #d19b00
        );

    border-radius: 12px;

    text-decoration: none;

    font-weight: 800;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.back-explore-button:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0 10px 28px
        rgba(255, 210, 28, 0.3);
}


/* =========================================
   CATEGORY HERO
========================================= */

.category-hero {
    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    padding:
        90px 6%;

    text-align: center;

    border-bottom:
        1px solid
        rgba(255, 210, 28, 0.1);
}


.category-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(255, 210, 28, 0.06),
            transparent 75%
        );

    animation:
        categoryHeroLight
        6s ease-in-out
        infinite alternate;
}


@keyframes categoryHeroLight {

    from {
        transform:
            translateX(-20%);
    }

    to {
        transform:
            translateX(20%);
    }

}


.category-hero-glow {
    position: absolute;

    width: 550px;
    height: 550px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 28, 0.19),
            rgba(185, 133, 0, 0.05) 45%,
            transparent 70%
        );

    animation:
        categoryGlow
        2.8s ease-in-out
        infinite alternate;
}


@keyframes categoryGlow {

    from {
        opacity: 0.5;

        transform:
            scale(0.88);
    }

    to {
        opacity: 1;

        transform:
            scale(1.15);
    }

}


.category-hero-content {
    position: relative;

    z-index: 2;

    max-width: 850px;

    animation:
        categoryHeroEntrance
        0.8s ease both;
}


@keyframes categoryHeroEntrance {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(0.95);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


#categorySmallTitle {
    margin:
        0 0 18px;

    color: #ffd21c;

    font-size: 0.78rem;

    font-weight: 900;

    letter-spacing: 3px;
}


#categoryTitle {
    margin:
        0 0 20px;

    color: #ffffff;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            3.4rem,
            8vw,
            7rem
        );

    line-height: 0.95;

    text-shadow:
        0 0 35px
        rgba(255, 210, 28, 0.18);
}


#categoryDescription {
    max-width: 670px;

    margin:
        0 auto;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 1rem;

    line-height: 1.8;
}


.category-information {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 28px;
}


.category-information span {
    display: flex;

    align-items: center;

    gap: 8px;

    padding:
        10px 14px;

    color:
        rgba(255, 255, 255, 0.78);

    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(255, 210, 28, 0.16);

    border-radius: 50px;

    font-size: 0.78rem;
}


.category-information i {
    color: #ffd21c;
}


/* =========================================
   MOVIE RESULTS SECTION
========================================= */

.category-movies-section {
    max-width: 1450px;

    margin: auto;

    padding:
        80px 6%
        110px;
}


.category-results-heading {
    display: flex;

    align-items: end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 35px;
}


.category-results-heading p {
    margin:
        0 0 8px;

    color: #ffd21c;

    font-size: 0.72rem;

    font-weight: 900;

    letter-spacing: 2.5px;
}


.category-results-heading h2 {
    margin: 0;

    font-family:
        "Outfit",
        sans-serif;

    font-size:
        clamp(
            2.2rem,
            5vw,
            4rem
        );
}


.category-results-heading > a {
    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        11px 15px;

    color: #ffd21c;

    border:
        1px solid
        rgba(255, 210, 28, 0.35);

    border-radius: 11px;

    text-decoration: none;

    font-size: 0.78rem;

    font-weight: 800;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.category-results-heading > a:hover {
    color: #080700;

    background: #ffd21c;

    transform:
        translateY(-3px);
}


/* =========================================
   CATEGORY MOVIE GRID
========================================= */

.category-movie-grid {
    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(
                0,
                1fr
            )
        );

    gap: 24px;
}


/* =========================================
   MOVIE CARD
========================================= */

.category-movie-card {
    min-width: 0;

    overflow: hidden;

    cursor: pointer;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.09);

    border-radius: 19px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.38);

    animation:
        categoryCardEntrance
        0.65s ease
        both;

    animation-delay:
        calc(
            var(--card-number)
            *
            0.055s
        );

    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}


@keyframes categoryCardEntrance {

    from {
        opacity: 0;

        transform:
            translateY(35px)
            scale(0.92);
    }

    to {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

}


.category-movie-card:hover {
    transform:
        translateY(-13px)
        scale(1.025);

    border-color:
        rgba(255, 210, 28, 0.75);

    box-shadow:
        0 24px 50px
        rgba(0, 0, 0, 0.7),

        0 0 30px
        rgba(255, 210, 28, 0.17);
}


/* MOVIE POSTER */

.category-poster {
    position: relative;

    overflow: hidden;

    aspect-ratio:
        2 / 3;

    background: #151515;
}


.category-poster img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.65s ease,
        filter 0.5s ease;
}


.category-movie-card:hover
.category-poster img {
    transform:
        scale(1.1);

    filter:
        brightness(0.7);
}


/* RATING */

.category-rating {
    position: absolute;

    top: 12px;
    right: 12px;

    padding:
        7px 10px;

    color: #ffd21c;

    background:
        rgba(0, 0, 0, 0.82);

    border:
        1px solid
        rgba(255, 210, 28, 0.16);

    border-radius: 9px;

    font-size: 0.78rem;

    font-weight: 900;

    backdrop-filter:
        blur(10px);
}


/* CARD OVERLAY */

.category-card-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;

    background:
        linear-gradient(
            transparent 30%,
            rgba(0, 0, 0, 0.92)
        );

    transition:
        opacity 0.4s ease;
}


.category-card-overlay span {
    color: #ffd21c;

    font-weight: 900;

    transform:
        translateY(25px);

    transition:
        transform 0.4s ease;
}


.category-movie-card:hover
.category-card-overlay {
    opacity: 1;
}


.category-movie-card:hover
.category-card-overlay span {
    transform:
        translateY(0);
}


/* MOVIE INFORMATION */

.category-card-info {
    padding:
        16px;
}


.category-card-info h3 {
    overflow: hidden;

    margin:
        0 0 8px;

    color: #ffffff;

    font-size: 0.96rem;

    white-space: nowrap;

    text-overflow: ellipsis;
}


.category-card-info p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 0.78rem;
}


/* =========================================
   LOADING CARDS
========================================= */

.category-loading-card {
    aspect-ratio:
        2 / 3;

    border-radius: 19px;

    background:
        linear-gradient(
            110deg,
            rgba(255, 255, 255, 0.035) 25%,
            rgba(255, 210, 28, 0.12) 45%,
            rgba(255, 255, 255, 0.035) 65%
        );

    background-size:
        220% 100%;

    animation:
        categoryLoading
        1.4s linear
        infinite;
}


@keyframes categoryLoading {

    to {
        background-position:
            -220% 0;
    }

}


/* =========================================
   ERROR MESSAGE
========================================= */

.category-error {
    grid-column:
        1 / -1;

    padding:
        80px 25px;

    color:
        rgba(255, 255, 255, 0.6);

    text-align: center;

    border:
        1px solid
        rgba(255, 210, 28, 0.14);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.025);
}


.category-error i {
    color: #ffd21c;

    font-size: 2.8rem;
}


.category-error h3 {
    margin:
        18px 0 8px;

    color: #ffffff;

    font-size: 1.4rem;
}


.category-error p {
    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (
    max-width: 1050px
) {

    .category-movie-grid {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    0,
                    1fr
                )
            );
    }

}


/* =========================================
   MOBILE
========================================= */

@media (
    max-width: 650px
) {

    .category-navbar {
        padding:
            12px 15px;
    }


    .category-logo img {
        width: 41px;
        height: 41px;
    }


    .category-logo h1 {
        font-size:
            0.95rem;
    }


    .category-logo span {
        font-size:
            0.52rem;
    }


    .back-explore-button {
        padding:
            10px 12px;

        font-size:
            0.75rem;
    }


    .category-hero {
        min-height:
            440px;

        padding:
            75px 20px;
    }


    #categoryTitle {
        font-size:
            3.5rem;
    }


    #categoryDescription {
        font-size:
            0.9rem;
    }


    .category-movies-section {
        padding:
            60px 15px
            80px;
    }


    .category-results-heading {
        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .category-movie-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(
                    0,
                    1fr
                )
            );

        gap:
            13px;
    }


    .category-card-info {
        padding:
            12px;
    }


    .category-card-info h3 {
        font-size:
            0.82rem;
    }


    .category-rating {
        top: 8px;
        right: 8px;

        padding:
            6px 8px;

        font-size:
            0.7rem;
    }

}
/* =====================================
   EXPLORE BUTTON LIVE ANIMATION ✨
===================================== */

.explore-start-button {
    position: relative;
    overflow: hidden;
    animation: explorePulse 2s ease-in-out infinite;
}

/* Moving shine */
.explore-start-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    );
    transform: skewX(-20deg);
    animation: exploreShine 3s infinite;
}

/* Bouncing arrow */
.explore-start-button i {
    animation: arrowBounce 1.2s ease-in-out infinite;
}

@keyframes explorePulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 204, 0, 0.25);
    }

    50% {
        transform: scale(1.05);
        box-shadow:
            0 10px 38px rgba(255, 204, 0, 0.6),
            0 0 18px rgba(255, 215, 0, 0.35);
    }
}

@keyframes exploreShine {
    0% {
        left: -120%;
    }

    45%,
    100% {
        left: 150%;
    }
}

@keyframes arrowBounce {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}
/* =====================================
   FINAL LAPTOP NAVBAR FIT FIX
===================================== */

@media (min-width: 1000px) {

    .navbar {
        padding: 12px 16px;
        gap: 12px;
    }

    .nav-links {
        gap: 12px;
        flex: 1;
        justify-content: center;
    }

    .nav-links a {
        padding: 10px 8px;
        font-size: 13px;
        white-space: nowrap;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .navbar-logo {
        flex-shrink: 0;
    }
}
/* =====================================
   FINAL DESKTOP / MOBILE MENU FIX
===================================== */

/* LAPTOP ONLY */
@media screen and (min-width: 1001px) {

    #mobileMenuButton,
    .mobile-menu-button {
        display: none !important;
    }

    #mobileMenu {
        transform: translateX(-110%) !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* =====================================
   FINAL MOBILE MENU FIX 🍿
===================================== */

@media screen and (max-width: 1000px) {

    #mobileMenu,
    .mobile-menu {
        position: fixed !important;

        top: 80px !important;
        right: 12px !important;
        left: auto !important;

        width: 250px !important;
        max-width: calc(100vw - 24px) !important;

        z-index: 99999 !important;

        transform: none !important;

        border-radius: 18px !important;
    }

    #mobileMenu:not(.show),
    .mobile-menu:not(.show) {
        display: none !important;
    }

    #mobileMenu.show,
    .mobile-menu.show {
        display: flex !important;
        flex-direction: column !important;
    }
}
/* =====================================
   MOBILE EXPLORE BUTTON 🍿
===================================== */

/* Hidden on laptop */
.mobile-explore-button {
    display: none;
}

/* Visible only on mobile */
@media screen and (max-width: 1000px) {

    .mobile-explore-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;

        width: fit-content;
        margin: 25px auto;

        padding: 14px 22px;

        color: #111;
        background: linear-gradient(
            135deg,
            #ffd000,
            #ffb800
        );

        font-size: 15px;
        font-weight: 800;
        text-decoration: none;

        border: 1px solid #ffe56b;
        border-radius: 14px;

        box-shadow:
            0 8px 25px rgba(255, 204, 0, 0.3);

        transition: 0.3s ease;

        animation: mobileExploreGlow 2s ease-in-out infinite;
    }

    .mobile-explore-button:active {
        transform: scale(0.95);
    }

    .mobile-explore-button .fa-arrow-right {
        animation: mobileExploreArrow 1.2s ease-in-out infinite;
    }
}

@keyframes mobileExploreGlow {

    0%,
    100% {
        box-shadow:
            0 8px 20px rgba(255, 204, 0, 0.25);
    }

    50% {
        box-shadow:
            0 8px 32px rgba(255, 204, 0, 0.65);
    }
}

@keyframes mobileExploreArrow {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}
/* =====================================
   MARVEL LOGO — EXPLORE PAGE
===================================== */

.marvel-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.marvel-logo-box img {
    width: 82%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    transition: transform 0.35s ease;
}

.explore-category-card:hover .marvel-logo-box img {
    transform: scale(1.12);
}
/* FINAL PROFILE MENU POSITION FIX */

.navbar-right {
    position: relative !important;
}

.profile-menu {
    position: absolute !important;

    top: 58px !important;
    right: 0 !important;

    display: none !important;

    visibility: hidden !important;
    opacity: 0 !important;

    z-index: 999999 !important;
}

.profile-menu.show {
    display: block !important;

    visibility: visible !important;
    opacity: 1 !important;
}
/* FINAL PROFILE DROPDOWN VISIBILITY FIX */

.navbar {
    overflow: visible !important;
}

.navbar-right {
    position: static !important;
}

.profile-menu {
    position: fixed !important;

    top: 75px !important;
    right: 20px !important;

    width: 280px !important;
    height: auto !important;

    overflow: visible !important;

    background: #151515 !important;

    z-index: 9999999 !important;
}

.profile-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
/* PROFILE MENU — ALWAYS ABOVE THE PAGE */

.navbar {
    z-index: 999999 !important;
    overflow: visible !important;
}

.navbar-right {
    position: relative !important;
    z-index: 999999 !important;
}

.profile-menu {
    position: fixed !important;

    top: 75px !important;
    right: 20px !important;

    width: 280px !important;
    height: auto !important;

    overflow: visible !important;

    background: #151515 !important;

    z-index: 2147483647 !important;
}

.profile-menu.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    transform: none !important;
}
/* FIX PROFILE CLOSE BUTTON ON MOBILE */

@media screen and (max-width: 600px) {

    .full-profile-overlay {
        padding-top: 90px !important;
        align-items: flex-start !important;
    }

    .full-profile-card {
        max-height: calc(100vh - 110px) !important;
        overflow-y: auto !important;
    }

    .close-profile-button {
        position: sticky !important;

        top: 0 !important;

        margin-left: auto !important;
        margin-bottom: 5px !important;

        z-index: 99999999 !important;

        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;

        background: #292929 !important;
        color: white !important;
    }
}
/* FINAL MOBILE PROFILE CLOSE BUTTON FIX */

@media screen and (max-width: 600px) {

    .full-profile-overlay {
        padding: 85px 10px 20px !important;
        align-items: flex-start !important;
        overflow-y: auto !important;
    }

    .full-profile-card {
        position: relative !important;
        max-height: none !important;
        padding-top: 65px !important;
        overflow: visible !important;
    }

    .close-profile-button {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        width: 42px !important;
        height: 42px !important;
        display: grid !important;
        place-items: center !important;
        color: #fff !important;
        background: #333 !important;
        border: 2px solid #ffd21c !important;
        border-radius: 50% !important;
        font-size: 28px !important;
        z-index: 2147483647 !important;
    }
}
/* MOVE FULL PROFILE BELOW NAVBAR ON MOBILE */

@media screen and (max-width: 600px) {

    .full-profile-overlay {
        padding: 95px 12px 25px !important;
        align-items: flex-start !important;
        overflow-y: auto !important;
    }

    .full-profile-card {
        margin-top: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    #closeProfileButton {
        position: absolute !important;

        top: 15px !important;
        right: 15px !important;

        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;

        z-index: 2147483647 !important;
    }
}
/* MOBILE PROFILE X BUTTON — FIXED ON SCREEN */

@media screen and (max-width: 600px) {

    #closeProfileButton {
        position: fixed !important;

        top: 85px !important;
        right: 20px !important;

        width: 46px !important;
        height: 46px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        visibility: visible !important;
        opacity: 1 !important;

        color: #111111 !important;
        background: #ffd21c !important;

        border: 2px solid #ffffff !important;
        border-radius: 50% !important;

        font-size: 30px !important;
        font-weight: 900 !important;

        z-index: 2147483647 !important;
    }
}
/* APP DOWNLOAD POPUP */

.app-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.8);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    backdrop-filter:blur(8px);
}

.app-popup{
    width:90%;
    max-width:420px;
    background:#111;
    border:2px solid #ff3b30;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    position:relative;
    box-shadow:0 0 40px rgba(255,59,48,.35);
}

.app-popup img{
    width:90px;
    margin-bottom:20px;
}

.app-popup h2{
    color:#fff;
    margin-bottom:10px;
}

.app-popup p{
    color:#ccc;
    line-height:1.6;
    margin-bottom:25px;
}

.download-app-popup-btn{
    display:block;
    width:100%;
    padding:15px;
    background:#ff3b30;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:700;
    font-size:17px;
    margin-bottom:15px;
}

.continue-site-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:12px;
    background:#2b2b2b;
    color:#fff;
    cursor:pointer;
    font-size:16px;
}

.close-app-popup{
    position:absolute;
    right:15px;
    top:12px;
    background:none;
    border:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}
/* ================= APP DOWNLOAD POPUP ================= */

.app-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    animation: fadeIn .3s ease;
}

.app-popup{
    width: 90%;
    max-width: 420px;
    background: #121212;
    border: 2px solid #ff3b30;
    border-radius: 24px;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 40px rgba(255,59,48,.35);
    animation: popupScale .35s ease;
}

.app-popup img{
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 15px;
}

.app-popup h2{
    color: #fff;
    font-size: 28px;
    margin-bottom: 20px;
}

.app-popup p{
    color: #cfcfcf;
    line-height: 1.6;
    margin: 20px 0;
}

.app-stats{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin:20px 0;
}

.app-stats div{
    flex:1;
    background:#1d1d1d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:12px;
}

.app-stats strong{
    display:block;
    color:#fff;
    font-size:17px;
    margin-bottom:5px;
}

.app-stats span{
    color:#bdbdbd;
    font-size:13px;
}

.popup-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:20px;
}

.download-app-popup-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    width:100%;
    padding:15px;
    background:#ff3b30;
    color:#fff;
    text-decoration:none;
    border-radius:14px;
    font-weight:700;
    font-size:16px;
    transition:.3s;
}

.download-app-popup-btn:hover{
    background:#ff5648;
    transform:translateY(-2px);
}

.continue-site-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:14px;
    background:#2b2b2b;
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.continue-site-btn:hover{
    background:#3a3a3a;
}

.close-app-popup{
    position:absolute;
    top:12px;
    right:15px;
    background:none;
    border:none;
    color:#fff;
    font-size:30px;
    cursor:pointer;
    transition:.3s;
}

.close-app-popup:hover{
    color:#ff3b30;
    transform:rotate(90deg);
}

@keyframes popupScale{
    from{
        transform:scale(.85);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

@media(max-width:600px){

    .app-popup{
        width:92%;
        padding:30px 22px;
    }

    .app-popup h2{
        font-size:24px;
    }

    .app-stats{
        gap:10px;
    }

    .app-stats strong{
        font-size:15px;
    }

    .download-app-popup-btn,
    .continue-site-btn{
        font-size:15px;
        padding:14px;
    }

}
/* ===============================
   HOME DOWNLOAD APP BUTTON
================================ */

.download-app-home{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    margin-top:18px;

    padding:15px 28px;

    background:linear-gradient(135deg,#ff3b30,#ff6b3d);

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:700;

    border-radius:50px;

    box-shadow:0 10px 25px rgba(255,59,48,.35);

    transition:all .3s ease;
}

.download-app-home:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,59,48,.45);

    background:linear-gradient(135deg,#ff5648,#ff7b4d);
}

.download-app-home i{

    font-size:20px;

}

@media(max-width:768px){

    .download-app-home{

        width:100%;

        justify-content:center;

    }

}
/* =========================================
   AI MOVIE BUDDY HOME BUTTON 🤖🍿
========================================= */

.ai-buddy-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 54px;
    padding: 0 23px;

    border: 1px solid rgba(255, 210, 28, 0.5);
    border-radius: 15px;

    color: #ffd21c;
    background: rgba(255, 210, 28, 0.1);

    font-weight: 800;

    box-shadow: 0 0 25px rgba(255, 210, 28, 0.08);

    transition: 0.3s ease;
}

.ai-buddy-home-button i {
    font-size: 18px;
}

.ai-buddy-home-button:hover {
    color: #111111;
    background: #ffd21c;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(255, 210, 28, 0.25);
}

/* MOBILE */

@media (max-width: 680px) {

    .ai-buddy-home-button {
        width: 100%;
    }

}
