   :root {
       --bg: #0f0f12;
       --card: #18181d;
       --primary: #2b59ff;
       --secondary: #ffcc00;
       --text: #ffffff;
       --muted: #b5b5b5;
       --radius: 14px;
       font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
   }

   * {
       box-sizing: border-box;
   }

  body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 24px;

      /* GAMER BACKGROUND */
      background:
          radial-gradient(circle at top,
              rgba(43, 89, 255, 0.15),
              transparent 60%),
          linear-gradient(180deg,
              #0b0c10,
              #0f0f12);
  }

   .main-typing {
       text-align: center;
     
   }

   .wrapper {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 24px;
   }

   .wrapper {
       display: flex;
       flex-direction: column;
       align-items: center;
       gap: 28px;
   }

   .main-typing {
       text-align: center;
   }

   .typing-title {
       font-size: 2rem;
   }
   @media screen and (max-width: 780px) {
    .typing-title {
        font-size: 1rem;
    }
    
   }
   .typing-card {
       margin-bottom: 22px;
       font-size: 1rem;
   }


   .container {
       width: 100%;
       max-width: 420px;
       background: var(--card);
       border-radius: var(--radius);
       padding: 28px 22px;
       text-align: center;
   }

   .avatar {
       width: 96px;
       height: 96px;
       border-radius: 50%;
       background: #2a2a2f;
       margin: 0 auto 16px;
       overflow: hidden;
   }

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

   h1 {
       font-size: 1.4rem;
       margin: 0;
       font-weight: 600;
   }

   .subtitle {
       font-size: 0.9rem;
       color: var(--muted);
       margin: 6px 0 22px;
   }

   .links {
       display: flex;
       flex-direction: column;
       gap: 14px;
   }

   .link-btn {
       text-decoration: none;
       color: var(--text);
       background: #22222a;
       padding: 16px;
       border-radius: var(--radius);
       font-weight: 500;
       transition: transform 0.15s ease, background 0.15s ease;
   }

   .link-btn:hover {
       transform: translateY(-2px);
       background: #2a2a35;
   }

   .primary {
       background: var(--primary);
   }

   .primary:hover {
       background: #1f46e0;
   }

   .secondary {
       background: #2a2a2f;
       border: 1px solid #333;
   }

   footer {
       margin-top: 24px;
       font-size: 0.75rem;
       color: var(--muted);
   }

   .typing-container {
       margin-bottom: 24px;
       font-family: 'Press Start 2P', monospace;
       line-height: 1.6;
       color: #cfcfcf;
       min-height: 32px;
       text-shadow: 0 0 6px rgba(255, 255, 255, 0.08);
   }

   .cursor {
       margin-left: 4px;
       animation: blink 1s steps(1) infinite;
   }
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
}

.icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}
.link-btn img {
    width: 24px;
    height: 24px;
    
}

   @keyframes blink {

       0%,
       50% {
           opacity: 1;
       }

       51%,
       100% {
           opacity: 0;
       }
   }