   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Lexend", sans-serif;
    }

    body {
      overflow: hidden;
      background: black;
      color: white;
      position: relative;
      height: 100vh;
      width: 100vw;
    }

    #particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

    @keyframes moveGrid {
      0% { transform: translate(0, 0); }
      100% { transform: translate(80px, 80px); }
    }

    #intro-screen {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.1); /* transparent white */
      backdrop-filter: blur(10px);                /* applies blur to background */
      -webkit-backdrop-filter: blur(10px);        /* Safari support */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      z-index: 999;
      transition: opacity 1s ease;
    }

    #intro-screen h1 {
      font-size: 2rem;
      color: white;
      cursor: pointer;
      user-select: none;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    #intro-screen h1:hover {
      opacity: 0.7;
      transform: scale(1.05);
    }

    #intro-screen.fade-out {
      opacity: 0;
      pointer-events: none;
    }

    .content {
      position: relative;
      width: 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 1s ease;
      z-index: 1;
    }

    .content.show {
      opacity: 1;
    }

    .profile-box {
      background: rgba(32, 32, 32, 0.05);
      border: 1px solid rgba(70, 70, 70, 0.2);
      border-radius: 20px;
      padding: 40px;
      text-align: center;
      backdrop-filter: blur(8px);
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
      z-index: 2;
      width: 23vw;
    }

    .profile-box img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
    }

    .spin {
      width: 150px; 
      height: 150px; 
      animation: spin 3s linear infinite;
    }

    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    .profile-box h1 {
      font-size: 2rem;
      margin-bottom: 10px;
    }

    .profile-box p {
      font-size: 1rem;
      color: #ccc;
      margin-bottom: 20px;
    }

    .socials {
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    .socials a {
      color: white;
      font-size: 1.8rem;
      transition: transform 0.3s ease, color 0.3s ease;
    }

    .socials a:hover {
      color: #888;
      transform: scale(1.2);
    }

    .bottom-image {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 500px;
      height: 500px;
      object-fit: cover;
      opacity: 0;
      transition: opacity 2s ease;
      z-index: 1;
    }

    .bottom-image.show {
      opacity: 1;
    }
    
    ::selection {
        background: #fff;
        color: #000;
    }
   
   
   /* OLD STYLES - COMMENTED OUT
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lexend', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      transition: background 0.3s, color 0.3s;
      overflow-x: hidden;
    }

    body.dark {
      background-color: #000;
      color: #fff;
    }

    body.light {
      background-color: #fff;
      color: #000;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      background-image: 
        linear-gradient(to right, rgba(128,128,128,0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128,128,128,0.1) 1px, transparent 1px);
      background-size: 40px 40px;
      z-index: -1;
    }

    nav {
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 20px 50px;
      border-bottom: 1px solid rgba(128,128,128,0.2);
      opacity: 0;
      transform: translateY(-20px);
      animation: fadeInUp 0.8s ease forwards;
    }

    nav h1 {
      font-size: 1.5rem;
      font-weight: 700;
    }

    nav button {
      padding: 8px 16px;
      border-radius: 25px;
      border: 1px solid currentColor;
      background: transparent;
      cursor: pointer;
      font-weight: 500;
      transition: opacity 0.3s;
    }

    nav button:hover {
      opacity: 0.7;
    }

    .hero {
      text-align: center;
      padding: 80px 20px 40px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease 0.3s forwards;
    }

    .hero img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      margin-bottom: 20px;
    }

    .hero h2 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .hero p {
      max-width: 600px;
      margin: 0 auto 20px;
      font-size: 1.1rem;
      line-height: 1.6;
      font-weight: 300;
    }

    .links {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease 0.6s forwards;
    }

    .links a {
      text-decoration: none;
      font-weight: 500;
      border: 1px solid currentColor;
      padding: 10px 20px;
      border-radius: 25px;
      transition: opacity 0.3s;
      border: 2px solid #fff;
      color: #fff;
    }

    .links a:hover {
      opacity: 0.7;
    }

    .player {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 20px;
      border: 1px solid rgba(128,128,128,0.3);
      border-radius: 15px;
      backdrop-filter: blur(8px);
      margin-bottom: 60px;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 1s ease 0.9s forwards;
    }

    .player img {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      object-fit: cover;
    }

    .player-info {
      flex-grow: 1;
    }

    .player-info h4 {
      font-size: 1rem;
      font-weight: 600;
    }

    .controls {
      display: flex;
      gap: 10px;
    }

    .controls button {
      border: 1px solid currentColor;
      background: #fff;
      padding: 5px 10px;
      border-radius: 8px;
      cursor: pointer;
      transition: opacity 0.3s;
    }

    .controls button:hover {
      opacity: 0.7;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    ::selection {
        background: #fff;
        color: #000;
    } */
    