@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300;400&amp;display=swap');

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden; /* Remove a rolagem */
    touch-action: none; /* Desativa ações de toque padrão */
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    cursor: url('../pngs/pointer.cur'), auto;
    z-index: 9999; /* Garantir que o cursor tenha um alto z-index */
    justify-content: center;
    align-items: center;
    background-color: #36393f00;
}
label {
    cursor: url('../pngs/pointer.cur') 16 16, pointer; /* Adicionando cursor ao label também */
}

.all {
    display: inline-block;
    justify-content: center;
    align-items: center;
}

video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.avatar:focus {
    outline: none;
    -webkit-tap-highlight-color: transparent; 
}

@keyframes balancoSuave {
    0% { transform: translate(0, 0); }
    25% { transform: translate(3px, -3px); }
    50% { transform: translate(-3px, 3px); }
    75% { transform: translate(2px, -2px); }
    100% { transform: translate(0, 0); }
}

.profile {
    text-align: center;
    padding: 40px;
    padding-left: 130px;
    padding-right: 130px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    position: relative;
    margin: 25px;
    max-width: 400px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.11), 0 rgba(0, 0, 0, 0.226), 0, 0;
    
    /* Aplicando a animação */
    animation: balancoSuave 5s infinite ease-in-out;
}

@media (max-width: 768px) {
    .profile {
        padding: 60px;
        padding-left: 90px;
        padding-right: 90px;
        max-width: 300px;
        margin-top: -50px;
    }
}

@media (max-width: 480px) {
    .profile {
        padding: 60px;
        padding-left: 60px;
        padding-right: 60px;
        max-width: 250px;
        margin-top: -50px;
    }
}

.profile-cover {
    width: 100%;
    height: 200px;
    background-image: url('');
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -100px;
    left: 0;
    z-index: -1;
}

.avatar {
    z-index: 1;
    width: 100px;
    height: 100px;
    position: relative;
    margin-top: -70px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    border: 7px solid #202124;
    transition-duration: 0.4s;
    transition-property: transform;
}

.img img { 
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    cursor: pointer;
}

.avatars {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid #444;
    cursor: pointer;
}

.avatard {
    width: 150px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 5px solid #444;
    cursor: pointer;
}

.title {
    font-size: 4rem;
    font-family: 'Arial', sans-serif;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.8), 0 0 10px rgba(0, 255, 0, 0.6), 0 0 15px rgba(0, 255, 0, 0.4);
    animation: neonPulse 1.5s infinite alternate;
}

.irep7 {
    font-family: 'LaachirDeeper-Bold', sans-serif; 
    text-shadow: 
    0 0 0px rgba(49, 49, 49, 0.555)
    0 0 10px rgba(71, 71, 71, 0.473);
    font-size: 24px;
    font-weight: bold;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.rep7 {
    font-family: 'LaachirDeeper-Bold';
    font-size: 29px;
    font-weight: bold; 
    margin: 0 0 -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    text-shadow: 
    0 0 0px rgba(255, 255, 255, 0.623), 
    0 0 5px rgba(255, 255, 255, 0.637), 
    0 0 10px rgba(255, 255, 255, 0.555);
}

.irep7 {
    font-family: 'LaachirDeeper-Bold', sans-serif;  
    font-size: 16px;
    opacity: 0.7;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    color: white;
    opacity: 20;
}

.badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
}

.badge {
    width: 23px;
    height: 23px;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 3px;
    position: relative;
}

.badge[data-tooltip] {
    position: relative;
    cursor: pointer;
}

.badge[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    background-color: #444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 1;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.badge[data-tooltip]:hover::after {
    opacity: 1;
}

.rep7 {
    margin-top: 10px;
}

