.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.nav-right{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    height:100%;

}

.nav-right > *{

    display:flex;

    align-items:center;

}



/* =========================================================
   CELEBRATION BADGE
========================================================= */

.celebration-badge{

    position:relative;

    overflow:hidden;

    height:38px;

    padding:
        0 14px;

    border-radius:999px;

    display:inline-flex;
    align-items:center;

    gap:10px;

    margin-left:16px;

    background:
        linear-gradient(
            135deg,
            rgba(86,45,212,.12),
            rgba(86,45,212,.04)
        );

    border:
        1px solid rgba(86,45,212,.12);

    backdrop-filter:
        blur(14px);

    white-space:nowrap;

    animation:
        badgeFloat 4s ease-in-out infinite;

}

/* =========================================================
   LIGHT MODE
========================================================= */

[data-theme="light"] .celebration-badge{

    background:
        linear-gradient(
            135deg,
            rgba(86,45,212,.06),
            rgba(86,45,212,.02)
        );

}

/* =========================================================
   EMOJI
========================================================= */

.celebration-emoji{

    font-size:1rem;

    animation:
        emojiBounce 2s ease infinite;

}

/* =========================================================
   TEXT
========================================================= */

.celebration-text{

    font-size:.78rem;

    font-weight:700;

    color:var(--text);

    letter-spacing:-0.01em;

}

/* =========================================================
   SHINE
========================================================= */

.celebration-badge::after{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:120%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.14),
            transparent
        );

    animation:
        badgeShine 6s linear infinite;

}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes emojiBounce{

    0%,100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-2px);

    }

}

@keyframes badgeFloat{

    0%,100%{

        transform:
            translateY(0);

    }

    50%{

        transform:
            translateY(-2px);

    }

}

@keyframes badgeShine{

    100%{

        left:120%;

    }

}

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

@media(max-width:900px){

    .celebration-badge{

        display:none;

    }

}