html, body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  overflow: hidden;
  font-family: system-ui, sans-serif;
  background: black;
  cursor: none;
}

#cursor {
  position: fixed;
  width: 64px;
  height: 64px;
  background: url(./files/img/GreyOsuCross_2.png) center / contain no-repeat;
  pointer-events: none;
  z-index: 1000000;
  transform: translate(-50%, -50%);
}

#background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

#bg-particles {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
}

#intro {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  color: white;
  font-size: 3rem;
  transition: opacity 1s ease;
  z-index: 900000;
}

.overlay-hidden {
  opacity: 0;
  pointer-events: none;
}

#profile {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.25);
  transform-origin: center;
  z-index: 200;
  pointer-events: none;
}

#profile-glass {
  position: relative;
  width: 440px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0,0,0,0.18);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 25px 60px rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

#banner {
  width: 100%;
  height: 160px;
}

#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#avatar-wrap {
  width: 96px;
  height: 96px;
  margin-top: -48px;
  margin-bottom: 6px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}

#avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

#nick-wrap {
  position: relative;
  text-align: center;
  margin-bottom: -10px;
  padding: 0;
}

#nick {
  font-size: 38px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  text-shadow:
    0 0 10px rgba(255,255,255,0.7),
    0 0 30px rgba(255,255,255,0.4);
}

#lanyard-wrapper {
  width: 260px;
  margin-top: -120px;
  margin-bottom: 6px;
  border-radius: 14px;
  overflow: hidden;
  pointer-events: auto;
  text-decoration: none;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 10px 25px rgba(0,0,0,0.5);
}

#lanyard-img {
  width: 100%;
  display: block;
  opacity: 0.95;
}

#custom-link {
  margin-top: 2px;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  text-decoration: none;
}

#custom-link img {
  width: 48px;
  height: 48px;
  opacity: 0.85;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    filter 0.2s ease;
}

#custom-link:hover img {
  transform: scale(1.15);
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.7));
}

a,
a *,
button,
button * {
  cursor: none !important;
}
