/* ═════════════════════════════════════════════════════════════════
   Alowyy1 Bio — REAL iOS 27 LIQUID GLASS
   Dark, Monochrome, Zero Color — Pure Frosted Optics Only
   ═════════════════════════════════════════════════════════════════ */

:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-display: 'Orbitron', monospace;
  --font-mono: 'Space Grotesk', sans-serif;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.38);
  --mx: 50%;
  --my: 50%;
}

/* ─── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body {
  width: 100%; height: 100%;
  overflow: hidden;
  background: #050508;
  color: var(--text-main);
  font-family: var(--font-primary);
}
* { user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }
input, textarea { user-select: auto; -webkit-user-select: auto; }

/* ─── Custom Cursor ────────────────────────────────────────────── */
.custom-cursor {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 99999;
}
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  transition: transform 0.05s ease-out;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(1px);
  transition: width 0.25s cubic-bezier(0.2,0.8,0.2,1),
              height 0.25s cubic-bezier(0.2,0.8,0.2,1),
              border-color 0.2s;
}
body.cursor-hover .cursor-ring {
  width: 52px; height: 52px;
  border-color: rgba(255,255,255,0.7);
  background: radial-gradient(circle, rgba(255,255,255,0.14) 0%, transparent 70%);
}
@media (pointer: coarse), (hover: none) {
  .custom-cursor { display: none !important; }
}

/* ─── Background ───────────────────────────────────────────────── */
.container {
  width: 100%; height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* Soft ambient light — monochrome only */
.liquid-ambient-canvas {
  position: fixed; inset: 0; overflow: hidden;
  z-index: 1; pointer-events: none;
}
.liquid-orb {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.35;
  mix-blend-mode: screen; will-change: transform;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 70%);
  top: 12%; left: 18%;
  animation: orbDrift1 20s ease-in-out infinite alternate;
}
.orb-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  bottom: 18%; right: 20%;
  animation: orbDrift2 24s ease-in-out infinite alternate;
}
.orb-3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: orbDrift3 16s ease-in-out infinite alternate;
}
.orb-4 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  top: 8%; right: 12%;
  animation: orbDrift2 28s ease-in-out infinite alternate-reverse;
}
.liquid-mesh-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(5,5,8,0.55) 70%, rgba(5,5,8,0.9) 100%);
}
@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(60px, -40px) scale(1.1); }
  100% { transform: translate(-40px, 50px) scale(0.92); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-70px, 40px) scale(1.08); }
  100% { transform: translate(50px, -60px) scale(0.94); }
}
@keyframes orbDrift3 {
  0%   { transform: translate(-50%,-50%) scale(0.9); }
  50%  { transform: translate(-40%,-55%) scale(1.15); }
  100% { transform: translate(-55%,-45%) scale(0.95); }
}

#background {
  position: fixed; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1; pointer-events: none;
  opacity: 0.5; filter: brightness(0.85) contrast(1.1);
}
.glitch-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 2; opacity: 0;
}
.hidden { display: none !important; }

/* ─── START SCREEN ─────────────────────────────────────────────── */
#start-screen {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(5,5,8,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
}
.start-glass-card {
  position: relative;
  padding: 22px 40px;
  border-radius: 9999px;
  /* ── THE GLASS ── */
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(40px) saturate(160%);
  -webkit-backdrop-filter: blur(40px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 20px 50px -10px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s;
  animation: startFloat 3.5s ease-in-out infinite alternate;
}
.start-glass-card:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow:
    0 28px 70px -10px rgba(0,0,0,0.85),
    inset 0 1.5px 0 rgba(255,255,255,0.9),
    inset 0 -1.5px 0 rgba(255,255,255,0.12);
}
.start-pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgba(255,255,255,0.7), 0 0 20px rgba(255,255,255,0.3);
  animation: pulseDot 1.8s infinite;
}
#start-text {
  font-family: var(--font-mono); font-size: 18px; font-weight: 600;
  letter-spacing: 2px; color: #fff;
}
.start-subtext {
  font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
@keyframes startFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}
@keyframes pulseDot {
  0%   { transform: scale(0.85); opacity: 0.5; }
  50%  { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.85); opacity: 0.5; }
}

