/* =========================
   THEME TOKENS
   ========================= */
   :root {
    --bg: #010720;
    --text: #eaeaea;
    --muted: #b5b5b5;
  
    --divider: #000000;
    --divider-hover: #22426c;
  
    --menu-bg: rgba(18, 18, 18, 0.92);
    --menu-border: rgba(255, 255, 255, 0.08);
  }
  
  body[data-theme="light"] {
    --bg: #e9d2f0;
    --text: #000000;
    --muted: rgba(0, 0, 0, 0.75);
  
    --divider: rgba(0, 0, 0, 0.18);
    --divider-hover: #e4bff0;
  
    --menu-bg: rgba(255, 255, 255, 0.9);
    --menu-border: rgba(0, 0, 0, 0.12);
  }
  
  /* =========================
     BASE RESET + GLOBALS
     ========================= */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  html,
  body {
    overflow-x: hidden;
  }
  
  body {
    background-color: var(--bg);
    color: var(--text);
  
    background-image:
      radial-gradient(circle at 20% 10%, rgba(226, 182, 240, 0.08), transparent 38%),
      radial-gradient(circle at 80% 30%, rgba(34, 66, 108, 0.10), transparent 42%);
    background-attachment: fixed;
  
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  }
  
  /* Links follow theme */
  a,
  a:visited {
    color: var(--text);
  }
  a:hover {
    color: var(--text);
    opacity: 0.9;
  }
  
  /* Text */
  p {
    line-height: 1.6;
    color: var(--muted);
  }
  li,
  span,
  small {
    color: var(--text);
  }
  
  /* Hard enforcement you relied on */
  body[data-theme="light"] p {
    color: var(--text) !important;
  }
  body[data-theme="dark"] p {
    color: var(--muted) !important;
  }
  
  /* =========================
     LAYOUT
     ========================= */
  .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  
    padding: 80px;
    padding-top: 160px; /* below fixed navbar */
  }
  
  /* =========================
     TYPOGRAPHY
     ========================= */
  h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
  }
  
  h2 {
    letter-spacing: -0.5px;
  }
  
  .tagline {
    font-size: 18px;
    color: #b5b5b5;
    margin-bottom: 20px;
  }
  
  /* =========================
     HERO + BUTTONS
     ========================= */
  .hero {
    margin-bottom: 100px;
  }
  
  .hero-actions {
    margin-top: 0;
    margin-bottom: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .btn-outline {
    padding: 10px 18px;
    border: 1px solid var(--divider);
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: border 0.2s ease, transform 0.2s ease;
  }
  
  .btn-outline:hover {
    border-color: var(--divider-hover);
    transform: translateY(-1px);
  }
  
  .btn-primary {
    padding: 10px 18px;
    border-radius: 8px;
    background: transparent;
    color: var(--text);
    border: 1px solid var(--divider);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: border 0.2s ease, transform 0.2s ease;
  }
  
  .btn-primary:hover {
    border-color: var(--divider-hover);
    transform: translateY(-1px);
  }
  
  .hero-note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 420px;
  }
  
  /* =========================
     SECTIONS + DIVIDERS
     ========================= */
  .section {
    position: relative;
    padding: 28px 0;
    margin-bottom: 10px;
  }
  
  .section h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }
  
  /* Divider above each section */
  .section::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background: var(--divider);
    transition: background 0.25s ease;
  }
  
  .section:hover::before {
    background: var(--divider-hover);
  }
  
  /* No divider above first section */
  .section:first-of-type::before {
    display: none;
  }
  
  /* Section links stay themed */
  .section a {
    color: var(--text);
  }
  .section a:hover {
    color: var(--text);
    opacity: 0.9;
  }
  
  /* Tighten Papers section spacing */
  #papers.section {
    padding-bottom: 12px;
  }
  
  /* =========================
     ITEMS (legacy content blocks)
     ========================= */
  .item {
    margin-bottom: 24px;
    transition: transform 0.15s ease;
  }
  
  .item:hover {
    transform: translateY(-2px);
  }
  
  .item h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .item p {
    max-width: 600px;
  }
  
  /* legacy item links */
  .item a {
    text-decoration: none;
    color: #eaeaea;
    border-bottom: 1px solid #444;
    padding-bottom: 2px;
  }
  
  .item a:hover {
    border-color: #ffffff;
  }
  
  /* =========================
     NAVBAR
     ========================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  
    display: flex;
    justify-content: space-between;
    align-items: center;
  
    padding: 24px 80px;
    background-color: var(--bg);
    border-bottom: 1px solid var(--divider);
  
    z-index: 100;
  }
  
  .nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  
  .nav-right a {
    margin-left: 24px;
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
  }
  
  .nav-right a:hover {
    color: var(--text);
    transform: translateY(-1px);
  }
  
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
  }
  
  .nav-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    margin-right: 24px;
    transition: transform 0.2s ease;
  }
  
  .nav-avatar:hover {
    transform: scale(1.05);
  }
  
  .navbar a {
    text-decoration: none;
  }
  .navbar a:hover,
  .navbar a:focus,
  .navbar a:active {
    text-decoration: none;
  }
  
  /* Resume pill button */
  .nav-resume-btn {
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  }
  
  .nav-resume-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  
  body[data-theme="dark"] .nav-resume-btn {
    background: #4e64ac;
    color: #000;
  }
  body[data-theme="dark"] .nav-resume-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
  
  body[data-theme="light"] .nav-resume-btn {
    background: #a668f7;
    color: #ffffff;
    border: 1px solid rgba(42, 27, 61, 0.25);
  }
  body[data-theme="light"] .nav-resume-btn:hover {
    box-shadow: 0 6px 18px rgba(42, 27, 61, 0.25);
  }
  
  /* =========================
     AVATAR MODAL
     ========================= */
  .avatar-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
  }
  
  .avatar-modal.active {
    display: block;
  }
  
  .avatar-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
  }
  
  .avatar-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    background: transparent;
    animation: avatarIn 0.25s ease forwards;
  }
  
  .avatar-content img {
    width: 360px;
    max-width: 90vw;
    border-radius: 2px;
    display: block;
  }
  
  .avatar-close {
    position: fixed;
    top: 5px;
    right: 36px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.85;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  
  .avatar-close:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  @keyframes avatarIn {
    to {
      transform: translate(-50%, -50%) scale(1.5);
    }
  }
  
  /* =========================
     HAMBURGER MENU
     (supports both ☰ text button and span-lines button)
     ========================= */
     .menu-btn {
      width: 44px;
      height: 40px; /* visually matches resume button */
      background: transparent;
      border: none;
      cursor: pointer;
    
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    
      padding: 0;
      margin-left: 16px;
    }
    
    .menu-btn span {
      width: 22px;
      height: 2px;
      background-color: var(--text);
      border-radius: 2px;
    }
    
    .menu-btn span:not(:last-child) {
      margin-bottom: 5px;
    }
    
  
  /* Dropdown menu */
  .menu {
    position: absolute;
    top: 52px;
    right: 0;
    width: 210px;
  
    background: var(--menu-bg);
    border: 1px solid var(--menu-border);
    border-radius: 14px;
  
    padding: 8px;
    display: none;
  
    backdrop-filter: blur(10px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    transform-origin: top right;
    animation: menuIn 0.18s ease forwards;
    z-index: 999;
  }
  
  .menu.open {
    display: block;
  }
  
  @keyframes menuIn {
    from {
      transform: scale(0.98);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .menu-item {
    width: 100%;
    text-align: left;
    padding: 10px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s ease;
  }
  
  .menu-item:hover {
    background: rgba(127, 127, 127, 0.14);
  }
  
  .menu-item-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .submenu {
    display: none;
    padding-left: 6px;
    margin-top: 4px;
  }
  
  .submenu.open {
    display: block;
  }
  
  .menu-caret {
    opacity: 0.7;
  }
  
  /* =========================
     CARDS (home lists)
     ========================= */
  .card-list {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  
  .card {
    display: block;
    text-decoration: none;
    color: var(--text);
  
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 16px 18px;
  
    background: rgba(127, 127, 127, 0.05);
    transition: transform 0.22s ease, border 0.22s ease, background 0.22s ease;
  }
  
  .card:hover {
    transform: translateY(-2px);
    border-color: var(--divider-hover);
    background: rgba(127, 127, 127, 0.07);
  }
  
  .card-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 6px;
    color: var(--text);
  }
  
  .card-desc {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.5;
  }
  
  .card-meta {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.9;
  }
  
  /* =========================
     REVEAL ANIMATION
     ========================= */
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .reveal.reveal-show {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* =========================
     DETAIL PAGES
     ========================= */
  .detail {
    padding-top: 20px;
  }
  
  .detail-header {
    margin-bottom: 18px;
  }
  
  /* your custom spacing tweaks */
  .detail-header {
    margin-top: -50px;
  }
  .back-link {
    margin-bottom: 30px;
  }
  
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .back-link:hover {
    color: var(--text);
    transform: translateY(-1px);
  }
  
  .detail-title {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 10px;
    color: var(--text);
    letter-spacing: 0.2px;
  }
  
  .detail-tagline {
    margin: 0;
    color: var(--muted);
    max-width: 760px;
    font-size: 14px;
    line-height: 1.6;
  }
  
  .detail-grid {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch; /* important: prevents “shrink-wrap” issues */
  }
  
  .detail-card {
    border: 1px solid var(--divider);
    border-radius: 16px;
    padding: 16px 18px;
    background: rgba(127, 127, 127, 0.05);
  }
  
  .detail-card h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 15px;
  }
  
  .detail-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
  }
  
  .detail-card ul {
    margin: 8px 0 0 18px;
    color: var(--muted);
    font-size: 13.5px;
    line-height: 1.6;
  }
  
  .pill-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pill {
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--divider);
    color: var(--text);
    font-size: 12px;
    opacity: 0.9;
  }
  
  /* Common button row on detail pages */
  .detail-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
  }
  
  /* Paper page specific (your current HTML uses .paper-download) */
  /* Paper PDF buttons – grouped & centered */
  .paper-download {
    display: inline-flex;     /* shrink to content */
    gap: 8px;                 /* controls closeness */
    margin: 20px auto 0;      /* centers the group */
  }

  
  .paper-download .btn-primary {
    padding: 12px 22px;
  }
  
  /* =========================
     FEEDBACK MODAL
     ========================= */
  .feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
  }
  
  .feedback-modal.active {
    display: block;
  }
  
  .feedback-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
  }
  
  .feedback-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.98);
    width: min(520px, 92vw);
    border-radius: 18px;
    border: 1px solid var(--divider);
    background: var(--bg);
    padding: 18px 18px 16px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.4);
    animation: feedbackIn 0.18s ease forwards;
  }
  
  @keyframes feedbackIn {
    to {
      transform: translate(-50%, -50%) scale(1);
    }
  }
  
  .feedback-close {
    position: fixed;
    top: 24px;
    right: 28px;
    background: none;
    border: none;
    color: var(--text);
  }
  
  .feedback-close:hover {
    opacity: 1;
    transform: scale(1.05);
  }
  
  .feedback-title {
    margin: 0 0 6px;
    color: var(--text);
    font-size: 18px;
  }
  
  .feedback-subtitle {
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 13px;
  }
  
  .feedback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .f-label {
    font-size: 12px;
    color: var(--muted);
  }
  
  .f-label.required::after {
    content: " *";
    color: #ff4d4f;
    font-weight: 600;
  }
  
  .f-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--divider);
    background: rgba(127, 127, 127, 0.06);
    padding: 10px 12px;
    color: var(--text);
    outline: none;
  }
  
  .f-input:focus {
    border-color: var(--divider-hover);
  }
  
  .f-textarea {
    min-height: 110px;
    resize: vertical;
  }
  
  .feedback-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
  }
  
  /* Cancel button transparent like submit */
  .feedback-actions .btn-outline {
    background: transparent;
    color: var(--text);
  }
  
  .feedback-status {
    margin: 6px 0 0;
    font-size: 12px;
    color: var(--muted);
  }
  
  /* =========================
     TOAST
     ========================= */
  .toast {
    position: fixed;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    padding: 10px 16px;
    border-radius: 999px;
  
    background: var(--menu-bg);
    border: 1px solid var(--divider);
    color: var(--text);
    font-size: 13px;
  
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1100;
  
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  
  .toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  
  /* =========================
     GALLERY GRID (Projects / Papers pages)
     ========================= */
  .gallery-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .gallery-card {
    display: block;
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid var(--divider);
    background: rgba(127, 127, 127, 0.05);
  
    text-decoration: none;
    color: var(--text);
  
    transition: transform 0.22s ease, border 0.22s ease, background 0.22s ease;
  }
  
  .gallery-card:hover {
    transform: translateY(-2px);
    border-color: var(--divider-hover);
    background: rgba(127, 127, 127, 0.08);
  }
  
  .gallery-card h3 {
    margin: 0 0 8px;
    font-size: 18px;
  }
  
  .gallery-card p {
    margin: 0 0 12px;
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
  }
  
  .gallery-meta {
    font-size: 12px;
    color: var(--muted);
    opacity: 0.9;
  }
  
  @media (max-width: 1024px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 640px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* =========================
     RESUME PAGE
     ========================= */
  .resume-page {
    padding-top: 10px;
  }
  
  .resume-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    margin-top: 30px;
  }
  
  .resume-image {
    width: 820px;
    max-width: 92vw;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: #fff;
  }
  
  .resume-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  
  @media (max-width: 768px) {
    .resume-image {
      width: 100%;
    }
  }
  
  /* =========================
     FOOTER (stable, no duplicates)
     ========================= */
  .site-footer {
    margin-top: 30px;          /* reduced from 70 while keeping same feel */
    padding: 44px 0;
    border-top: 1px solid var(--divider);
    position: relative;
  }
  
  /* Layout: left + absolute centered meta + right */
  .footer-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    position: relative;
  }
  
  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 80px;
  }
  
  .footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 80px;
  }
  
  .footer-title {
    margin: 0;
    font-size: 22px;
    color: var(--text);
    letter-spacing: 0.2px;
  }
  
  /* Social icons */
  .footer-socials {
    display: flex;
    gap: 16px;
    margin: 12px 0 20px;
  }
  
  .footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--divider);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
  }
  
  .footer-socials a:hover {
    transform: translateY(-2px);
    border-color: var(--divider-hover);
  }
  
  /* Feedback as plain text */
  .footer-feedback-btn {
    background: none;
    border: none;
    padding: 2px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text);
    opacity: 0.75;
    cursor: pointer;
  }
  
  .footer-feedback-btn:hover {
    opacity: 1;
    text-decoration: underline;
  }
  
  /* Center meta block pinned to page center */
  .footer-center {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  
  .footer-meta {
    border: 1px solid var(--divider);
    border-radius: 14px;
    padding: 14px 16px;
    width: 360px;
    max-width: 90vw;
    background: rgba(127, 127, 127, 0.06);
  }
  
  .footer-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 6px 0;
  }
  
  .footer-meta-label {
    color: var(--muted);
    font-size: 13px;
  }
  
  .footer-meta-value {
    color: var(--text);
    font-size: 13px;
    text-align: right;
    opacity: 0.92;
  }
  
  /* Logo */
  .footer-logo {
    max-width: 150px;
    width: 150px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
  }
  
  /* Copyright */
  .footer-bottom {
    margin-top: 28px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
  }
  
  /* Footer logo theme switch (JS-based via #footerLogo, but keep class swap support too) */
  .footer-right .logo-dark {
    display: block !important;
  }
  .footer-right .logo-light {
    display: none !important;
  }
  body[data-theme="light"] .footer-right .logo-dark {
    display: none !important;
  }
  body[data-theme="light"] .footer-right .logo-light {
    display: block !important;
  }
  
  /* Mobile footer */
  @media (max-width: 720px) {
    .footer-grid {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-center {
      position: static;
      transform: none;
      margin: 14px 0 0;
      padding-left: 80px;
      justify-content: flex-start;
    }
  
    .footer-right {
      width: 100%;
      justify-content: flex-start;
      padding-left: 80px;
      padding-right: 0;
      margin-top: 14px;
    }
  }
  
  /* =========================
     ICON MASKS
     ========================= */
  .icon {
    width: 18px;
    height: 18px;
    background-color: var(--text);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
  
  .icon.insta {
    mask-image: url("/static/icons/instagram.svg");
    -webkit-mask-image: url("/static/icons/instagram.svg");
  }
  
  .icon.twitter {
    mask-image: url("/static/icons/twitter.svg");
    -webkit-mask-image: url("/static/icons/twitter.svg");
  }
  
  .icon.discord {
    mask-image: url("/static/icons/youtube.svg");
    -webkit-mask-image: url("/static/icons/youtube.svg");
  }
  
  .icon.pinterest {
    mask-image: url("/static/icons/pin.svg");
    -webkit-mask-image: url("/static/icons/pin.svg");
  }
  .nav-left {
    display: flex;
    align-items: center;
  }
  
  /* Avatar → Name (20px) */
  .nav-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  /* Name → Divider (35px) */
  .nav-name {
    margin-right: 35px;
    text-decoration: none;
    color: var(--text);
  }
  
  /* Divider styling */
  .nav-divider {
    width: 1px;
    height: 34px; /* same as avatar */
    background-color: var(--muted);
    opacity: 0.6;
    margin-right: 30px;
  }
  
  /* Projects ↔ Research spacing */
  .nav-link {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
  }
  
  .nav-link + .nav-link {
    margin-left: 28px;
  }
  
  .nav-link:hover {
    color: var(--text);
  }
  