/* Base reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #1c1c1c;
    color: #f0f0f0;
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: start;
    min-height: 100vh;
    padding: 30px 15px;
  }
  
  .container {
    width: 100%;
    max-width: 500px;
    text-align: center;
  }
  
  .avatar img {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    object-fit: cover;
    border: 3px solid #E64785;
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .bio {
    font-size: 0.95rem;
    margin-bottom: 30px;
    color: #bbb;
  }
  
  .link-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .link-group a {
    background: #5c5c5c;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
  }
  
  .link-group a:hover {
    background: #333;
    color: #fff;
  }
  
  .link-group.highlight a {
    background: #E64785;
    color: white;
  }
  
  .link-group.highlight a:hover {
    background: #ae3563;
  }
  
  footer {
    font-size: 0.8rem;
    color: #666;
    margin-top: 20px;
  }
  
  /* NSFW Warning Overlay */
#nsfw-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0e0e0ef9;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: opacity 0.6s ease;
  }
  
  #nsfw-overlay.hide {
    opacity: 0;
    pointer-events: none;
  }
  
  .nsfw-box {
    background: #1c1c1c;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    max-width: 90%;
  }
  
  .nsfw-box h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .nsfw-box p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ccc;
  }
  
  .nsfw-box button {
    padding: 10px 24px;
    border: none;
    border-radius: 24px;
    background: #E64785;
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s ease;
  }
  
  .nsfw-box button:hover {
    background: #d600a8;
  }
  