/* ─── MAIN WRAPPER ─────────────────────────────────────────────── */
#profile-wrapper {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 100vh;
  padding: 24px 16px 130px 16px;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════════════════
   THE REAL LIQUID GLASS — iOS 27 STYLE
   Key: heavy backdrop-blur, subtle white top-edge specular,
   zero color, dark neutral alpha background
   ═══════════════════════════════════════════════════════════════════ */
.liquid-glass-panel {
  position: relative;
  width: 600px; max-width: 92vw;
  padding: 32px 34px;
  border-radius: 32px;

  /* Glass material */
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(60px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(60px) saturate(180%) brightness(1.05);

  /* Single clean border */
  border: 1px solid rgba(255,255,255,0.14);

  /* Depth shadow + top specular inset */
  box-shadow:
    0 30px 80px -15px rgba(0,0,0,0.7),
    0 10px 30px -8px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.06);

  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
  transition: box-shadow 0.4s, border-color 0.4s;
}

/* Specular sheen that tracks mouse */
.glass-specular-sheen {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    500px circle at var(--mx) var(--my),
    rgba(255,255,255,0.10) 0%,
    rgba(255,255,255,0.03) 40%,
    transparent 65%
  );
  mix-blend-mode: screen;
  z-index: 1; opacity: 0.8;
}

/* Subtle edge caustic — monochrome only */
.glass-caustic-edge {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.18) 0%,
    transparent 35%,
    transparent 75%,
    rgba(255,255,255,0.06) 100%
  );
  opacity: 0.4; z-index: 1;
}

.liquid-glass-panel:hover {
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 36px 90px -15px rgba(0,0,0,0.8),
    0 14px 40px -8px rgba(0,0,0,0.55),
    inset 0 1.5px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}

/* ─── Profile Header ───────────────────────────────────────────── */
.profile-header {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 18px;
}
.profile-container {
  position: relative; width: 96px; height: 96px; flex-shrink: 0;
}

/* Monochrome rotating ring — NOT rainbow */
.avatar-glass-ring {
  position: absolute; inset: -5px; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.5),
    rgba(255,255,255,0.12),
    rgba(255,255,255,0.5)
  );
  filter: blur(3px); opacity: 0.45;
  animation: ringRotate 8s linear infinite;
  z-index: 0;
}
.profile-picture {
  position: relative; width: 100%; height: 100%;
  border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 25px rgba(0,0,0,0.55);
  z-index: 1; cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.profile-picture:hover { transform: scale(1.06); }
@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ─── Name ─────────────────────────────────────────────────────── */
.profile-info { display: flex; flex-direction: column; gap: 4px; }
.name-and-badges { display: flex; align-items: center; }
#profile-name {
  font-family: 'Rubik Distressed', var(--font-display);
  font-style: italic;
  font-weight: 900; font-size: 34px; letter-spacing: 2px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  background: none;
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
  display: inline-block; min-height: 40px;
  transform: skewX(-8deg);
}

#profile-bio {
  position: relative; z-index: 2;
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 500; letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 22px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
  display: inline-block; width: fit-content;
}

/* ─── Footer ───────────────────────────────────────────────────── */
.profile-footer {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 18px;
}
.footer-row {
  display: flex; flex-direction: column; gap: 14px; width: 100%;
}

/* ─── Lanyard ──────────────────────────────────────────────────── */
#lanyard-widget { width: 100%; }
.liquid-subglass {
  display: flex; align-items: center; gap: 13px;
  text-decoration: none;
  padding: 12px 16px; border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(30px) saturate(170%);
  -webkit-backdrop-filter: blur(30px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 10px 25px -5px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.05);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, border-color 0.3s;
}
.liquid-subglass:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

