body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: linear-gradient(145deg, #000000, #0a0a0aa8);
  overflow: hidden;
  background-size: cover;
  background-image: url(https://get.wallhere.com/photo/3500x2156-px-city-favela-graffiti-street-walls-1206566.jpg);
}
  
  .profile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    animation: float 4s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
  }
  
  .card {
    background: linear-gradient(145deg, #000000, #000000);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 30px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgb(0, 0, 0);
  }
  
  .avatar img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border: 4px solid #0000007c;
    box-shadow: 0 0 12px #000000;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  
  .avatar img:hover {
    box-shadow: 0 0 24px #00000034;
    transform: rotate(5deg) scale(1.1);
  }
  
  h1 {
    font-size: 1.8rem;
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    animation: glow-text 1.5s ease-in-out infinite alternate;
  }
  
  @keyframes glow-text {
    from {
        color: #c9d1d9;
        text-shadow: 0 0 10px #00000088;
    }
    to {
        color: #ffffff;
        text-shadow: 0 0 20px #00000096;
    }
  }
  
  .subnick {
    font-size: 1rem;
    color: #8b949e;
    margin: 5px 0 15px;
    opacity: 0.8;
  }
  
  .badges {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 15px; 
  }
  
  .badge {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }
  
  .badge:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 10px #ffffff);
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    margin-top: 15px; 
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
  
  #status {
    font-size: 1.1rem;
    color: #ffffff;
    margin-top: 10px;
    opacity: 0.9;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
  }
  
  
  .viewer-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    position: absolute;
    top: 10px;
    right: 10px;
    margin-top: 0;
    padding: 5px 10px;
    background: linear-gradient(145deg, #17171893, #1d1c1c);
    border-radius: 15px;
    color: white;
    font-weight: bold;
  }
  
  .eye-icon {
    width: 20px;
    height: 20px;
  }
  
  #view-count {
    font-weight: bold;
  }
  
  #overlay-toggle {
    position: absolute;
    display: none;
  }
  
  .overlay {
    z-index: 1;
    background-color: #000000;
  }
  
  .overlay label {
    display: grid;
    place-items: center;
    width: 100vw;
    height: 100vw;
    color: rgb(255, 255, 255);
    font-size: 2rem;
  }
  
  .no-hover {
    display: block;
  }
  
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }
  
  #center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  #overlay-toggle:checked ~ .overlay {
    animation-fill-mode: forwards;
    animation-name: fade, hide;
    animation-delay: 0s, 600ms;
    animation-duration: 600ms, 1ms;
  }
  
  #overlay-toggle:checked ~ .overlay label {
    animation-fill-mode: forwards;
    animation-name: fade;
    animation-delay: 0s;
    animation-duration: 500ms;
  }
  
  #canvas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  @media(hover: hover) {
    .overlayhover {
        display: block;
    }
    .overlayno-hover {
        display: none;
    }
  }
  
  @keyframes fade {
    to {
        opacity: 0;
    }
  }
  
  @keyframes hide {
    to {
        visibility: hidden;
    }
  }
  
  
  .sound-toggle {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
  }
  
  .sound-icon {
    width: 25px;
    height: 25px;
  }
  
