body {
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 32px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #222;
}

.section-title .emoji {
  font-size: 1.7em;
}

.section-divider {
  border: none;
  border-top: 3px solid #000000;
  margin-bottom: 28px;
  width: 100%;
}

.profile-label {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #222;
}

.profile-card {
  background: transparent;
  border-radius: 24px;
  box-shadow: 0 0px 0px 0 rgba(255, 246, 246, 0), 0 1.5px 8px 0 rgba(255, 255, 255, 0.067);
  padding: 48px 32px 36px 32px;
  max-width: 480px;
  width: 100%;
  margin: 60px auto 32px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(0px);
  border: transparent solid 0px;
  transition: 
    box-shadow 0.3s cubic-bezier(.4,2,.6,1), 
    background 0.0s, 
    transform 0.3s cubic-bezier(.4,2,.6,1);
}

.profile-card:hover {
  box-shadow: 0 0px 0px 0 rgba(255, 255, 255, 0.533), 0 2px 24px 0 #ffffffcc;
  background: rgba(236, 0, 0, 0.97);
  transform: translate(-50%, -54%) scale(1.04);
  border-color: #000000;
  background: transparent;
}

.profile-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #000000 60%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8em;
  color: #ff0000;
  margin-bottom: 18px;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 60%;
  object-fit: cover;
}

.profile-username {
  font-size: 2.2em;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #fff; /* fallback color */
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  font-family: 'Poppins', 'Segoe UI', 'Arial Rounded MT Bold', 'Arial', sans-serif; /* Customize your font stack here */
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.667), 0 0px 2px rgba(255, 255, 255, 0.533);
  text-transform: uppercase; /* Optional: makes the username uppercase */
}

.profile-bio {
  font-size: 1.1em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 22px;
  text-align: center;
  animation: bioLoop 2.5s linear infinite alternate;
}

@keyframes bioLoop {
  0% {
    letter-spacing: 1px;
    filter: brightness(1) drop-shadow(0 0 0px #fff);
    opacity: 1;
  }
  50% {
    letter-spacing: 4px;
    filter: brightness(1.2) drop-shadow(0 0 8px #fff);
    opacity: 0.85;
  }
  100% {
    letter-spacing: 1px;
    filter: brightness(1) drop-shadow(0 0 0px #fff);
    opacity: 1;
  }
}

#typed-text {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14.4px;
  margin: 8px 0px;
  opacity: 0.9;
}

.profile-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  margin-bottom: 0;
}

.profile-links a {
  color: #fff;
  font-size: 1.6em;
  text-decoration: none;
  filter: drop-shadow(0 0 4px #fff8);
  transition: color 0.2s, filter 0.2s;
}

.profile-links a:hover {
  color: #000000;
  filter: drop-shadow(0 0 8px #000000aa);
}

.gradient-text {
  background: linear-gradient(270deg, #ffffff, #000000, #ffffff, #000000);
  background-size: 800% 800%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 10s ease infinite;
  display: inline-block;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Volume control styling */
.volume-control {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: 
  linear-gradient(135deg, #ffffff, #000000);
  padding: 6px 14px;
  border-radius: 60px;
  box-shadow: 0 0 16px 2px #fff, 0 0 32px 8px #0002;
}

.volume-control label {
  color: #ffffff;
  font-size: 1.2em;
  text-shadow: 0 0 8px #ffffff, 0 0 4px #ffffff;
}

.volume-control {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
#volume-slider {
  width: 100px;
  accent-color: #ffffff;
  filter: drop-shadow(0 0 6px #fff) drop-shadow(0 0 2px #ffffff);
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Add to your styles.css */
#enterxyz {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  transition: opacity 0.4s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#enterxyz.hide {
  opacity: 0;
  pointer-events: none;
}

.sparkle-overlay {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.sparkle-overlay::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('sparkle_white.gif') center center / cover no-repeat;
  opacity: 10;
  z-index: 2;
  border-radius: inherit;
}

.discord-presence-container {
  max-width: 420px;
  margin: 32px auto 0 auto;
  font-family: 'Poppins', sans-serif;
}

.discord-presence-title {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  text-shadow: 0 2px 8px #fff4;
}

.discord-presence-card {
  background: #444;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0002, 0 1.5px 8px #fff2;
  padding: 24px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discord-presence-cover {
  width: 110px;
  height: 110px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7f7fd5 0%, #86a8e7 50%, #91eac9 100%);
  margin-bottom: 18px;
}

.discord-presence-info {
  width: 100%;
  text-align: center;
}

.discord-presence-status {
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 2px;
}

.discord-presence-song {
  color: #fff;
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 14px;
}

.discord-presence-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ccc;
  font-size: 0.95em;
  gap: 8px;
}

.discord-presence-bar {
  flex: 1;
  height: 6px;
  background: #222;
  border-radius: 3px;
  margin: 0 8px;
  overflow: hidden;
  position: relative;
}

.discord-presence-bar-fill {
  width: 38%; /* Adjust for progress */
  height: 100%;
  background: linear-gradient(90deg, #1db954 60%, #86e7b8 100%);
  border-radius: 3px;
  transition: width 0.3s;
}

.activity {
  background: #333a;
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  margin: 8px 0 0 0;
  font-size: 0.98em;
  text-align: left;
}

#enterxyz .enter-hover {
  display: inline-block;
  background: #222;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 1.3em;
  font-weight: 600;
  margin-top: 12px;
  transition: transform 0.3s;
  box-shadow: 0 2px 16px #0006;
  cursor: pointer;
}

#enterxyz .enter-hover:hover {
  transform: scale(1.1);
}

#profile-views {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent; /* Make background transparent */
  border-radius: 0;        /* Remove border radius */
  padding: 0;
  margin: 32px auto 0 auto;
  text-align: center;
  box-shadow: none;        /* Remove box shadow */
  width: fit-content;
}

.profile-views-label {
  color: #fff;
  font-weight: 700;
  font-size: 1.08em;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.profile-views-count {
  color: #fff;
  font-size: 1.35em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.profile-views-count i.fa-eye {
  font-size: 1.2em;
}