#lanyard-avatar-wrap {
  position: relative; flex-shrink: 0; width: 44px; height: 44px;
}
#lanyard-avatar {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(255,255,255,0.45);
}
#lanyard-status-dot {
  position: absolute; bottom: 0; right: 0;
  width: 12px; height: 12px; border-radius: 50%;
  border: 2px solid #0a0a12;
}
.status-online { background: #23a55a; box-shadow: 0 0 8px #23a55a; }
.status-idle   { background: #f0b232; box-shadow: 0 0 8px #f0b232; }
.status-dnd    { background: #f23f43; box-shadow: 0 0 8px #f23f43; }
.status-offline { background: #80848e; }

#lanyard-info {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
}
#lanyard-header {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: rgba(255,255,255,0.35);
}
#lanyard-name {
  font-size: 14px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#lanyard-activity {
  font-size: 12px; color: rgba(255,255,255,0.6);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#lanyard-open {
  color: rgba(255,255,255,0.4);
  transition: transform 0.3s, color 0.3s;
  display: flex; align-items: center;
}
.liquid-subglass:hover #lanyard-open {
  color: #fff; transform: translate(2px, -2px);
}

/* Lanyard Activity Cards */
.lanyard-activity-card {
  display: flex; align-items: center; gap: 10px; margin-top: 3px;
}
.lanyard-activity-img {
  width: 36px; height: 36px; border-radius: 8px;
  object-fit: cover; border: 1px solid rgba(255,255,255,0.15);
}
.lanyard-activity-details {
  display: flex; flex-direction: column; min-width: 0; flex: 1;
}
.lanyard-activity-header {
  font-size: 9px; text-transform: uppercase;
  color: #1DB954; font-weight: 700;
}
.lanyard-activity-title {
  font-size: 12px; font-weight: 600; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lanyard-activity-subtitle {
  font-size: 10px; color: rgba(255,255,255,0.5);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lanyard-activity-timeline {
  display: flex; align-items: center; gap: 5px; margin-top: 3px;
}
.lanyard-time { font-size: 9px; color: rgba(255,255,255,0.4); }
.lanyard-progress-bar {
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.12); border-radius: 2px; overflow: hidden;
}
#lanyard-progress-fill {
  height: 100%; width: 0%;
  background: #1DB954; border-radius: 2px;
}

/* ─── Social Icons ─────────────────────────────────────────────── */
.social-links { width: 100%; }
.social-icons-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.social-glass-btn {
  flex: 1; height: 46px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 6px 16px -4px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(255,255,255,0.04);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s, border-color 0.3s;
}
.social-glass-btn:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
}
.social-icon {
  width: 22px; height: 22px; object-fit: contain;
  transition: transform 0.3s;
}
.social-glass-btn:hover .social-icon { transform: scale(1.12); }

/* ─── Visitor Counter ──────────────────────────────────────────── */
.visitor-counter {
  position: relative; align-self: center;
  display: flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 9999px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(25px) saturate(170%);
  -webkit-backdrop-filter: blur(25px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 5px 14px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.35);
  font-family: var(--font-mono);
  font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,0.75);
  cursor: default;
  transition: transform 0.3s, border-color 0.3s;
}
.visitor-counter:hover {
  transform: scale(1.03);
  border-color: rgba(255,255,255,0.25);
}
.visitor-icon { width: 15px; height: 15px; color: rgba(255,255,255,0.55); }
.tooltip {
  position: absolute; bottom: calc(100% + 8px);
  left: 50%; transform: translateX(-50%) translateY(4px);
  background: rgba(8,8,14,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px; border-radius: 8px;
  font-size: 10px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.visitor-counter:hover .tooltip {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════
   DOCKED LIQUID GLASS MEDIA PLAYER
   ═══════════════════════════════════════════════════════════════════ */
.liquid-player-island {
  position: fixed; bottom: 22px;
  left: 50%; transform: translateX(-50%);
  width: 580px; max-width: 92vw;
  z-index: 100;
  border-radius: 28px;

  /* Glass material */
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(60px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(60px) saturate(180%) brightness(1.05);

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 65px -10px rgba(0,0,0,0.8),
    0 8px 20px -5px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.55),
    inset 0 -1px 0 rgba(255,255,255,0.06);

  padding: 11px 16px;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s, border-color 0.35s;
}
.liquid-player-island:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(255,255,255,0.25);
  box-shadow:
    0 30px 80px -10px rgba(0,0,0,0.9),
    inset 0 1.5px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(255,255,255,0.08);
}
.player-glass-specular {
  position: absolute; inset: 0; border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.12) 0%,
    transparent 40%);
  opacity: 0.5; z-index: 0;
}

