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

    body {
      height: 100vh;
      background: radial-gradient(circle at top, #111 0%, #000 60%);
      color: #fff;
      overflow: hidden;
    }

    #enter-screen {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 100;
      cursor: pointer;
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    #enter-screen.hidden {
      opacity: 0;
      pointer-events: none;
      transform: scale(1.05);
    }

    #enter-text {
      font-size: 2rem;
      letter-spacing: 2px;
      opacity: 0.8;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { opacity: 0.4; }
      50% { opacity: 1; }
      100% { opacity: 0.4; }
    }

    .container {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 1s ease, transform 1s ease;
    }

    .container.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .card {
      background: rgba(20, 20, 20, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px 40px;
      width: 340px;
      text-align: center;
      box-shadow: 0 0 60px rgba(255, 255, 255, 0.05);
    }

    .profile-pic {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      margin: 0 auto 15px;
      overflow: hidden;
      border: 2px solid rgba(255,255,255,0.2);
    }

    .profile-pic img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .username {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .description {
      font-size: 0.9rem;
      opacity: 0.7;
      margin-bottom: 22px;
    }

    /* Social icons */
    .socials {
      display: flex;
      justify-content: center;
      gap: 18px;
    }

    .socials a {
      color: #fff;
      font-size: 1.3rem;
      opacity: 0.7;
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .socials a:hover {
      opacity: 1;
      transform: scale(1.15);
    }

    /* Custom MC icon – matches Font Awesome size */
    .socials a.custom-icon {
      display: flex;
      align-items: center;
    }

    .socials a.custom-icon img {
      width: 1.3rem;
      height: 1.3rem;
      object-fit: contain;
      filter: brightness(0) invert(1);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      background-image: url('https://grainy-gradients.vercel.app/noise.svg');
      opacity: 0.05;
      pointer-events: none;
    }