
.centered, #welcomePage {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100vw;
  background: #000;
  z-index: 100;
  transition: opacity 0.7s;
}
#welcomePage.hide {
  opacity: 0;
  pointer-events: none;
}
.welcome-btn {
  background: none;
  color: #fff;
  font-size: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 22px 60px;
  border-radius: 22px;
  border: none; 
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.13s;
  cursor: url('https://senju.cc/images/cursor.png'), auto;
  box-shadow: none; 
}

body {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: url('https://senju.cc/images/cursor.png'), auto;
}
.main-container {
  background: #161616;
  border-radius: 22px;
  box-shadow: 0 0 80px 8px #000;
  padding: 48px 42px 28px 42px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  min-width: 650px;
  position: relative;
  display: none;
  transition: box-shadow 0.28s cubic-bezier(.15,.84,.44,1), 
              transform 0.28s cubic-bezier(.15,.84,.44,1);
  will-change: box-shadow, transform;
  perspective: 1200px;
}

.main-container.is-hovering {
  box-shadow: 0 0 110px 22px #000, 0 18px 50px 0 #111;
}
.main-container.active {
  display: flex;
  flex-direction: column;
}
.profile-row {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}
.profile-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.avatar-blur {
  width: 94px; height: 94px;
  border-radius: 50%;
  object-fit: cover;
  filter: blur(2px) brightness(1.1) grayscale(0.4);
  border: 4px solid #1d1d1d;
  background: #444;
  margin-bottom: 2px;
}
.skill-badge {
  position: absolute;
  left: 60px; top: 5px;
  background: #fff;
  color: #111;
  font-weight: 900;
  font-size: 0.98rem;
  padding: 3px 18px;
  border-radius: 50px;
  box-shadow: 0 0 18px 0 #fff;
  letter-spacing: 1.5px;
  z-index: 2;
}
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.profile-name {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: 2.8px;
  text-shadow: 0 0 14px #fff, 0 0 2px #fff;
  margin-bottom: 2px;
  filter: blur(1px) brightness(1.1);
  position: relative;
  color: #fff;
}
.profile-icons {
  margin-left: 5px;
  display: inline-flex;
  gap: 9px;
  vertical-align: middle;
}
.profile-icons i, .profile-icons .fa-star {
  color: #fff;
  opacity: 0.75;
  text-shadow: 0 0 8px #fff;
  font-size: 1.12rem;
  margin-left: 2px;
}
.profile-slogan {
  margin-top: 7px;
  color: #fff;
  font-size: 1.04rem;
  font-weight: 600;
  text-shadow: 0 0 14px #fff, 0 0 2px #fff;
  letter-spacing: .05em;
}
.cards-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 14px;
}
.card {
  background: #191919;
  border-radius: 18px;
  box-shadow: 0 0 24px #101010;
  padding: 20px 24px;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e3e3e3;
  position: relative;
  border: 1.5px solid #222;
}
.card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
  border: 2px solid #222;
}
.card-title {
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.card-desc {
  font-size: 0.96rem;
  color: #a0a0a0;
}
.online-dot {
  width: 11px; height: 11px;
  background: #24ff67;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: -2px;
  box-shadow: 0 0 6px #31fd6e;
}
.join-btn {
  margin-top: 7px;
  background: #1aff89;
  color: #181818;
  font-weight: 800;
  font-size: 1.01rem;
  border-radius: 10px;
  border: none;
  padding: 4px 19px;
  cursor: pointer;
  transition: filter 0.15s;
  box-shadow: 0 0 8px #3fff9b;
}
.join-btn:hover {
  filter: brightness(0.88);
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.social-link {
  color: #fff;
  font-size: 2.2rem;
  transition: filter 0.2s;
  filter: drop-shadow(0 0 10px #fff);
}
.social-link:hover {
  filter: drop-shadow(0 0 18px #fff) brightness(1.3);
}
.footer {
  margin-top: 17px;
  color: #888;
  font-size: 1.05rem;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.footer i {
  margin-right: 5px;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

.audio-player {
  position: fixed;
  top: 36px;
  left: 36px;
  z-index: 1200;
  display: flex;
  align-items: center;
  background: none;
  border-radius: 16px;
  box-shadow: none;
  padding: 0 14px;
  transition: background 0.2s, box-shadow 0.25s;
}

/* .audio-player:hover {
  background: #141414;
  box-shadow: 0 0 22px 0 #000;
} */

#audioIcon {
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s, filter 0.18s;
  filter: drop-shadow(0 0 7px #fff);
}

.audio-player input[type=range] {
  display: inline-block !important;
  width: 120px;
  margin-left: 20px;
  accent-color: #fff;
  transition: opacity 0.2s;
  opacity: 1;
  height: 6px;
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 #0006;
}

.audio-player input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border-radius: 50%;
  width: 22px; height: 22px;
  box-shadow: 0 0 15px #fff;
  cursor: pointer;
}
.audio-player input[type=range]:focus {
  outline: none;
}

.audio-player input[type=range] {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.audio-player:hover input[type=range] {
  opacity: 1;
  pointer-events: auto;
  display: inline-block !important;
}