#media-player-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 14px; width: 100%;
}
.mp-cover-wrap {
  position: relative; width: 50px; height: 50px;
  border-radius: 14px; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.2);
}
#mp-cover {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
}
.liquid-player-island:hover #mp-cover { transform: scale(1.06); }
.mp-cover-gloss {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 55%);
  pointer-events: none;
}

#mp-content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 3px;
}
.mp-title-wrap {
  display: flex; align-items: baseline; gap: 8px;
  overflow: hidden; white-space: nowrap;
}
#mp-title {
  font-family: var(--font-primary);
  font-size: 14px; font-weight: 700; color: #fff;
  letter-spacing: 0.2px;
  overflow: hidden; text-overflow: ellipsis;
}
#mp-artist {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px; text-transform: uppercase;
}
#mp-timeline-container {
  display: flex; align-items: center; gap: 8px; width: 100%;
}
.time-label {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  color: rgba(255,255,255,0.45); min-width: 28px;
}
#mp-progress-wrap {
  flex: 1; position: relative; height: 16px;
  display: flex; align-items: center; cursor: pointer;
}
#mp-seek {
  position: absolute; width: 100%; opacity: 0;
  cursor: pointer; z-index: 5; height: 100%; margin: 0;
}
#mp-progress-bar {
  width: 100%; height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 9999px; overflow: visible;
  position: relative;
}
#mp-progress-fill {
  height: 100%; width: 0%;
  background: rgba(255,255,255,0.75);
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(255,255,255,0.2);
  transition: width 0.08s linear;
}
#mp-progress-dot {
  position: absolute; top: 50%; left: 0%;
  width: 10px; height: 10px; border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  box-shadow: 0 0 8px rgba(255,255,255,0.7);
  transform: translate(-50%,-50%) scale(0);
  opacity: 0; pointer-events: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), opacity 0.2s;
}
#mp-progress-wrap:hover #mp-progress-dot {
  transform: translate(-50%,-50%) scale(1); opacity: 1;
}

#mp-controls {
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.mp-btn {
  background: transparent; border: none;
  color: rgba(255,255,255,0.55);
  cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  padding: 7px; border-radius: 50%;
  transition: color 0.2s, transform 0.2s;
}
.mp-btn:hover { color: #fff; transform: scale(1.12); }

.mp-play-liquid {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #0a0a12;
  box-shadow:
    0 3px 14px rgba(255,255,255,0.2),
    inset 0 1px 1px rgba(255,255,255,0.9);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.mp-play-liquid:hover {
  transform: scale(1.1);
  box-shadow:
    0 5px 22px rgba(255,255,255,0.35),
    inset 0 1px 1px rgba(255,255,255,1);
  color: #000;
}

/* ─── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  #profile-wrapper { padding: 16px 12px 140px 12px; }
  .liquid-glass-panel {
    width: 95vw; padding: 22px 18px; border-radius: 26px;
  }
  .profile-header { gap: 14px; }
  .profile-container { width: 72px; height: 72px; }
  #profile-name { font-size: 22px; letter-spacing: 2px; }
  .liquid-player-island {
    width: 94vw; bottom: 14px; padding: 9px 12px; border-radius: 22px;
  }
  .mp-cover-wrap { width: 42px; height: 42px; border-radius: 10px; }
  #mp-title { font-size: 12px; }
  #mp-artist { font-size: 9px; }
  .time-label { font-size: 9px; min-width: 22px; }
}
