@import url('https://fonts.cdnfonts.com/css/minecraftia');

body {
  margin: 0;
  font-family: 'Minecraftia', sans-serif;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  position: relative;
  width: 40rem;
  padding: 27px 23px 27px 23px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(94, 94, 94, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  perspective: 1000px;
  transition: transform 0.3s ease
}

.view-count {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.view-count svg {
  height: 1.25rem;
  width: 1.25rem;
  fill: #ffffff;
}
.view-count span {
  font-size: .75rem;
  color: #ffffff;
}

.profile {
  display: flex;
  align-items: center; 
  gap: 15px; 
  margin-bottom: 20px;
  border-radius: 10px;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.profile-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px; 
  width: fit-content;
  max-width: 400px;
  text-align: left;
}

.name-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  line-height: 1;
}

.name-container {
  position: relative;
  display: inline-block;
}

.name {
  position: relative;
  display: inline-block;
  font-size: 30px;
  margin: 0;
  color: #fff;
  width: fit-content;
  white-space: nowrap;
  z-index: 1;
  line-height: 1.1;
}

.name::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: url('https://file.garden/aO-mpjlLlhrkp_xc/sparkle.gif') center/cover no-repeat;
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  border-radius: 8px;
  mix-blend-mode: screen;
}

.badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  position: relative;
  z-index: 5;
}

.badge-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.badge {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  object-fit: contain;
  cursor: pointer;
  vertical-align: middle;
  z-index: 6;
  transition: transform 0.25s ease, filter 0.25s ease;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.badge:hover {
  transform: scale(1.15);
  filter: brightness(1.15) drop-shadow(0 0 12px rgba(255, 255, 255, 0.7));
}

.badge-wrap::before {
  content: attr(data-title);
  position: absolute;
  bottom: 160%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(55, 55, 55, 0.9);
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  border-radius: 5px;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  pointer-events: none;
  z-index: 999;
}

.badge-wrap:hover::before {
  opacity: 1;
  visibility: visible;
}

.profile-info p {
  margin: 0;
  padding: 0;
}

.bio {
  font-size: 15px;
  color: #fff;
  width: 200px;
  display: block;
  margin-top: 4px;
  line-height: 1.3;
  opacity: 1;
  transition: opacity 0.25s ease;
  position: absolute;
  left: 0;
  top: 110%;
  transform: translateY(4px);
  pointer-events: none;
}

.bio:empty {
  opacity: 0;
}

.bar {
  height: 2px;
  width: 300px;
  background: rgb(0, 0, 0);
  margin: 0 auto;
  margin-top: -15px;
}

.tg-card-container {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  width: 38rem;
  margin: 0 auto;
}

.tg-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  height: 4rem;
}

.tg-card img {
  border: 3px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 4.375rem;
  height: 4.375rem;
  object-fit: cover;
  transition: border-color 0.2s ease;
}

.tg-card img.status-online { border-color: #43b581; }
.tg-card img.status-idle   { border-color: #faa61a; }
.tg-card img.status-dnd    { border-color: #f04747; }
.tg-card img.status-offline{ border-color: #747f8d; }

.tg-card div{flex:1}
.tg-card strong{display:block;font-size:15px;color:#fff;font-weight:400;}
.tg-card button{
  margin-left:auto;
  background:#14a1e7;
  color:#fff;
  border:none;
  padding:2px 12px;
  border-radius:15px;
  font-weight:600;
  cursor:pointer;
}
.tg-card button:hover{background:#0077b3}

.tg-bio{
  display:block;
  font-size:11.4px;
  color:rgba(255,255,255,.7);
  margin-top:2px;
}

#dc-name {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

#dc-activity {
  width: 4.375rem;
  height: 4.375rem;
  border: 0;
  border-radius: 10px;
  margin-left: auto;
  object-fit: cover;
}

.social-icons{
  text-shadow: 0 0 1.5rem rgb(194, 194, 194);
  margin-top: 0px;
  color: rgb(143, 143, 143);
  font-size: 30px;
  transition: 0.2s ease-in-out;
}
.social-icons:hover{
  transform: scale(1.1);
}
.tooltip a {
position: relative;
text-decoration: none;
}

.tooltip a::before {
content: attr(data-title);
position: absolute;
bottom: 250%;
left: 50%;
transform: translateX(-50%);
background-color: #333;
color: #fff;
padding: 5px 8px;
font-size: 12px;
border-radius: 5px;
white-space: nowrap;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease;
}

.tooltip a:hover::before {
opacity: 1;
visibility: visible;
}
.spotifys{
  margin-bottom: 50px;
}
.socials{
display: flex;
justify-content: center;
margin-top: 30px;
margin-bottom: 5px;
gap: 5px;
}

.btn-link {
animation: up 2s;
padding: 16px 44px;
width: 95%;
text-align: center;
background-color: #0d0d0e;
border: 0 solid #1c1c1c;
border-radius: 8px;
-webkit-box-shadow: 0 0 17px 1px rgba(0, 0, 0, .57);
-moz-box-shadow: 0 0 17px 1px rgba(0, 0, 0, .57);
box-shadow: 0 0 17px 1px rgba(0, 0, 0, .57);
cursor: pointer;
color: #a7a7a7;
transition: transform .25s ease, color .25s ease, background-color .25s ease, border-color .25s ease;
margin-bottom: 22px;
font-weight: 400;
font-family: poppins
}

.btn-link:hover {
-webkit-box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.9);
-moz-box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.9);
box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.9);
transform: scale(.95)
}

.btn-link:active {
transform: scale(.92)
}

.mark{
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
  font-weight: bold;
}
.mark:hover{
  text-decoration: none;
}
.background{
  padding: 80px 0px;
}
.blur{
  background: rgb(0 0 0 / 40%);
  backdrop-filter: blur(8px); 
  width: 100%;
  max-width: 80%;
  margin: auto;
  padding: 30px 0px;
  margin-top: 80px;
}
@keyframes down {
  from {
      transform: translate3d(0, -150px, 0);
      opacity:0
  }
  to {
      transform: translate3d(0, 0, 0);
      opacity: 1
  }
}
@keyframes up {
  from {
      transform: translate3d(0, 150px, 0);
      opacity:0
  }
  to {
      transform: translate3d(0, 0, 0);
      opacity: 1
  }
}
@-webkit-keyframes fadeIn {
from {opacity: 0;} 
to {opacity:0.8;}
}

@keyframes fadeIn {
from {opacity: 0;}
to {opacity:0.8 ;}
}
@media only screen and (max-width: 768px) {
  .blur{
      max-width: 100%;
  }
}
@media only screen and (min-width: 2000px) {
  .blur{
      max-width: 50%;
  }
}

.blurpage{
  background:rgb(0 0 0/20%);
  backdrop-filter:blur(10px);
  position:fixed;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  transition:all .5s ease-in-out
}
.blurpagerplc{background:0 0;backdrop-filter:none}
.blurpagerplc2{width:10%;height:10%}

.musicbtn{
  font-size:20px;
  color: rgb(255, 255, 255);
  background-color: rgba(225, 225, 225, 0.05);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:62px;padding:16px;
  border-radius:15px;
  border: none;
  outline:none;
  cursor:pointer;
  transition:all 2s ease-out;
  transition-timing-function:cubic-bezier(.1,1,0,1);
  transform-origin:right top;
  opacity:.8
}
.musicbtn:hover{
  opacity:1
}

audio{
  display:none
}
.replace{
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform:translate(0,0);
  opacity:1;
  top:15px;
  left:15px;
}




