    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      color: #fff;
      background: #000;
    }

    .enter-screen {
      position: fixed;
      inset: 0;
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: opacity 0.9s ease;
    }

    .enter-screen.hidden {
      opacity: 0;
      pointer-events: none;
    }

    .enter-btn {
      font-size: 22px;
      font-weight: 300;
      letter-spacing: 0.18em;
      color: rgba(255, 255, 255, 0.45);
      cursor: pointer;
      transition: color 0.3s;
      text-transform: lowercase;
    }

    .enter-btn:hover {
      color: rgba(255, 255, 255, 0.85);
    }

    .bg {
      position: fixed;
      inset: 0;
      z-index: 0;
    }

    .bg video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: blur(2px) saturate(0.95);
      transform: scale(1.04) translateZ(0);
      will-change: transform;
      backface-visibility: hidden;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      /* Added this line to match old darkness */
      z-index: 1;
    }

    .card {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, calc(-50% + 24px)) scale(0.95);
      z-index: 2;
      display: flex;
      align-items: center;
      gap: 32px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card.show {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
    }

    .card > * {
      opacity: 0;
      transform: translateY(12px);
      transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .card.show > * {
      opacity: 1;
      transform: translateY(0);
    }

    .card.show .avatar { transition-delay: 0.15s; }
    .card.show .info { transition-delay: 0.25s; }

    .avatar {
      width: 108px;
      height: 108px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .info {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .name-row {
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 1;
    }

    .username {
      font-size: 25px;
      font-weight: 500;
      color: #fff;
      letter-spacing: -0.01em;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
    }

    .badge img {
      height: 15px;
      width: auto;
      display: block;
      opacity: 0.9;
      position: relative;
      top: 1px;
    }

    .bio {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.7);
      letter-spacing: 0.03em;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    }

    .meta {
      font-size: 17px;
      font-weight: 300;
      color: rgba(255, 255, 255, 0.45);
      letter-spacing: 0.05em;
      display: flex;
      align-items: center;
      gap: 12px;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    }

    .meta-sep {
      color: rgba(255, 255, 255, 0.25);
    }

    .divider {
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
      margin: 2px 0;
    }

    .socials {
      display: flex;
      gap: 24px;
    }

    .soc {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.45);
      font-size: 16px;
      font-weight: 400;
      letter-spacing: 0.08em;
      transition: color 0.25s;
      display: flex;
      align-items: center;
      gap: 8px;
      line-height: 1;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    }

    .soc:hover {
      color: rgba(255, 255, 255, 0.9);
    }

    .soc svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
      flex-shrink: 0;
    }

    .corner {
      position: fixed;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.2);
      letter-spacing: 0.1em;
      z-index: 3;
      text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
    }

    .corner.bl {
      bottom: 37px;
      left: 44px;
    }

    .corner.br {
      bottom: 37px;
      right: 44px;
      text-align: right;
    }
