  body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
  }
  
  #hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #111 0%, #1b1b1b 100%);
    text-align: center;
    padding: 0 2rem;
  }
  
  #hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #faa7d7;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 1.25rem;
    color: #bbbbbb;
    max-width: 600px;
  }
  
  #hero .cta {
    margin-top: 2rem;
  }
  
  #hero .cta a {
    text-decoration: none;
    padding: 0.8rem 2rem;
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 30px;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
  }
  
  #hero .cta a:hover {
    background-color: #f4a4cc;
    color: #0d0d0d;
  }
  
  .section {
    max-width: 1100px;
    margin: auto;
    padding: 4rem 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  
    text-shadow:
      1px 1px 3px rgba(255, 255, 255, 0.1),
      2px 2px 6px rgba(255, 255, 255, 0.08),
      0 2px 12px rgba(255, 255, 255, 0.06);
  
    transform: perspective(800px) rotateX(1deg);
    animation: floatTitle 4s ease-in-out infinite alternate;
  }
  
  
  .project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 182, 193, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    mask: 
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    z-index: -1;
  }
  .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(255, 105, 180, 0.2);
  }
  
  .project-card h3 {
    color: #ffffff;
  }
  
  .project-card p {
    color: #dddddd;
  }
  
  .project-card a {
    color: #82cfff;
    text-decoration: none;
  }
  .skills-category {
    margin-bottom: 2rem;
  }
  
  .skills-category h3 {
    color: #ffb6c1;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  
  .skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .skill {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.2rem;
    border: 1px solid rgba(255, 182, 193, 0.15);
    border-radius: 12px;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 10px rgba(255, 192, 203, 0.1);
    backdrop-filter: blur(6px);
    transition: transform 0.3s;
  }
  .skill::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    mask: 
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    pointer-events: none;
    z-index: -1;
  }
  .skill:hover {
    transform: scale(1.05);
  }
  #fairy-dust-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 998;
  }
  #fairy-dust-background {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
  }
  #contact {
    background-color: rgba(255, 255, 255, 0.02);
    width: 100vw;                
    margin: 0;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-sizing: border-box;
    text-align: center;
    max-width: none !important;
  }
  
  .contact-details p {
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  
  .contact-details a {
    color: #ff9edb;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-details a:hover {
    color: #ffc0f2;
  }
  @keyframes floatTitle {
    0% {
      transform: perspective(800px) translateY(0) rotateX(1deg);
    }
    100% {
      transform: perspective(800px) translateY(-6px) rotateX(3deg);
    }
  }
