/* ============================================
   STAN PORTFOLIO — Premium Glassmorphism Theme
   Navy Blue Gemini Aesthetic + 3D Pop Effects
   Mobile-First Design
   ============================================ */

:root {
    --bg-deep: #040714;
    --bg-navy: #0a1628;
    --bg-card: rgba(15, 25, 50, 0.4);
    --glass-border: rgba(100, 160, 255, 0.12);
    --glass-border-hover: rgba(0, 180, 255, 0.6);
    --neon: #00d2ff;
    --neon-soft: rgba(0, 210, 255, 0.15);
    --neon-glow: rgba(0, 210, 255, 0.4);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.15);
    --text-main: #ffffff;
    --text-muted: #8ba3c7;
    --radius: 20px;
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- RESET ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
    overflow-x: hidden;
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, .logo { font-family: 'Outfit', sans-serif; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ---- ANIMATED BACKGROUND ---- */
.bg-deep {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 40, 100, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 100%, rgba(0, 50, 120, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #040714 0%, #0a1628 50%, #040714 100%);
    z-index: -4;
}

.bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(100, 160, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 160, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -3;
}

.bg-orbs {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 100, 255, 0.3), transparent 70%);
    top: -10%; left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2), transparent 70%);
    top: 50%; right: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(100, 0, 255, 0.15), transparent 70%);
    bottom: -10%; left: 30%;
    animation-delay: -14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(15px, 30px) scale(1.02); }
}

.bg-spotlight {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle 500px at var(--mouse-x, 50vw) var(--mouse-y, 50vh), rgba(0, 150, 255, 0.06), transparent 40%);
    z-index: -1;
    pointer-events: none;
    will-change: background;
    transition: background 0.15s ease;
}

/* ---- CONTAINER ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}

/* ---- HEADER ---- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    background: rgba(4, 7, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(100, 160, 255, 0.08);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ---- SHINING LOGO ---- */
.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 4px;
    background: linear-gradient(
        90deg,
        #4a5568 0%,
        #ffffff 20%,
        #00d2ff 40%,
        #ffffff 60%,
        #4a5568 80%,
        #ffffff 100%
    );
    background-size: 300% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: logoShine 4s linear infinite;
    text-shadow: none;
}

@keyframes logoShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

/* ---- NAVIGATION ---- */
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.nav-links a {
    position: relative;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    box-shadow: 0 0 8px var(--neon-glow);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--neon);
}

.nav-links a:hover::after {
    width: 100%;
}

.icon-link {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(15, 25, 50, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: var(--transition);
}

.icon-link:hover {
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-soft);
    transform: translateY(-2px);
}

/* ---- HAMBURGER MENU ---- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) { top: 2px; }
.hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger-line:nth-child(3) { bottom: 2px; }

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* ---- HERO SECTION ---- */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--neon-soft);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--neon);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.hero-accent {
    background: linear-gradient(135deg, var(--gold), #f5d76e);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-sub {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-pipe {
    color: var(--neon);
    font-size: 1.5rem;
}

.hero-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--neon);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    min-height: 2.5rem;
}

.cursor {
    color: var(--neon);
    animation: blink 0.8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-desc {
    max-width: 700px;
    font-size: clamp(0.95rem, 1.2vw, 1.15rem);
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--neon), #0090ff);
    color: #000;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.5);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: var(--text-muted);
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.btn-ghost:hover {
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 20px var(--neon-soft);
    transform: translateY(-3px);
}

/* ---- GLASSMORPHISM CARDS ---- */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    transition: 
        transform var(--transition),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Glowing edge effect */
.card-glow {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    opacity: 0;
    transition: opacity 0.4s ease;
    background: 
        linear-gradient(135deg, rgba(0, 210, 255, 0.1), transparent 40%),
        linear-gradient(315deg, rgba(100, 0, 255, 0.05), transparent 40%);
    pointer-events: none;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 210, 255, 0) 30%,
        rgba(0, 210, 255, 0) 70%,
        transparent 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 
        0 8px 40px rgba(0, 150, 255, 0.15),
        0 0 0 1px rgba(0, 180, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transform: translateY(-8px) scale(1.02);
}

.glass-card:hover .card-glow {
    opacity: 1;
}

.glass-card:hover::before {
    opacity: 1;
    background: linear-gradient(
        135deg,
        rgba(0, 210, 255, 0.4) 0%,
        rgba(0, 100, 255, 0.2) 30%,
        rgba(100, 0, 255, 0.1) 70%,
        rgba(0, 210, 255, 0.3) 100%
    );
}

.glass-card h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.glass-card:hover h3 {
    color: var(--neon);
    text-shadow: 0 0 12px var(--neon-glow);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.capability-icon {
    font-size: 2.2rem;
    color: var(--neon);
    margin-bottom: 1.2rem;
    display: inline-block;
    filter: drop-shadow(0 0 8px var(--neon-glow));
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
    transition: 
        opacity 0.8s var(--transition),
        transform 0.8s var(--transition);
    transition-delay: var(--delay, 0s);
}

.reveal.reveal-up {
    transform: translateY(60px);
}

.reveal.reveal-3d {
    transform: perspective(1000px) rotateX(10deg) translateY(40px) scale(0.95);
    transform-origin: center bottom;
}

.reveal.reveal-left {
    transform: translateX(-60px) translateY(20px);
}

.reveal.active {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) translateX(0) scale(1);
}

/* ---- SECTION STYLING ---- */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3.5rem;
    text-align: center;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #8ba3c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---- GRIDS ---- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(180deg, var(--neon), rgba(0, 210, 255, 0.1));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 55px;
    margin-bottom: 2.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 2rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--neon);
    box-shadow: 0 0 20px var(--neon), 0 0 40px var(--neon-soft);
    border: 2px solid var(--bg-deep);
}

