/* Reset */
* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
  background: #090b11;
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Particles */
#particles {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 1;
}

/* Cards style */
.card {
  background: rgba(20, 30, 50, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px;
  user-select: none;
  box-shadow: none;
}

/* --- PROFILE CARD --- */
.top-card {
  text-align: center;
  user-select: text;
}

.profile-pic {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 2px solid #47474756;
}

.username {
  font-size: 34px;
  font-weight: 700;
  color: #a8d0ff;
  margin: 0 0 6px;
}

.subtitle {
  font-size: 13px;
  color: #a8d0ff88;
  filter: blur(0.4px);
  margin: 0;
}

/* --- MUSIC PLAYER --- */
.music-player-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 15px 25px 20px 25px;
}

.album-art {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.music-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #a8d0ff;
  user-select: text;
}

.song-title {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Progress bar */
#progress-bar {
  -webkit-appearance: none;
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}

#progress-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #82caff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -4.5px;
  transition: background-color 0.25s ease;
}

#progress-bar::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #82caff;
  border-radius: 50%;
  cursor: pointer;
}

/* Volume controls */
.volume-container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #a8d0ffcc;
  user-select: none;
  margin-bottom: 10px;
}

#volume-control {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  outline: none;
}

#volume-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #82caff;
  border-radius: 50%;
  cursor: pointer;
}

#volume-control::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #82caff;
  border-radius: 50%;
  cursor: pointer;
}

/* Player buttons */
.player-buttons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

.player-buttons button {
  background: rgba(130, 202, 255, 0.35);
  border: none;
  color: #a8d0ff;
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  user-select: none;
}

.player-buttons button:hover {
  background: rgba(130, 202, 255, 0.65);
}

/* --- DROPDOWN LINKS --- */
.dropdown-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 18px;
  user-select: none;
}

.dropdown-item {
  background: rgba(35, 45, 65, 0.18);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px 20px;
  color: #a8d0ffcc;
}

.dropdown-header {
  font-weight: 630;
  font-size: 19px;
  color: #82caff;
  cursor: pointer;
  user-select: none;
  user-drag: none;
  margin-bottom: 0.1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-content {
  display: none;
  gap: 12px;
  align-items: center;
  font-size: 15px;
  user-select: text;
  word-break: break-all;
  color: #a8d0ffdd;
}

.dropdown-content.active {
  display: flex;
}

.link-icon {
  width: 24px;
  height: 24px;
  user-select: none;
}

/* ENTER SCREEN */
#enter-screen {
  position: fixed;
  inset: 0;
  background: #000a15cc;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 50;
  cursor: pointer;
}

#enter-text {
  font-size: 28px;
  font-weight: 800;
  color: #82caff;
  letter-spacing: 0.2em;
  user-select: none;
  font-family: monospace, monospace;
}
