/* ===================================================================
   BIO-CARD STYLESHEET
   Aesthetics: Cyber Dark, Glassmorphism, Neon Accents, Fluid Parallax
=================================================================== */

:root {
  --bg-primary: #0a0a0f;
  --bg-card: rgba(18, 18, 26, 0.72);
  --bg-card-hover: rgba(28, 28, 40, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(168, 85, 247, 0.35);

  --accent-purple: #a855f7;
  --accent-cyan: #06b6d4;
  --accent-pink: #ec4899;
  --accent-glow: rgba(168, 85, 247, 0.45);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Syne', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --card-radius: 24px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html, body {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-main);
  overflow-x: hidden;
  position: relative;
  user-select: none;
}

/* ===================================================================
   BACKGROUND AMBIENT & PARTICLES
=================================================================== */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ambient-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  transition: transform 0.2s ease-out;
}

.ambient-1 {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, var(--accent-purple), transparent 70%);
}

.ambient-2 {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-cyan), transparent 70%);
}

.ambient-cursor {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

/* CRT Scanlines Overlay */
.scanlines-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  pointer-events: none;
  background: linear-gradient(
    rgba(18, 16, 16, 0) 50%, 
    rgba(0, 0, 0, 0.25) 50%
  ), linear-gradient(
    90deg,
    rgba(255, 0, 0, 0.02),
    rgba(0, 255, 0, 0.01),
    rgba(0, 0, 255, 0.02)
  );
  background-size: 100% 3px, 6px 100%;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.scanlines-overlay.disabled {
  opacity: 0;
}

/* ===================================================================
   CLICK TO ENTER GATEWAY SCREEN
=================================================================== */
#enter-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.94);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

#enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
  pointer-events: none;
}

.enter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: enterPulse 2.8s infinite ease-in-out;
}

.enter-text {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--text-primary);
  text-shadow: 0 0 16px var(--accent-glow);
  text-transform: uppercase;
}

.enter-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  letter-spacing: 1px;
}

@keyframes enterPulse {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateY(-4px);
    text-shadow: 0 0 24px var(--accent-purple), 0 0 40px rgba(168, 85, 247, 0.5);
  }
}

/* ===================================================================
   MAIN WRAPPER & 3D PROFILE CARD
=================================================================== */
.main-wrapper {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  perspective: 1200px;
}

.profile-card {
  width: 100%;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--card-radius);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 34px 28px;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6),
              0 0 35px -8px var(--accent-glow),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  position: relative;
}

.profile-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.7),
              0 0 45px -5px var(--accent-glow),
              inset 0 1px 1px 0 rgba(255, 255, 255, 0.16);
}

/* Header: Avatar, Name, Badges */
.card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
}

.avatar-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
}

.avatar-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--accent-purple), var(--accent-cyan), var(--accent-pink), var(--accent-purple));
  filter: blur(10px);
  opacity: 0.75;
  animation: rotateGlow 6s linear infinite;
}

@keyframes rotateGlow {
  100% {
    transform: rotate(360deg);
  }
}

.avatar-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.avatar-status-badge {
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #22c55e;
  border: 3.5px solid #101018;
  z-index: 3;
  box-shadow: 0 0 10px #22c55e;
}

.avatar-status-badge.dnd {
  background: #ef4444;
  box-shadow: 0 0 10px #ef4444;
}

.avatar-status-badge.idle {
  background: #f59e0b;
  box-shadow: 0 0 10px #f59e0b;
}

/* User Identity */
.identity-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.name-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.display-name {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 30%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.badges-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.badge-item {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.badge-item:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 12px var(--accent-glow);
}

.badge-item svg {
  width: 14px;
  height: 14px;
}

.username-tag {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.username-tag:hover {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.4);
  color: #fff;
}

.bio-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 440px;
  margin-top: 4px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===================================================================
   DISCORD PRESENCE CARD
=================================================================== */
.discord-card {
  background: rgba(13, 14, 22, 0.65);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.4);
}

.discord-card:hover {
  border-color: rgba(88, 101, 242, 0.55);
  background: rgba(18, 20, 32, 0.8);
  box-shadow: 0 10px 25px -4px rgba(88, 101, 242, 0.25);
}

.discord-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discord-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.discord-avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #5865F2;
}

.discord-names {
  display: flex;
  flex-direction: column;
}

.discord-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}

.discord-status-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.discord-badge-brand {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: #5865F2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.discord-activity {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.activity-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.activity-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: #1DB954;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.activity-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
}

.activity-sub {
  font-size: 0.74rem;
  color: var(--text-secondary);
}

/* ===================================================================
   LINKS CONTAINER
=================================================================== */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transition: left 0.6s ease;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background: var(--bg-card-hover);
  border-color: var(--link-color, var(--accent-purple));
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.5),
              0 0 20px -6px var(--link-color, var(--accent-purple));
}

