    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: black;
      color: #fff;
      text-align: center;
    }

    .star-background {
      position: fixed;
      top: 0; left: 0;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .container {
      position: relative;
      max-width: 600px;
      margin: 50px auto;
      padding: 20px;
      z-index: 2;
    }

    .profile {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-bottom: 30px;
    }

    .profile img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin-bottom: 15px;
    }

    .profile a {
      text-decoration: none;
      color: #ffffff;
    }

    .profile h1 {
      font-size: 2.15em;
      margin: 0;
      transition: transform 0.3s ease, text-shadow 0.3s ease;
    }

    .profile h1:hover {
      transform: scale(1.1);
      text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    }

    .socialmedia {
      position: relative;
      display: flex;
      gap: 0.5rem;
      padding: 0.5rem;
      justify-content: center;
      align-items: flex-end;
      margin-bottom: 30px;
    }

    svg#clip-defs {
      position: absolute;
      width: 0;
      height: 0;
    }

    .icon-wrapper {
      position: relative;
    }

    .icon-box {
      width: 56px;
      height: 56px;
      border-radius: 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 15px rgba(0,0,0,0.2);
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
      clip-path: url(#squircleClip);
    }

    .icon-box:hover {
      transform: scale(1.1) translateY(-8px);
      box-shadow: 0 25px 50px rgba(0,0,0,0.4);
      z-index: 10;
    }

    

    .icon-box svg {
      fill: white;
      width: 32px;
      height: 32px;
    }

    .links {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .links a {
      display: block;
      padding: 15px;
      text-decoration: none;
      background: linear-gradient(90deg, #66a0df, #0052aa);
      border-radius: 30px;
      font-size: 1.25em;
      font-weight: bold;
      color: #fff;
      transition: transform 0.2s ease;
      position: relative;
      z-index: 2;
    }

    .links a:hover { transform: scale(1.05); }
    .link-description {
      font-size: 0.85em;
      color: #ffffffbb;
      margin-top: 5px;
    }

    footer {
      margin-top: 30px;
      font-size: 0.9em;
      color: #ffffffbb;
      position: relative;
      z-index: 2;
    }

    footer a {
      color: #ffffffbb;
      text-decoration: underline;
      font-size: 0.85em;
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    footer a:hover {
      color: #fff;
      text-shadow: 0 0 5px #fff, 0 0 10px #fff;
    }

    .star {
      position: absolute;
      background-color: white;
      border-radius: 50%;
      opacity: 0;
      animation: blink 3s infinite alternate;
      z-index: 1;
    }

    @keyframes blink {
      0%,100%{opacity:0}
      50%{opacity:1}
    }
