 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&amp;family=Space+Grotesk:wght@500;600;700&amp;display=swap');
        
        body {
            font-family: 'Inter', system_ui, sans-serif;
        }
        .heading-font {
            font-family: 'Space Grotesk', sans-serif;
        }

        .glass {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(32px);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .hero-bg {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .nav-link {
            position: relative;
            color: #111827;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -6px;
            left: 0;
            background: #000;
            transition: all 0.4s ease;
        }
        .nav-link:hover:after {
            width: 100%;
        }

        .project-card {
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .project-card:hover {
            transform: translateY(-18px);
            box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.18);
        }

        .skill-bar {
            height: 5px;
            background: linear-gradient(to right, #111827, #374151);
            border-radius: 9999px;
        }

        .stat-number {
            font-size: 3.5rem;
            line-height: 1;
            font-weight: 600;
        }
         #flashMsg {
    position: fixed;
    top: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  #flashMsg.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
  }
  #flashMsg.success {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid rgba(0,0,0,0.08);
  }
  #flashMsg.error {
    background: #fff0f0;
    color: #c0392b;
    border: 1.5px solid rgba(192,57,43,0.2);
  }
  .flash-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  #flashMsg.success .flash-icon { background: #000; color: #fff; }
  #flashMsg.error   .flash-icon { background: #c0392b; color: #fff; }
  .flash-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 3px;
    z-index: 10000;
    background: #000;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform 3s linear;
  }
  .flash-bar.run { transform: scaleX(1); }
  .flash-bar.error-bar { background: #c0392b; }


   #monthScroller {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    #monthScroller::-webkit-scrollbar {
        display: none;
    }
    #monthScroller {
        mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }