body, html, .circle {
  margin: 0;
  cursor: url("../cursor.cur"), auto;
  overflow: hidden;
}

.circle .flag-icon:hover, .circle .name-container:hover, body, html {
  cursor: url("../cursor_1.cur"), auto;
}
ul, ul li, ul li a {
  position: relative;
}
.circle, ul, ul li a {
  display: flex;
}
.circle, .circle:hover {
  transition: transform 0.6s;
}

body, html {
  height: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.discord-profile {
  opacity: 0;
  text-align: center;
  padding: 70px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,.2), 0 0 20px rgba(0,0,0,.4);
  color: #fff;
  position: relative;
  margin: 25px;
  max-width: 400px;
  background: linear-gradient(to bottom, #00000010 100%, #00000010 100%);
  transition: transform .3s ease, background .3s ease;
}

.discord-profile.loaded {
  opacity: 1;
  transform: scale(1);
}

.discord-profile:hover {
  transform: scale(1.05);
  background: linear-gradient(to bottom, #cccccc33 100%, #cccccc33 100%);
}

.circle-container {
  user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5rem;
  flex-wrap: wrap;
  overflow: auto;
  padding: 6rem;
  box-sizing: border-box;
}

.circle {
  max-width: 170px;
  width: 100%;
  text-align: center;
  align-items: center;
  margin: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: url("../cursor_1.cur"), auto;
  background-size: cover;
  background-position: center;
  border: none;
  z-index: 300;
  filter: blur(10px); 
  opacity: 0; 
  transition: filter 2s ease, opacity 2s ease, transform 0.5s ease; 
}

.circle.loaded {
  filter: none;
  opacity: 1; 
}
.circle img, ul li {
  align-items: center;
}
.circle img {
  display: block;
  max-width: 150px;
  margin-top: 10px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  transition: 0.6s;
}
.circle img:hover {
  filter: brightness(1.2);
}
/* GlobalName */
.circle .name-container p:first-child {
  user-select: none;
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

/* Username (@username em cinza pequeno) */
.circle .name-container p:nth-child(2) {
  user-select: none;
  font-size: 14px;
  /* menor que o nome */
  font-weight: 400;
  color: #aaa;
  /* cinza */
  margin: 2px 0 0 0;
}

/* Badges */
.circle .name-container p:nth-child(3) {
  user-select: none;
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.circle .flag-icon {
  user-select: none;
  display: inline-block;
  width: 30px;
  height: 30px;
  align-items: center;
}
.circle .flag-icon:hover {
  filter: brightness(110%);
  transform: scale(1.4);
  align-items: center;
}
ul {
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 70px;
}
ul li {
  list-style: none;
  margin-left: -100px;
}
ul li a {
  text-decoration: none;
  font-size: 0.8em;
  line-height: 0.8em;
  letter-spacing: 1px;
  align-items: center;
  color: transparent;
  -webkit-text-stroke: 1px var(--clr);
  cursor: pointer;
  align-items: center;
}
ul li a::before {
  content: attr(data-text);
  position: absolute;
  color: var(--clr);
  width: 0;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  transition: 0.8s;
  border-right: 8px solid var(--clr);
}
ul li a:hover::before {
  width: 100%;
  align-items: center;
  margin: 0 auto;
  filter: drop-shadow(7px -12px 50px var(--clr));
}

@media only screen and (max-width: 600px) {
  .circle {
    width: 100%;
    max-width: 100%;
    flex-direction: column; 
    margin: 0rem 0;
  }
}
