* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html, body {
    overscroll-behavior: auto;
    scroll-behavior: smooth;
    touch-action: auto;
  }
  
  body {
    background: radial-gradient(circle at top left, #1a1a1a, #000);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .emoji-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
  }
  
  .card {
    position: relative;
    z-index: 1;
    padding: 4vh 2rem;
    max-width: 400px;
    width: 90%;
    background: rgba(255, 255, 255, 0.005);
    border-radius: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    backdrop-filter: blur(12px);
    text-align: center;
  }
  
  .profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #73001E;
    box-shadow: 0 0 10px #9c1791aa;
    margin-bottom: 1rem;
  }
  
  .profile h1 {
    font-size: 1.6rem;
    color: #73001E;
  }
  
  .tagline {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 0.5rem;
  }
  
  .links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .link-button {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #73001E;
    padding: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    position: relative;
  }
  
  .link-button span {
    display: block;
    font-size: 0.75rem;
    color: #e0e0e0;
    font-weight: 400;
    margin-top: 0.4rem;
  }
  
  .link-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
  }
  
  .socials {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .socials img {
    width: 36px;
    height: 36px;
    transition: transform 0.2s ease;
  }
  
  .socials img:hover {
    transform: scale(1.2);
  }


  @keyframes fall {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(110vh); opacity: 0; }
  }

  .card {
    animation: fadeInUp 0.8s ease-out;
  }
  
  @keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(240, 95, 195, 0.1); /* glowing edge */
  }

  
  