.timeline-role {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
    font-family: 'Outfit', sans-serif;
}

.timeline-company {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.timeline-ref {
    font-size: 0.88rem;
    background: rgba(0, 20, 60, 0.4);
    padding: 1rem 1.2rem;
    border-left: 2px solid var(--gold);
    margin-top: 1.2rem;
    color: var(--text-muted);
    border-radius: 0 10px 10px 0;
}

.link-glow {
    color: var(--neon);
    font-weight: 600;
}

.link-glow:hover {
    text-shadow: 0 0 12px var(--neon);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.2rem;
    color: var(--neon);
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.project-link:hover {
    text-shadow: 0 0 12px var(--neon);
    gap: 0.8rem;
}

/* ---- MARQUEE ---- */
.marquee {
    overflow: hidden;
    white-space: nowrap;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(0, 150, 255, 0.1);
    border-bottom: 1px solid rgba(0, 150, 255, 0.1);
    background: rgba(4, 7, 20, 0.6);
    margin: 60px 0;
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-content {
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: rgba(100, 160, 255, 0.3);
    letter-spacing: 3px;
    padding-right: 2rem;
}

.marquee-content .dot {
    color: var(--neon);
    opacity: 0.5;
    margin: 0 1.5rem;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- CONTACT ---- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--gold);
    transition: var(--transition);
    min-width: 30px;
    text-align: center;
}

.contact-item:hover i {
    color: var(--neon);
    filter: drop-shadow(0 0 10px var(--neon));
}

.contact-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}

.contact-item:hover span {
    color: var(--neon);
}

.contact-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-top: 0.2rem;
}

/* ---- FORM ---- */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-input {
    width: 100%;
    background: rgba(10, 20, 50, 0.5);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.2rem;
    border-radius: 12px;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: rgba(139, 163, 199, 0.5);
}

.form-input:focus {
    border-color: var(--neon);
    background: rgba(0, 150, 255, 0.05);
    box-shadow: 0 0 20px var(--neon-soft), inset 0 0 20px rgba(0, 150, 255, 0.03);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--neon);
    border: 1px solid var(--neon);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    background: var(--neon);
    color: #000;
    box-shadow: 0 0 30px var(--neon-glow), 0 4px 20px rgba(0, 210, 255, 0.3);
    transform: translateY(-2px);
}

/* ---- FOOTER ---- */
footer {
    border-top: 1px solid rgba(100, 160, 255, 0.08);
    padding: 2.5rem 0;
    background: rgba(4, 7, 20, 0.8);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.4rem;
}

footer p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(15, 25, 50, 0.5);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon);
    border-color: var(--neon);
    box-shadow: 0 0 15px var(--neon-soft);
    transform: translateY(-2px);
}

/* ============================================
   MOBILE-FIRST RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bg-spotlight { display: none; }
    .orb { opacity: 0.2; }

    .mobile-menu-btn { display: block; }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(4, 7, 20, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(100, 160, 255, 0.05);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    /* BREATHING ROOM — generous padding on mobile */
    .container {
        padding: 0 1.5rem;
    }

    .glass-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-item {
        padding-left: 38px;
    }

    .timeline-item::before {
        left: 4px;
        top: 1.5rem;
        width: 12px;
        height: 12px;
    }

    .timeline-role {
        font-size: 1.1rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Stagger delays removed on mobile for snappier feel */
    .reveal {
        transition-delay: 0s !important;
    }

    .marquee-content {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-ghost {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .container {
        padding: 0 1.2rem;
    }

    .glass-card {
        padding: 1.2rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .logo {
        font-size: 1.6rem;
    }
}

/* ---- SELECTION ---- */
::selection {
    background: rgba(0, 210, 255, 0.2);
    color: #fff;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 150, 255, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon);
}
