@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500&family=JetBrains+Mono:wght@400;500&display=swap');
:root {
    --bg: #080808;
    --text: #e8e8e8;
    --muted: #888;
    --dim: #555;
    --accent: #c8b560;
    --accent-dim: rgba(200, 181, 96, .12);
    --border: rgba(255, 255, 255, .07);
    --card-bg: rgba(255, 255, 255, .025);
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --text-xs: .78rem;
    --text-sm: .88rem;
    --text-base: 1.02rem;
    --text-lg: 1.2rem;
    --text-xl: 1.55rem;
}
/* ======================================================
details 
====================================================== */
* {
    backface-visibility: hidden;
    /* transform: translateZ(0); */
    -webkit-tap-highlight-color: transparent;
}



::selection {
    background: var(--accent-dim);
    color: #fff;
}

::-moz-selection {
    background: rgba(88, 166, 255, 0.25);
    color: #fff;
}

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

body {
    position: relative;
    background: var(--bg);
    color: var(--text);
    font-family: "JetBrains Mono", monospace;
    font-size: var(--text-base);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100dvh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}



.navbar_section {
    direction: ltr;
    display: flex;
    position: fixed;
    bottom: var(--space-5);
    left: 50%;
    transform: translateX(-50%);
    gap: var(--space-2);
    z-index: 1000;
}

.navbar {
    background: rgba(10, 10, 10, .85);
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: var(--space-2) var(--space-3);
    display: flex;
    gap: var(--space-1);
    box-shadow: 0 8px 40px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .05) inset;
}

.nav-item {
    padding: var(--space-2) var(--space-3);
    border-radius: var(--space-2);
    text-decoration: none;
    color: var(--dim);
    font-size: var(--text-sm);
    transition: all .18s;
    display: flex;
    align-items: center;
    gap: 7px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--text);
}

.nav-item.active {
    background: rgba(255, 255, 255, .1);
    color: var(--text);
}

.nav-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .nav-text {
        display: none;
    }

    .nav-item {
        padding: 10px 14px;
    }

    .navbar {
        padding: 8px 10px;
    }
    }


    a { text-decoration: none;  }