body {
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
    color: white;
    background-color: #000;
  }
  
  .background {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: url('assets/gh3.jpg') no-repeat center center/cover;
    z-index: -1;
    filter: blur(2px) brightness(0.6);
  }
  
  .container {
    padding-top: 30px;
  }
  
  .profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
  }
  
  h2 {
    margin-bottom: 20px;
  }
  
  .link-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 25px;
    padding: 12px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
  }
  
  .btn i {
    margin-right: 10px;
    font-size: 18px;
  }
  
  .btn:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  .cod-username {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.cod-username i {
  margin-right: 5px;
  color: #facc15; /* yellow gamepad icon */
}