
    ::-webkit-scrollbar {
      width: 8px;               
      background-color: #1a001c; 
    }
    
    ::-webkit-scrollbar-track {
      background-color: #1a001c; 
      border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(to bottom, #9a00ff, #6f0588); 
      border-radius: 4px;        
      border: 1px solid #2b0347; 
    }
    
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(to bottom, #da70ff, #9a00ff);
    }
    html, body {
      margin: 0;
      padding: 0;
      min-height: 100vh;
      font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
    }
    body {

      position: relative;
      z-index: 0;
      margin: 0;
      padding: 0;
      color: #fff;
      scrollbar-width: thin;
      scrollbar-color: #9a00ff #1a001c;

      background: radial-gradient(circle, #2b0347 0%, #000 80%);
      background-image: url(""), radial-gradient(circle, #2b0347 0%, #000 80%);
      background-repeat: repeat, no-repeat;
      background-size: 200px 200px, cover;
      background-position: 0 0, center;
      background-blend-mode: multiply;
    }

    .animation-container {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; 
      overflow: hidden;
      z-index: 0;
    }


    .container {
      position: relative;
      max-width: 400px;
      margin: 0 auto;
      text-align: center;
      padding: 20px;
      z-index: 2; 
    }

    .profile-pic {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin-top: 40px;
      border: 2px solid #fff;
    }

    .intro {
      margin: 20px 0;
      font-size: 16px;
      line-height: 1.4;
    }

.social-links {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.social-links a:hover {
  background-color: #4f0461; 
  border-color: #6f0588;      
}

.social-links i {
  font-size: 20px;
}




    .links {
      margin: 20px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .links a {
      text-decoration: none;
      background-color: #4f0461;
      padding: 12px;
      border-radius: 6px;
      color: #fff;
      font-weight: 600;
      transition: background-color 0.3s ease;
    }
    .links a:hover {
      background-color: #6f0588;
    }


    .cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 40px auto; 
      max-width: 600px;  
      align-items: center; 
    }

.card {
  background: rgba(79, 4, 97, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: relative;
  width: 80%;         
  max-width: 600px;    
  margin: 0 auto;     
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}


.card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.2), 
    0 0 8px rgba(154, 0, 255, 0.4);   
}



    .card-logo {
      width: 150px;
      height: 85px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .card-title {
      font-size: 18px;
      margin: 0 0 10px;
      font-weight: bold;
    }

    .card-desc {
      font-size: 14px;
      line-height: 1.4;
      margin-bottom: 15px;
      overflow-wrap: break-word;
      white-space: normal;
    }

    .card-link {
      display: inline-block;
      background-color: #4f0461;
      color: #fff;
      text-decoration: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 620;
      transition: background-color 0.3s ease;
      font-size: 105%;
    }

    .card-link:hover {
      background-color: #6f0588;
    }

.falling-line {
  position: absolute;
  top: -50px;
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, #9a00ff 0%, #9a00ff 70%, #da70ff 100%);
  opacity: 0.8;
  animation-name: fall;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.falling-line::after {
  content: "";
  position: absolute;
  bottom: 0;           
  left: 50%;           
  transform: translateX(-50%);
  

  width: 6px;          
  height: 6px;
  border-radius: 50%;
  

  background-color: #da70ff;
  opacity: 0.7;
  box-shadow: 0 0 6px 2px #da70ff; 
}




    @keyframes fall {
      0% {
        transform: translateY(0);
        opacity: 1;
      }
      100% {
        transform: translateY(120vh);
        opacity: 0;
      }
    }
    .profile-name {
  font-size: 24px;     
  font-weight: 700;    
  margin: 15px 0 10px;
}



@media (max-width: 600px) {
  .profile-pic {
    width: 90px;
    height: 90px;
  }

  .profile-name {
    font-size: 20px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
  }
  .social-links i {
    font-size: 16px; 
  }

  .links a {
    font-size: 90%;
    padding: 10px;
  }

  .card {
    padding: 15px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .card-logo {
    width: 120px; 
    height: auto; 
  }

  .card-title {
    font-size: 16px;
  }

  .card-desc {
    font-size: 13px;
  }

  .card-link {
    font-size: 100%;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {

  .card-logo {
    width: 130px;
  }
}
