
    :root {
      --primary: #4ade80;
      --secondary: #3b82f6;
      --accent: #f59e0b;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #0f172a;
      color: #f8fafc;
      overflow-x: hidden;
    }

    .blinking-cursor {
      animation: blink 1s infinite;
    }

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

    .animate-glow {
      animation: glow 2s infinite alternate;
    }

    @keyframes glow {
      0% { text-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
      100% { text-shadow: 0 0 20px var(--secondary), 0 0 40px var(--secondary); }
    }

    .animate-float {
      animation: float 6s ease-in-out infinite;
    }

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

    .card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* 3D Cube Background */
    #cube-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      perspective: 1000px;
      z-index: -1;
    }

    #cube {
      width: 200px;
      height: 200px;
      position: absolute;
      top: 50%;
      left: 50%;
      transform-style: preserve-3d;
      animation: rotate 10s infinite linear;
    }

    #cube div {
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    #front  { transform: translateZ(100px); }
    #back   { transform: rotateY(180deg) translateZ(100px); }
    #right  { transform: rotateY(90deg) translateZ(100px); }
    #left   { transform: rotateY(-90deg) translateZ(100px); }
    #top    { transform: rotateX(90deg) translateZ(100px); }
    #bottom { transform: rotateX(-90deg) translateZ(100px); }

    @keyframes rotate {
      0% { transform: rotateX(0) rotateY(0); }
      100% { transform: rotateX(360deg) rotateY(360deg); }
    }

    .card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    button, .social-link {
      transition: all 0.3s ease;
    }
    
    button:hover, .social-link:hover {
      transform: scale(1.05);
    }
    @media (max-width: 768px) {
      #mobileMenu {
        width: 40%;
        height: 40%;
      }
  
      #mobileMenu.open {
        transform: translateX(0);
      }
  
      #menuButton {
        display: block;
      }
  
      .nav-link {
        font-size: 1.25rem;
      }
    }

    .progress-bar {
      background: rgba(227, 15, 15, 0.1);
      border-radius: 9999px;
      overflow: hidden;
    }
    
    .progress-bar-fill {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      height: 100%;
      border-radius: 9999px;
      transition: width 0.5s ease;
    }

    .social-link {
      position: relative;
      color: #bbb;
      transition: color 0.3s, text-shadow 0.3s;
    }
  
    .social-link:hover {
      color: #00ffff; /* Neon Cyan */
      text-shadow: 0 0 8px #00ffff, 0 0 16px #00ffff;
    }
  
    .social-link:nth-child(2):hover {
      color: #0a66c2; /* LinkedIn Blue */
      text-shadow: 0 0 8px #0a66c2, 0 0 16px #0a66c2;
    }
  
    .social-link:nth-child(3):hover {
      color: #1da1f2; /* Twitter Blue */
      text-shadow: 0 0 8px #1da1f2, 0 0 16px #1da1f2;
    }
  
    .social-link:nth-child(4):hover {
      color: #ff4757; /* Email Red */
      text-shadow: 0 0 8px #ff4757, 0 0 16px #ff4757;
    }
    /* GitHub - Cyan Neon */
  .social-link:nth-child(1):hover {
    color: #00ffff;
    box-shadow: 0 0 12px #00ffff, 0 0 24px #00ffff;
    border-color: #00ffff;
  }

  /* LinkedIn - Blue Neon */
  .social-link:nth-child(2):hover {
    color: #0a66c2;
    box-shadow: 0 0 12px #0a66c2, 0 0 24px #0a66c2;
    border-color: #0a66c2;
  }

  /* Twitter - Light Blue Neon */
  .social-link:nth-child(3):hover {
    color: #1da1f2;
    box-shadow: 0 0 12px #1da1f2, 0 0 24px #1da1f2;
    border-color: #1da1f2;
  }

  /* Facebook - Electric Blue Neon */
  .social-link:nth-child(4):hover {
    color: #1877f2;
    box-shadow: 0 0 12px #1877f2, 0 0 24px #1877f2;
    border-color: #1877f2;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes float-delay {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(20px);
    }
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  .animate-float-delay {
    animation: float-delay 6s ease-in-out infinite;
  }
  
  @keyframes fade-in {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-fade-in {
    animation: fade-in 1s ease-out forwards;
  }



  .node-connection {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  .node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(74, 222, 128, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
    animation: pulse 3s infinite alternate;
  }
  
  .connection-line {
    stroke: rgba(74, 222, 128, 0.3);
    stroke-width: 1;
    stroke-dasharray: 5;
    animation: dash 30s linear infinite;
  }
  
  @keyframes dash {
    to {
      stroke-dashoffset: 1000;
    }
  }
  
  @keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
  }
  
  .tech-badge {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    display: flex;
    gap: 0.5rem;
    font-family: monospace;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
  }
  
  .tech-badge:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(17, 24, 39, 0.9);
  }
  
  .modern-cta {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-family: monospace;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-bottom-width: 2px;
  }
  
  .modern-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  
  .terminal-window {
    transition: all 0.3s ease;
  }
  
  .terminal-window:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  }

  .terminal-card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  
  .terminal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    border-color: rgba(34, 211, 238, 0.3);
  }
  
  .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
  }
  
  table th {
    font-weight: 500;
  }
  
  table td {
    vertical-align: top;
  }
  
  .language-json {
    line-height: 1.6;
  }

  .skill-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .skill-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  
  .skill-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    position: relative;
  }
  
  .skill-progress {
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(55, 65, 81, 0.5);
    border-radius: 3px;
    overflow: hidden;
  }
  
  .skill-progress-bar {
    height: 100%;
    transition: width 1s ease;
  }
  
  .skill-card:hover .skill-progress-bar {
    animation: pulseWidth 1.5s infinite alternate;
  }
  
  @keyframes pulseWidth {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
  }
  
  .connection-line {
    stroke: rgba(34, 211, 238, 0.1);
    stroke-width: 1;
    stroke-dasharray: 5;
    animation: dash 30s linear infinite;
  }
  
  @keyframes dash {
    to {
      stroke-dashoffset: 1000;
    }
  }
  .project-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  
  .project-image-container {
    position: relative;
    overflow: hidden;
    height: 180px;
  }
  
  .project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .project-card:hover .project-image {
    transform: scale(1.05);
  }
  
  .project-tech-badges {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  }
  
  .tech-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-family: monospace;
    font-weight: 500;
  }
  
  .tech-badge.react { background: rgba(97, 218, 251, 0.2); color: #61dafb; border: 1px solid rgba(97, 218, 251, 0.3); }
  .tech-badge.node { background: rgba(140, 200, 75, 0.2); color: #8cc84b; border: 1px solid rgba(140, 200, 75, 0.3); }
  .tech-badge.express { background: rgba(255, 255, 255, 0.2); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
  .tech-badge.mysql { background: rgba(0, 117, 143, 0.2); color: #00758f; border: 1px solid rgba(0, 117, 143, 0.3); }
  .tech-badge.html { background: rgba(227, 79, 38, 0.2); color: #e34f26; border: 1px solid rgba(227, 79, 38, 0.3); }
  .tech-badge.css { background: rgba(21, 114, 182, 0.2); color: #1572b6; border: 1px solid rgba(21, 114, 182, 0.3); }
  .tech-badge.js { background: rgba(247, 223, 30, 0.2); color: #f7df1e; border: 1px solid rgba(247, 223, 30, 0.3); }
  .tech-badge.api { background: rgba(106, 190, 205, 0.2); color: #6abecd; border: 1px solid rgba(106, 190, 205, 0.3); }
  .tech-badge.tailwind { background: rgba(6, 182, 212, 0.2); color: #06b6d4; border: 1px solid rgba(6, 182, 212, 0.3); }
  .tech-badge.bootstrap { background: rgba(121, 82, 179, 0.2); color: #7952b3; border: 1px solid rgba(121, 82, 179, 0.3); }
  
  .project-details {
    padding: 1.25rem;
  }
  
  .project-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    font-family: monospace;
  }
  
  .project-description {
    color: rgba(156, 163, 175);
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .project-footer {
    border-top: 1px solid rgba(55, 65, 81, 0.5);
    padding-top: 0.75rem;
  }
  
  .project-link {
    font-size: 0.75rem;
    display: inline-block;
    transition: color 0.2s ease;
  }
  
  .project-link:hover {
    color: #06b6d4;
  }
  
  .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
  }

 
  .blog-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
  }
  
  .blog-card.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  @media (max-width: 768px) {
    .blog-card.featured {
      grid-template-columns: 1fr;
    }
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
  
  .blog-image-container {
    position: relative;
    overflow: hidden;
    height: 200px;
  }
  
  .blog-card.featured .blog-image-container {
    height: auto;
  }
  
  .blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .blog-card:hover .blog-image {
    transform: scale(1.05);
  }
  
  .blog-featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
  
  .blog-content {
    padding: 1.5rem;
  }
  
  .blog-card.featured .blog-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    font-family: monospace;
  }
  
  .blog-card.featured .blog-title {
    font-size: 1.5rem;
  }
  
  .blog-excerpt {
    color: rgba(156, 163, 175);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  
  .blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
  }
  
  .blog-tag {
    font-size: 0.65rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-family: monospace;
    font-weight: 500;
  }
  
  .blog-tag.react { background: rgba(97, 218, 251, 0.2); color: #61dafb; border: 1px solid rgba(97, 218, 251, 0.3); }
  .blog-tag.javascript { background: rgba(247, 223, 30, 0.2); color: #f7df1e; border: 1px solid rgba(247, 223, 30, 0.3); }
  .blog-tag.state { background: rgba(76, 175, 80, 0.2); color: #4caf50; border: 1px solid rgba(76, 175, 80, 0.3); }
  .blog-tag.css { background: rgba(21, 114, 182, 0.2); color: #1572b6; border: 1px solid rgba(21, 114, 182, 0.3); }
  .blog-tag.webdev { background: rgba(255, 255, 255, 0.2); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
  .blog-tag.tailwind { background: rgba(6, 182, 212, 0.2); color: #06b6d4; border: 1px solid rgba(6, 182, 212, 0.3); }
  .blog-tag.vite { background: rgba(100, 108, 255, 0.2); color: #646cff; border: 1px solid rgba(100, 108, 255, 0.3); }
  .blog-tag.async { background: rgba(255, 152, 0, 0.2); color: #ff9800; border: 1px solid rgba(255, 152, 0, 0.3); }
  
  .blog-link {
    font-size: 0.875rem;
    display: inline-block;
    transition: color 0.2s ease;
    font-family: monospace;
  }
  
  .blog-link:hover {
    color: #06b6d4;
  }
  
  .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
  }


  .social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    transform: translateY(-3px);
  }
  
  .node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(34, 211, 238, 0.6);
    border-radius: 50%;
    animation: pulse 3s infinite alternate;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.3); opacity: 1; }
  }
  
  input, textarea {
    transition: all 0.2s ease;
  }
  
  input:focus, textarea:focus {
    box-shadow: 0 0 0 1px rgba(34, 211, 238, 0.5);
  }