  @font-face {
    font-family: 'ModernDOS9x16';
    src: url(fonts/ModernDOS9x16.ttf);
  }

    :root{
    --bg:#0f1724;
    --card-bg: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    --accent:#60a5fa; 
    --glass: rgba(255,255,255,0.03);
    --radius:12px;
    --gap:16px;
  }

  html, body {margin: 0; height: 100%; overflow: hidden}
  
  body {
    margin: 0;
    background-color: black;
    color: white;
    font-family: 'ModernDOS9x16';
    height: 100vh;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden; 
  }

    .container{
    width:min(1100px, 96%);
    margin:0 auto;
  }


  .overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 1;
    transition: opacity 0.8s ease;
  }

  .overlay.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  .popup {
    background: rgba(20, 20, 20, 0.95);
    border-radius: 10px;
    padding: 30px 50px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  .popup h2 {
    margin-bottom: 10px;
    font-size: 1.4em;
    letter-spacing: 1px;
    font-family: 'ModernDOS9x16';
  }

  .popup p {
    color: #bbb;
    font-size: 0.9em;
    margin-bottom: 20px;
  }

  .popup button {
    background: #222;
    border: 1px solid #444;
    color: white;
    padding: 10px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9em;
    transition: all 0.2s ease;
  }

  .popup button:hover {
    background: #333;
    border-color: #666;
  }

  .content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 2rem;
    opacity: 0.2;
  }

pre {
    text-align: center;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: currentColor;
}

.profiles {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.profile-link {
    text-decoration: none;
    color: white;
}

.profile {
    width: 120px;
    height: 210px;
    border: 2px solid #111111;
    border-radius: 15px;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.profile:hover {
    transform: scale(1.1);
}

.profile img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    margin-top: -10px;
}

.profile p {
    margin: 0;
    font-size: 16px;
}

.container {
    margin-top: -300px;
    text-align: center;
}

.bio {
    margin-top: -10px;
    size: 50x;
    font-family: 'ModernDOS9x16';
}

      .other {
      text-align: center;
      text-decoration: none;
      color: white;
      background-color: black;
    }