﻿    /* Root colors */
    :root {
      --bg-primary: #0a0e27;
      --bg-secondary: #151932;
      --bg-tertiary: #1e2140;
      --text-primary: #e6e6e6;
      --text-secondary: #a0a0a0;
      --accent-primary: #64ffda;
      --accent-secondary: #f06292;
      --code-green: #7ee787;
      --code-blue: #79c0ff;
    }

    /* Base */
    html,
    body {
      height: 100%;
    }

    body {
      font-family: ui-monospace, monospace, monospace;
      background: var(--bg-primary);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Cursor */
    .cursor,
    .cursor-follower {
      position: fixed;
      transform: translate(-50%, -50%);
      pointer-events: none;
      border-radius: 50%;
      z-index: 9999;
      mix-blend-mode: difference;
    }

    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid var(--accent-primary);
      transition: all 0.1s ease;
    }

    .cursor-follower {
      width: 40px;
      height: 40px;
      background: rgba(100, 255, 218, 0.1);
      transition: all 0.25s ease;
      z-index: 9998;
    }

    /* Gradient text */
    .gradient-text {
      background: linear-gradient(270deg, #b6e5f2, #7daeeb, #7dcceb);
      background-size: 600% 600%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      animation: auroraShift 8s ease infinite;
    }

    @keyframes auroraShift {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* typing cursor */
    .typing-cursor {
      display: inline-block;
      width: 3px;
      height: 1.5rem;
      background: var(--code-green);
      animation: blink 1s steps(2) infinite;
    }

    @keyframes blink {

      0%,
      50% {
        opacity: 1;
      }

      51%,
      100% {
        opacity: 0;
      }
    }

    /* Particles */
    .particle {
      position: absolute;
      background: var(--accent-primary);
      border-radius: 50%;
      opacity: 0.3;
      animation: float 15s linear infinite;
    }

    @keyframes float {
      0% {
        transform: translateY(100vh) translateX(0);
      }

      100% {
        transform: translateY(-100px) translateX(100px);
      }
    }

    /* Loader */
    #loader {
      position: fixed;
      inset: 0;
      background: var(--bg-primary);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 50;
      transition: opacity 0.5s;
    }

    .loader-progress {
      height: 100%;
      background: var(--accent-primary);
      width: 0;
      animation: loading 2s ease-in-out forwards;
    }

    @keyframes loading {
      0% {
        width: 0;
      }

      100% {
        width: 100%;
      }
    }

    /* Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }

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

    ::-webkit-scrollbar-thumb {
      background: var(--accent-primary);
      border-radius: 4px;
    }

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

    /* Nav hover underline */
    .nav-link {
      position: relative;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent-primary);
      transition: width 0.3s;
    }

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

    /* Mobile menu */
    .mobile-menu {
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    /* mask */
    .mask-custom {
      -webkit-mask-image: url("./images/mask.svg");
      mask-image: url("./images/mask.svg");
      -webkit-mask-repeat: no-repeat;
      mask-repeat: no-repeat;
      -webkit-mask-size: contain;
      mask-size: contain;
      -webkit-mask-position: center;
      mask-position: center;
    }

    /* Simple responsive helpers (kept minimal to preserve Tailwind use) */
    section {
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Scroll Animations */
    .scroll-fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .scroll-slide-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-slide-left.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .scroll-slide-right {
      opacity: 0;
      transform: translateX(50px);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-slide-right.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .scroll-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-scale.visible {
      opacity: 1;
      transform: scale(1);
    }

    .scroll-rotate {
      opacity: 0;
      transform: rotate(5deg) scale(0.9);
      transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .scroll-rotate.visible {
      opacity: 1;
      transform: rotate(0) scale(1);
    }

    .stagger-animation>* {
      opacity: 0;
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .stagger-animation.visible>* {
      opacity: 1;
      transform: translateY(0);
    }

    .stagger-animation.visible>*:nth-child(1) {
      transition-delay: 0.1s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(2) {
      transition-delay: 0.2s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(3) {
      transition-delay: 0.3s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(4) {
      transition-delay: 0.4s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(5) {
      transition-delay: 0.5s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(6) {
      transition-delay: 0.6s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(7) {
      transition-delay: 0.6s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(8) {
      transition-delay: 0.6s;
      transform: translateY(20px);
    }

    .stagger-animation.visible>*:nth-child(9) {
      transition-delay: 0.6s;
      transform: translateY(20px);
    }

    /* Project card hover effect */
    .project-card {
      overflow: hidden;
    }

    .project-card img {
      transition: transform 0.5s ease;
    }

    .project-card:hover img {
      transform: scale(1.05);
    }

    /* Skill item animation */
    .skill-item {
      transition: transform 0.3s ease;
    }

    .skill-item:hover {
      transform: translateY(-5px);
    }

    /* Contact item animation */
    .contact-item {
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .contact-item:hover {
      transform: translateY(-5px);
    }

    .circle {
      background: plum;

      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      overflow: hidden;
      animation: morph 10s linear infinite;
    }

    .circle img {
      width: 100%;
    }

    @keyframes morph {

      0%,
      100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
      }

      34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
      }

      67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
      }
    }

    /* Utilities used inline in markup preserved in style for minify */
    /* Modal */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10, 14, 39, 0.8);
      backdrop-filter: blur(4px);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .modal-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-content {
      background: var(--bg-secondary);
      border: 1px solid rgba(100, 255, 218, 0.2);
      border-radius: 12px;
      width: 90%;
      max-width: 600px;
      max-height: 80vh;
      overflow-y: auto;
      transform: translateY(20px) scale(0.95);
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .modal-overlay.active .modal-content {
      transform: translateY(0) scale(1);
    }