.social-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.social-button {
    margin: 0 10px;
    width: 30px;
    height: 30px;
    background-color: transparent; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-icon {
    font-size: 20px;
    color: #F0FFF0;
}

a {
    text-decoration: none;
    outline: none;
}

audio {
    background: none;
    border: none;
    width: 100%;
}

.profilee {
    text-align: center;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    position: relative;
    margin: 25px;
    max-width: 400px;
    height: 350px;
    background-color: #000000;
}

.social-buttonss {
    align-items: center;
    justify-content: center;
}

.social-buttonn {
    margin: 10px 10px;
    width: 30px;
    height: 30px;
    background-color: transparent; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.view-counter {
  position: absolute;
  top: 10px;
  right: 10px; 
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px; 
  font-family: 'Arial', sans-serif;
  border-radius: 8px; 
  font-size: 0.75rem; 
  color: #636363;
}

.view-icon {
  font-size: 0.8rem;
  font-family: 'Arial', sans-serif;
}

#view-count {
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  color: #9e9e9e;
}

.music-title {
    font-size: 16px; 
    color: #FFFFFF;  
    text-align: center;
    margin: 10px 0; 
    overflow: hidden; 
    white-space: nowrap; 
    text-overflow: ellipsis; 
}


@media (max-width: 600px) {
    .music-title {
        font-size: 14px;
    }
}

video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
  
  .vidoverlay {
    position: fixed;
    mix-blend-mode: screen;
    opacity: 50%;
  }
  
  .graffiti {
    font-family: "LaachirDeeper", sans-serif
  }
  
  #overlay-toggle {
    position:absolute;
    display: none;
  }
  
  .overlay {
    z-index: 1;
    background-color: #000001a9;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }
  
  .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;
  }
  
  body {
  
    background-color:#000001!important;
    color:#fff!important
  }
  
  .hover {
    text-decoration:none;
    color:gray!important;
    transition:.4s!important;
  }
  
  
  span::before {
    content:'\A';
    white-space:pre
  }
  
  #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;
  }
  
  @font-face {
    font-family: "LaachirDeeper-Bold";
    src: url(../fonts/R67jRUQgEqo4.ttf);
  }
  
  @media(hover: hover) {
    .overlayhover {
      display: block;
    }
    .overlayno-hover {
      display: none;
    }
  }
  
  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }
  * {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  body {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  h1 {
    font-family: "Codystar", sans-serif;
    color: white;
    font-size: 50px;
    letter-spacing: 3px;
    text-align: center;
  }
      *,*:after,*:before{
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -ms-box-sizing: border-box;
          box-sizing: border-box;
      }
      
      .conteinerneve{
          height: 100vh;
          width: 100%;
          background-size: cover;
          background-position: center bottom; 
          overflow: hidden;
          position: fixed;
          z-index: 999;
          pointer-events: none;
      }
      
      .neve, .neve:before, .neve:after {
        position: fixed;
        top: -650px;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: 
        radial-gradient(4px 4px at 100px 50px, #fff , transparent), 
        radial-gradient(6px 6px at 200px 150px, #fff, transparent), 
        radial-gradient(3px 3px at 300px 250px, #fff 50%, transparent), 
        radial-gradient(4px 4px at 400px 350px, #fff 50%, transparent), 
        radial-gradient(6px 6px at 500px 100px, #fff 50%, transparent), 
        radial-gradient(3px 3px at 50px 200px, #fff 50%, transparent), 
        radial-gradient(4px 4px at 150px 300px, #fff 50%, transparent), 
        radial-gradient(6px 6px at 250px 400px, #fff 50%, transparent), 
        radial-gradient(3px 3px at 350px 500px, #fff 50%, transparent);
        background-size: 650px 650px;
        animation: caineve 10s linear infinite;
        content: "";
        pointer-events: none;
      }
      .neve:after {
        margin-left: -250px;
        opacity: 0.5;
        filter: blur(2px);
        animation-duration: 6s;
        animation-direction: reverse;
        pointer-events: none;
      }
      
      .neve:before {
          margin-left: -350px;
        opacity: 0.7;
        filter: blur(1px);
        animation-duration: 9s;
        animation-direction: reverse;
        pointer-events: none;
      }
      
      @keyframes caineve {
        from {
          transform: translateY(0px);
          pointer-events: none;
        }
        
        to {
          transform: translateY(650px);
          pointer-events: none;
        }
      }
      .img {
        position: relative;
        display: inline-block;
    }
    
    .status-indicator {
        position: absolute;
        bottom: 0;
        right: 20px;
        top: 120px;
        width: 25px;
        height: 25px;
        border-radius: 50%;
        border: 25px black;
        background-color: gray;
        transform: translate(50%, 50%);
    
    }
    
    .playing {
        background-color: green;
        border: 25px black;
        transform: scale(1.1);
        filter: brightness(1.2);
        transition: .2s;
        box-shadow: 0 0 10px rgb(32, 190, 1), 0 0 20px rgb(35, 209, 0);
        border: 2px solid rgb(0, 158, 26)
    }
    
    .idle {
        background-color: #faa61a;
        transform: scale(1.1);
        filter: brightness(1.2);
        transition: .2s;
        box-shadow: 0 0 10px rgb(255, 154, 3), 0 0 20px rgb(252, 164, 0);
        border: 2px solid #ffaf25
    }
    
    .dnd {
        background-color: red;
        transform: scale(1.1);
        filter: brightness(1.2);
        transition: .2s;
        box-shadow: 0 0 10px rgba(241, 54, 54, 0.822), 0 0 20px rgba(170, 0, 0, 0.877);
        border: 2px solid rgb(165, 0, 0)
    }
    
    .offline {
        background-color: gray;
        transform: scale(1.1);
        filter: brightness(1.2);
        transition: .2s;
        box-shadow: 0 0 10px rgb(0, 0, 0), 0 0 20px rgba(0, 0, 0, 0.6);
        border: 2px solid gray
    }
    
    .status-text {
        font-size: 14px;
        text-align: center;
        font-family: 'LaachirDeeper-Bold', sans-serif;
        font-size: 16px;
        opacity: 0.7;
        user-select: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: rgb(255, 255, 255);
        opacity: 20;
        text-shadow:
            0 0 2px rgba(255, 255, 255, 0.623),
            0 0 5px rgba(255, 255, 255, 0.637),
            0 0 15px rgba(255, 255, 255, 0.555),
            0 0 20px rgb(255, 255, 255),
            0 0 25px rgb(255, 255, 255),
            0 0 30px rgb(255, 255, 255);
    }
    
    .separator {
        border-top: 1px solid #ddd;
        margin: 10px 0;
    
    }
    #loading-screen {
        position: fixed;
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
    .spinner {
        width: 50px;
        height: 50px;
        border: 8px solid #f3f3f3;
        border-top: 8px solid #3498db;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }
    
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    .userPage_badgeContainer__uuL3l {
        align-items: center;
        background-color: var(--badgeContainerBackground);
        border: var(--badgeContainerBorder);
        border-radius: 25px;
        display: flex;
        gap: 5.5px;
        justify-content: center;
        padding: 6px 10px;
    }
    .card {
        display: center;
    }
    .audio-player {
        position: fixed;
        bottom: 10px; 
        right: 10px; 
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 250px;
        height: 80px;
        border-radius: 8px;
        padding: 8px;
        box-sizing: border-box;
      }
      
      .album-cover {
        width: 64px;
        height: 64px;
        background-image: url('../pngs/album.jpeg');
        background-color: #fff;
        border-radius: 50%;
        margin-right: 12px;
        background-size: contain; 
        background-position: center; 
      }
      
      .player-controls {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }
      
      .song-info {
        margin-bottom: 4px;
      }
      
      .song-title {
        font-size: 19px;
        font-family: "Oswald", sans-serif;
        color: #fff;
        text-align: end;
        display: flex;
      }
      
      .artist {
        font-size: 12px;
        color: #b3b3b3;
        margin: 0;
        font-family: "Oswald", sans-serif;
        display: flex;
        text-align: justify;
      }
      
      .buttons {
        display: flex;
      }
      
      button {
        background: none;
        border: none;
        cursor: pointer;
        outline: none;
      }
      
      .pause-btn {
        font-size: 16px;
        color: #fff;
        margin-right: 8px;
        transition: transform 0.2s ease-in-out;
      }
  
      .pause-btn:hover {
        transform: scale(1.2);
      }
      
      @keyframes progress-animation {
        0% {
          transform: scaleX(0);
        }
      
        100% {
          transform: scaleX(1);
        }
      }
      .play-pause-btn {
        background-color: #00000049;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.4);
        color: white;
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
        position: fixed;
        bottom: 30px;
        right: 10px;
        
    }
    @media (min-width: 768px) {
      .play-pause-btn {
          display: none;
      }
  }
  

    .play-pause-btn:hover {
        background-color: #000000;
        transform: scale(1.1);
    }
    .lanyard-card {
      display: flex;
      align-items: center;
      background-color: #00000070;
      color: white;
      padding: 10px;
      border-radius: 8px;
      width: 320px;
      font-family: Arial, sans-serif;
      position: absolute;
      top: 10px;
      left: 10px;
  }
  
  .lanyard-icon {
      width: 35px;
      height: 35px;
      border-radius: 8px;
      margin-right: 10px;
      background-color: #00000000;
      position: relative;
  }
  
  .lanyard-thumbnail {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #00000070;
      position: absolute;
      bottom: -2px;
      right: -2px;
      display: none;
  }
  
  .lanyard-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  
  .lanyard-info h3 {
      margin: 0;
      font-size: 14px;
  }
  
  .lanyard-info p {
      margin: 5px 0 0;
      font-size: 14px;
      color: #BBB;
  }
  
  #lanyard-time {
      font-size: 12px;
      color: #B9BBBE;
      margin-top: 2px;
  }
  .progress-container {
    width: 100%;
    background-color: #2c2f33;
    border-radius: 5px;
    overflow: hidden;
    height: 6px;
    position: relative;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #1DB954;
    transition: width 1s linear;
}

.progress-text {
    font-size: 12px;
    margin-top: 4px;
    text-align: center;
    color: white;
}

  
  
  
  