body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #ffffff;
    background: url('../images/tonycountry.jpg') no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(1px);
    padding: 20px;
    box-sizing: border-box;
  }
  
  .profile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    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, #000000bd, #00000059);
    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;
  }
  
  .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; /* Adiciona margem abaixo das badges */
  }
  
  .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 #f7f7f7);
  }
  
  /* Novo estilo para o Ć­cone do Discord abaixo das badges */
  .social-icon {
    width: 30px;
    height: 30px;
    margin-top: 15px; /* EspaĆ§amento acima do Ć­cone */
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.1);
  }
  
  #status {
    font-size: 1.1rem;
    color: #000000;
    margin-top: 10px;
    opacity: 0.9;
    animation: pulse 2s infinite;
  }
  
  @keyframes pulse {
    0%, 100% {
      opacity: 0.9;
    }
    50% {
      opacity: 1;
    }
  }
  

  #overlay-toggle {
    position:absolute;
    display: none;
  }
  
  .overlay {
    z-index: 1;
    background-color: #000001;
  }
  
  .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%);
    -webkit-transform:translate(-50%,-50%);
    -moz-transform:translate(-50%,-50%);
    -ms-transform:translate(-50%,-50%);
    -o-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;
    }
  } 

  