
body {
   margin: 0;
   font-family: Arial, sans-serif;
   background-color: #0a192f;
   color: #e0e0e0;
 }
 
 .container {
   display: flex;
   height: 100vh;
   overflow: hidden;
 }
 
 .sidebar {
   width: 450px;
   padding: 48px 32px;
   background-color: #0a192f;
   border-right: 1px solid #334155;
   display: flex;
   flex-direction: column;
 }
 
 .sidebar h1 {
   font-size: 3rem;
   color: white;
   margin-bottom: 0.25rem;
 }
 
 .sidebar h2 {
   font-size: 1.5rem;
   margin-bottom: 1.25rem;
 }
 
 .sidebar p {
   font-size: 1rem;
   margin-bottom: 1.5rem;
 }
 
 .sidebar nav ul {
   list-style: none;
   padding: 0;
   margin: 0;
 }
 
 .sidebar nav li button {
   margin: 0.5rem 0;
   font-size: 1rem;
 }
 
 .sidebar nav button {
   background: none;
   border: none;
   color: #94a3b8;
   font-size: 1rem;
   cursor: pointer;
   padding-left: 0;
   transition: color 0.2s;
 }
 
 .sidebar nav button.active {
   color: white;
   font-weight: bold;
   border-left: 3px solid #5eead4;
   padding-left: 10px;
 }
 
 .resume-btn {
   margin-top: 2.5rem;
   padding: 10px 16px;
   border: 1px solid white;
   border-radius: 8px;
   width: fit-content;
   color: white;
   text-decoration: none;
   text-align: center;
   font-size: 0.95rem;
 }
 
 .socials {
   display: flex;
   gap: 12px;
   margin-top: auto;
   font-size: 0.9rem;
 }
 
 .socials a {
   color: #94a3b8;
   text-decoration: none;
 }
 
 .socials a:hover {
   color: white;
 }
 
 .main-content {
   flex: 1;
   overflow-y: auto;
   padding: 60px 80px;
 }
 
 .section {
   margin-bottom: 100px;
 }
 
 .section h1 {
   margin-bottom: 12px;
   font-size: 1.3rem;
   font-weight: bold;
 }
 
 .bio {
   white-space: pre-wrap;
   text-indent: 0;
   line-height: 1.6;
   margin-top: 20px;
 }
 
 /* .cursor-spotlight {
   position: fixed;
   top: 0;
   left: 0;
   pointer-events: none;
   width: 100vw;
   height: 100vh;
   z-index: 9999;
   background: radial-gradient(
      circle 250px at var(--x, 50%) var(--y, 50%),
      rgba(94, 234, 212, 0.06),   
      rgba(10, 25, 47, 0.5) 80%
    );
   mix-blend-mode: overlay;
   transition: background-position 0.1s ease;
 } */

 .project-page {
   padding: 60px 40px;
   max-width: 900px;
   margin: auto;
 }
 
 .project-title {
   font-size: 2rem;
   margin-bottom: 20px;
   color: white;
 }
 
 .project-github {
   display: inline-block;
   margin: 20px 0;
   font-size: 1.1rem;
   color: #5eead4;
   text-decoration: none;
 }
 
 .project-github:hover {
   text-decoration: underline;
 }
 
 .project-description {
   line-height: 1.7;
   font-size: 1rem;
   color: #cbd5e1;
   white-space: pre-wrap;
 }
 
 .carousel {
   display: flex;
   overflow-x: auto;
   gap: 12px;
   margin-bottom: 24px;
 }
 
 .carousel-img {
   height: 180px;
   border-radius: 8px;
   object-fit: contain;
 }

 @media (max-width: 768px) {
   .container {
     flex-direction: column;
     height: auto;
   }
 
   .sidebar {
     width: 100%;
     padding: 20px 16px;
     border-right: none;
     border-bottom: 1px solid #334155;
     flex-direction: column;
     align-items: flex-start;
     gap: 6px;
   }
 
   .sidebar h1 {
     font-size: 1.25rem;
     margin: 0;
   }
 
   .sidebar h2,
   .sidebar p,
   .socials {
     display: none;
   }
 
   .resume-btn {
     margin: 0;
     padding: 6px 12px;
     font-size: 0.85rem;
     border: 1px solid #5eead4;
     color: #5eead4;
     border-radius: 6px;
     background: transparent;
   }
 
   .sidebar nav ul {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin: 0px 0 0;
     padding: 0;
   }
 
   .sidebar nav li {
     margin: 0;
   }
 
   .sidebar nav button {
     font-size: 0.9rem;
     padding: 4px 10px;
     border-left: none;
   }
 
   .main-content {
     padding: 24px 16px;
   }
 
   .section h1 {
     font-size: 1.1rem;
   }
 
   .project-page {
     padding: 24px 16px;
   }
 
   .carousel-img {
     height: 160px;
   }
   .section {
      margin-bottom: 50px;
    }
 }
 