.link-button:active {
  transform: translateY(0px) scale(0.99);
}

.link-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.link-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--link-color, #fff);
  transition: var(--transition-smooth);
}

.link-button:hover .link-icon-box {
  background: var(--link-color, var(--accent-purple));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 14px var(--link-color, var(--accent-purple));
}

.link-icon-box svg {
  width: 20px;
  height: 20px;
}

.link-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.link-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.link-handle {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-family: var(--font-mono);
}

.link-action {
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.link-button:hover .link-action {
  color: var(--text-primary);
  transform: translateX(3px);
}

/* ===================================================================
   MUSIC PLAYER BAR
=================================================================== */
.music-player {
  background: rgba(14, 15, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.music-player:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.player-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.player-track-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.track-cover {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.player-main:hover .track-cover {
  transform: scale(1.05);
}

/* Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Volume Slider Container */
.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.volume-container:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(168, 85, 247, 0.4);
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 18px;
  height: 18px;
  transition: var(--transition-smooth);
}

.volume-btn:hover {
  color: #fff;
  transform: scale(1.1);
}

.volume-btn svg {
  width: 16px;
  height: 16px;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 75px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: background 0.1s ease;
}

.volume-slider::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  margin-top: -4px;
  box-shadow: 0 0 8px var(--accent-purple);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.volume-slider:hover::-webkit-slider-thumb {
  transform: scale(1.25);
  background: var(--accent-purple);
  box-shadow: 0 0 12px var(--accent-glow);
}

.volume-slider::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: transparent;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 8px var(--accent-purple);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.volume-slider:hover::-moz-range-thumb {
  transform: scale(1.25);
  background: var(--accent-purple);
  box-shadow: 0 0 12px var(--accent-glow);
}

.play-pause-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-purple);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 0 14px var(--accent-glow);
}

.play-pause-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.8);
}

.play-pause-btn svg {
  width: 16px;
  height: 16px;
}

/* Audio Visualizer Equalizer */
.equalizer-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 20px;
  padding: 0 4px;
}

.eq-bar {
  width: 3px;
  background: var(--accent-purple);
  border-radius: 3px;
  height: 4px;
  transition: height 0.1s ease;
}

.equalizer-bars.playing .eq-bar:nth-child(1) { animation: eqBounce 0.8s ease-in-out infinite; }
.equalizer-bars.playing .eq-bar:nth-child(2) { animation: eqBounce 1.1s ease-in-out infinite 0.2s; }
.equalizer-bars.playing .eq-bar:nth-child(3) { animation: eqBounce 0.7s ease-in-out infinite 0.4s; }
.equalizer-bars.playing .eq-bar:nth-child(4) { animation: eqBounce 1.3s ease-in-out infinite 0.1s; }
.equalizer-bars.playing .eq-bar:nth-child(5) { animation: eqBounce 0.9s ease-in-out infinite 0.3s; }

@keyframes eqBounce {
  0%, 100% { height: 4px; }
  50% { height: 18px; }
}

/* Timeline & Scrubber */
.player-timeline-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.timeline-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.timeline-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
  border-radius: 4px;
  transition: width 0.1s linear;
}

/* Volume control */
.volume-control {
  display: flex;
  align-items: center;
  gap: 6px;
}

.volume-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}

.volume-btn:hover {
  color: var(--text-primary);
}

.volume-btn svg {
  width: 14px;
  height: 14px;
}

/* ===================================================================
   CARD FOOTER (STATS & UID)
=================================================================== */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.views-count, .uid-tag {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tool-toggle-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-secondary);
  padding: 4px 8px;
  font-size: 0.7rem;
  cursor: pointer;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition-smooth);
}

.tool-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.tool-toggle-btn.active {
  color: var(--accent-purple);
  border-color: var(--accent-purple);
}

/* ===================================================================
   TOAST NOTIFICATION (COPY ALERT)
=================================================================== */
#toast-container {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: rgba(18, 18, 26, 0.92);
  border: 1px solid var(--accent-purple);
  box-shadow: 0 10px 25px -4px rgba(168, 85, 247, 0.4);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(12px);
  animation: toastIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             toastOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) 2.2s forwards;
}

@keyframes toastIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes toastOut {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* ===================================================================
   TOOLTIP
=================================================================== */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  z-index: 50;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===================================================================
   RESPONSIVE DESIGN
=================================================================== */
@media (max-width: 600px) {
  .profile-card {
    padding: 26px 18px;
    gap: 20px;
    border-radius: 20px;
  }

  .display-name {
    font-size: 1.55rem;
  }

  .avatar-wrapper {
    width: 95px;
    height: 95px;
  }

  .link-button {
    padding: 12px 14px;
  }

  .card-footer {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .volume-slider {
    width: 60px;
  }
}
