@import url('https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@300;400&display=swap');

body {
    margin: 0;
    padding: 0;

    width: 100%;
    height: 100vh;
    display: flex;

    justify-content: center;
    align-items: center;
    background-color: #36393F;
    
}

.all {

    display: flex;
 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; 
    }


.discord-profile {
    text-align: center;
    padding: 24px 20px;
    border-radius: 16px;
    background: linear-gradient(to bottom, rgba(20, 20, 20, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    
    /* sombra mais suave e difusa */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 25px rgba(0, 0, 0, 0.25);
    
    color: #fff;
    position: relative;
    margin: 25px;
    max-width: 340px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* efeito ao passar o mouse (PC) */
.discord-profile:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45), 0 0 30px rgba(80, 120, 255, 0.3);
}



.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: flex;
    margin-left: 87px;
    margin-right: auto;
    border-radius: 100px;
    border: 7px solid #202124;
    transition-duration: 0.4s;
    transition-property: transform;
}

.pfp img { 
    width: 150px;
    height: 150px;

    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid #2c2b2b;
    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;
}
.pfp img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    transition: .2s;
}
.pfp img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
    transition: .2s;
}

.nick {
    font-family: 'Starborn', sans-serif; 
    font-size: 24px;
    font-weight: bold; 
    margin: 0 0 -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.nickr {
    font-family: 'Starborn', sans-serif;
    font-size: 29px;
    font-weight: bold; 
    margin: 0 0 -9px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.subnick {
    font-family: 'Arial', sans-serif; 
    font-size: 16px;
    opacity: 0.7;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    
}
.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: 0px;
  
    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;
}

.badge,
.social-button,
.subnick {
    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-button:hover {
    background-color: #595b5f79; 
}

.social-icon {
    font-size: 20px;
    color: #FFFFFF;
}

.server-button {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    user-select: none;
}

.server-button-text {
    font-size: 18px;
    color: #FFFFFF;
    margin-left: 10px;
    cursor: default;
}

a {
    text-decoration: none;
    outline: none;
}

@media (max-width: 768px) {
    body {
        margin: 110px;
        padding: 100px;
        width: 100%;
        height: 200vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

}

  @media (max-width: 600px) {
  body {
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

}

    @media (max-width: 300px) {
    body {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

}

    @media (max-width: 400px) {
    body {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    } 

}

.hover {
    text-decoration: none;
    color: gray !important;
    transition: .4s !important;
}

.hover:hover {
    transition: .4s !important;
    color: #fff !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: "Graffiti";
    src: url(font.ttf);
}

@media(hover: hover) {
    .overlayhover {
        display: block;
    }
    .overlayno-hover {
        display: none;
    }
}

@keyframes fade {
    to {
        opacity: 0;
    }
}

@keyframes hide {
    to {
        visibility: hidden;
    }
}

.description {
    color: #ffffff;
    font-family: Montserrat;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden !important;
    max-height: 130px;
    font-size: 15px;
}

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: "Starborn", sans-serif
  }
  
  #overlay-toggle {
    position:absolute;
    display: flex;
  }
  
  .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: flex;
  }
  
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
  }
  
  .fullscreen {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-height: 100vh;
    min-width: 100vw;
}

body {
    font-family: monospace !important;
    height: 100vh;
    width: 100%;
    background: linear-gradient(45deg, #000000,#000000  ,#000000,#f0f0f0);
    background-size: 300% 300%;
    animation: color 8s ease-in-out infinite;
    /*background-color: #0a0a0a !important;*/
    color: #fff !important
}
@keyframes color{
    0%{
        background-position: 0 50%;
    }
    50%{
        background-position: 100% 50%;
    }
    100%{
        background-position: 0 50%;
    }
}

.hover {
    text-decoration: none;
    color: gray !important;
    transition: .4s !important;
}

.hover:hover {
    transition: .4s !important;
    color: #fff !important
}

span::before {
    content: '\A';
    white-space: pre
}
  
  video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
}

.vidoverlay {
    position: fixed;
    mix-blend-mode: screen;
    opacity: 50%;
}

html {
    font-family: monospace;
}

*,
*::after,
*::before {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.graffiti {
    font-family: "Graffiti", sans-serif
}

#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;
}

body {
    font-family: monospace !important;
    background-color: #000001 !important;
    color: #fff !important
}

.hover {
    text-decoration: none;
    color: gray !important;
    transition: .4s !important;
}

.hover:hover {
    transition: .4s !important;
    color: #fff !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: "Graffiti";
    src: url(font.ttf);
}

@media(hover: hover) {
    .overlayhover {
        display: block;
    }
    .overlayno-hover {
        display: none;
    }
}

@keyframes fade {
    to {
        opacity: 0;
    }
}

@keyframes hide {
    to {
        visibility: hidden;
    }
}

.description {
    color: #ffffff;
    font-family: Montserrat;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden !important;
    max-height: 130px;
    font-size: 15px;
}
  
  #canvas-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
  }
  
  @font-face {
    font-family: "Starborn";
    src: url(Ghosteen.otf);
  }
  
  @media(hover: hover) {
    .overlayhover {
      display: flex;
    }
    .overlayno-hover {
      display: flex;
    }
  }
  
  @keyframes fade{
    to {
      opacity: 0;
    }
  }
  
  @keyframes hide {
    to {
      visibility: hidden;
    }
  }
  /* Combine redundant hover styles */
.hover:hover, .pfp img:hover {
    transition: .4s !important;
    color: #fff !important;
    transform: scale(1.1);
    filter: brightness(1.2);
}
@keyframes fade {
    to { opacity: 0; }
}

@keyframes hide {
    to { visibility: hidden; }
}

.moment {
  filter: blur(5px);
  opacity: 0;
  transform: translateY(20px);
  transition: all .7s ease;
}
.moment.show {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0);
}
