
body {
    background: url('/images/bc.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden; 
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; 
}


.wrapper {
          text-align: center;
      }

      .wrapper h1 {
          color: #fff;
          font-size: 34px;
          font-weight: 700;
          font-family: "Josefin Sans", sans-serif;
          background: linear-gradient(to right, hsl(258, 89%, 63%) 10%, #ffffff 50%);
          background-size: auto auto;
          background-clip: border-box;
          background-size: 200% auto;
          color: #fff;
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: textclip 1.5s linear infinite;
          display: inline-block;
      }
      .wrapper h2 {
          color: #fff;
          font-size: 14px;
          font-weight: 400;
          font-family: "Josefin Sans", sans-serif;
          background: linear-gradient(to right, hsl(253, 50%, 60%) 10%, #ffffff 50%);
          background-size: auto auto;
          background-clip: border-box;
          background-size: 200% auto;
          color: #fff;
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          animation: textclip 1.5s linear infinite;
          display: inline-block;
      }
      

      @keyframes textclip {
          to {
              background-position: 200% center;
          }
      }
.click-text {
  color: #ffffff;
  font-size: 2em;
  animation: glow 0.5s ease-in-out infinite alternate;
  font-family: 'Sintony', sans-serif;
}

.description-text {
    color: white;
    font-family: 'Noto Sans Mono', monospace;
    gap: auto;
    margin-top: 20px; /* This will create space above the description text */
}
.description-text2 {
    color: white;
    font-family: 'Noto Sans Mono', monospace;
    gap: auto;
    margin-top: 20px; /* This will create space above the description text */
}

.fade-out {
  animation: fadeOut 1.9s forwards;
}


.profile-container.active {
  max-height: 0;
}

.profile-container {
  text-align: center;
  position: relative;
  background-color: rgba(0, 0, 0, 0.685);
  padding: 20px;
  border-radius: 15px; 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); 
  max-width: 340px; 
  width: 100%;
  border: 1px solid hsl(0, 0%, 3%);
  overflow: hidden;
}

.banner {
  width: 100%;
  height: 150px;
  background-image: url('/path-to-your-banner-image.png'); /* Update the image path */
  background-size: cover;
  background-position: center;
  border-radius: 15px 15px 0 0; /* Round top corners */
  position: relative;
}

.profile-picture {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid white;
  position: absolute;
  top: 80px; /* Adjust this to position the profile picture in the center of the banner */
  left: 50%;
  transform: translateX(-50%);
}

.wrapper {
  position: relative;
  margin-top: 100px; /* Space below the profile picture */
}

.profile-info {
  margin: 10px;
}
.social-icons {
  list-style: none;
  padding: 0;
}
.social-icons li {
  display: inline;
  margin: 0 10px;
}
.social-icons li a {
  color: white;
  text-decoration: none;
}
.social-icons li a:hover {
  text-decoration: underline; 
}
.ip-display {
  margin-top: 20px;
}
.website-link {
  position: absolute;
  bottom: -30px; 
  left: 50%;
  transform: translateX(-50%);
  width: auto;
}
.line {
    display: block;
    width: 155px;
    height: 2px;
    background-color: hsl(281, 94%, 42%);
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
  }
@keyframes glow {
  from {
    text-shadow: 0 0 10px white, 0 0 20px white, 0 0 30px white;
  }
  to {
    text-shadow: 0 0 20px white, 0 0 30px white, 0 0 40px white;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

body {
    background-color: #1e1e1e;
    font-family: 'Josefin Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.widget-container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
    max-width: 300px;
    gap: auto;
    border: 1px solid hsl(0, 0%, 3%);
    border-radius: 15px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); 
    max-width: 300px; 
}
.total-views {
        position: absolute; /* Absolute positioning */
        bottom: 10px; /* Distance from the bottom */
        left: 10px; /* Distance from the left */
        display: flex; /* Flexbox for icon and text */
        align-items: center; /* Center items vertically */
        font-size: 18px; /* Font size */
        color: white; /* Text color */
        text-shadow: 0 0 5px #fff, 0 0 10px #ff00ff, 0 0 20px #ff00ff; /* Glowing effect */
    }

.widget-content {
    display: flex;
    align-items: center;
    gap: 15px;
}
.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
}
.user-name {
    color: white;
    font-weight: bold;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.last-seen {
    color: #bbb;
    font-size: 0.9em;
}
.status-icon, .vip-icon {
    width: 20px;
    height: 20px;
}
.activity-container {
    margin-top: 10px;
    color: white;
}
.hidden {
    display: none;
}
.status-message {
  color: white;
  margin-top: 10px;
}

.status-dnd {
  color: red;
  font-weight: bold;
}

.status-online, .status-idle, .status-offline {
      color: #ccc;
    }
    #status-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-color);
    position: absolute;
    bottom: 65px;
    right: 10px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#status-indicator::after {
    content: '';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
}
.status-online::after { background-color: #3ba55c; }
.status-idle::after { background-color: #faa61a; }
.status-dnd::after { background-color: #ed4245; }
.status-offline::after { background-color: #747f8d; }
.music-toggle-button {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.music-toggle-button:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Darker background on hover */
}
.badges-container {
        display: flex;
        justify-content: center;
        gap: 8px; /* Adjusted gap between badges */
        margin-bottom: 10px; /* Gap below badges */
    }
.badge {
    position: relative;
    width: 25px; /* Smaller badge size */
    height: 25px; /* Smaller badge size */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 25px; /* Centering icon */
    color: white;
    font-size: 12px; /* Smaller font size */
    cursor: pointer;
    transition: transform 0.2s ease;
}
.badge:hover {
    transform: scale(1.2);
    box-shadow: 0px 0px 10px hsl(276, 94%, 53%);
}
.tooltip {
    position: absolute;
    bottom: 30px; /* Position above the badge */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
    font-size: 10px; /* Smaller tooltip size */
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
}
.badge:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
.widget-container {
    margin-top: 5px; /* Gap above the widget */
}
.zoom-out {
    transform: scale(0.9); /* Default zoom out effect */
    transition: transform 0.3s ease; /* Smooth transition */
}
.volume-control {
  position: fixed;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 10px;
  width: 40px; /* Initially small to show only the button */
  height: 40px; /* Set height to match width for a square */
  transition: width 0.3s ease-in-out; /* Smoothly expand width */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5); /* Black shadow outline */
  cursor: pointer;
  z-index: 1000; /* Keep it on top */
  overflow: hidden; /* Hide the slider until the box expands */
}

.volume-control:hover {
  width: 150px; /* Expand width to fit both the button and slider */
}

#mute-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px; /* Adjust font size to fit nicely in the box */
  color: white;
  padding: 0;
  margin: 0;
  width: 40px; /* Set width for the button */
  height: 40px; /* Set height for the button */
  display: flex;
  align-items: center;
  justify-content: center; /* Center the icon */
}

#mute-toggle i {
  transition: transform 0.2s ease-in-out;
}

#mute-toggle:hover i {
  transform: scale(1.1); /* Slightly enlarge the icon on hover */
}

#volume-slider {
  width: 100px;
  margin-left: 10px;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease-in-out; /* Smooth appearance */
}

#volume-slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  background: white;
  border-radius: 5px; /* Makes the track slightly rounded */
}

#volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: white; /* White slider thumb */
  border: 1px solid #ccc; /* Optional border */
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px; /* Adjust thumb position to center on track */
}

/* Slider thumb for Firefox */
#volume-slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: white; /* White slider thumb for Firefox */
  cursor: pointer;
  border-radius: 50%; /* Make it circular */
}

/* Slider thumb for IE and Edge */
#volume-slider::-ms-thumb {
  width: 15px;
  height: 15px;
  background: white; /* White slider thumb */
  border: none; /* Remove border */
  border-radius: 50%; /* Make it circular */
}

#volume-slider:hover {
  opacity: 1; /* Increase opacity on hover */
}

.volume-control:hover #volume-slider {
  opacity: 1; /* Fade in the slider when hovering over the control */
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.mt-7 {
  margin-top: 1.75rem;
}

.flex {
  display: flex;
}

.justify-center {
  justify-content: center;
}

.h-10 {
  height: 2.5rem;
}

.container {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  min-height: 15rem;
  padding: 35px 15px;
  width: 100%;
  max-width: 650px;
  text-align: center;
  /* outline: 3px solid rgba(255, 255, 255, 0.089);
  box-shadow: 0px 0px 100px 50px #00000060; */
}

.container .profileLayout .profileBadges {
  content: attr(data-tooltip);
  margin-bottom: 17px;
  margin-top: 8px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 25px;
  display: flex;
  gap: 5.5px;
  justify-content: center;
  padding: 6px 10px;
}

.container .profileLayout .profileBadges .profileBadge {
  position: relative;
  font-size: 20.5px;
  display: flex;
  align-items: center;
  color: #ffffff !important;
}

.container .profileLayout .profileBadges .profileBadge::before {
  content: '';
  background-color: black;
  opacity: 0;
  color: white;
  position: absolute;
  font-size: 15px;
  font-weight: 600;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1rem;
  padding: 2px 16px;
  z-index: 1;
  filter: none;
  box-shadow: none;
  white-space: nowrap;
  transition: opacity .3s;
}

.container .profileLayout .profileBadges .profileBadge:hover::before {
  opacity: .8;
}

.container .profileLayout .profileBadges .profileBadge.dev:hover::before {
  content: 'Developer';
}
.container .profileLayout .profileBadges .profileBadge.staff:hover::before {
  content: 'Staff';
}
.container .profileLayout .profileBadges .profileBadge.certif:hover::before {
  content: 'Certified';
}
.container .profileLayout .profileBadges .profileBadge.premium:hover::before {
  content: 'Premium';
}
.container .profileLayout .profileBadges .profileBadge.bughunter:hover::before {
  content: 'Bug Hunter';
}
.container .profileLayout .profileBadges .profileBadge.earlysupporter:hover::before {
  content: 'Early Supporter';
}
.container .profileLayout .profileBadges .profileBadge.booster:hover::before {
  content: 'Server Booster';
}
.container .profileLayout .profileBadges .profileBadge.graphic:hover::before {
  content: 'Graphic Designer';
}