:root {
    --bg-dark: #000000;
    --text-main: #ffffff;
    --text-muted: #888888;
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* BEAUTIFUL BOLD WHITE CROSSHAIR WITH BLACK OUTLINE */
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='M8 1v14M1 8h14' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M8 1v14M1 8h14' stroke='white' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") 8 8, crosshair !important;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* -----------------------------
   Cinematic Bars (Slide in on load)
----------------------------- */
.cinematic-bar {
    position: fixed;
    left: 0;
    width: 100%;
    height: 12vh;
    background-color: #000;
    z-index: 3000; /* Above everything, including start screen */
    pointer-events: none;
    box-shadow: 0 0 50px rgba(0,0,0,1);
}

.top-bar {
    top: 0;
    transform: translateY(-100%);
    animation: slideInTop 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.bottom-bar {
    bottom: 0;
    transform: translateY(100%);
    animation: slideInBottom 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes slideInTop {
    to { transform: translateY(0); }
}

@keyframes slideInBottom {
    to { transform: translateY(0); }
}

/* -----------------------------
   Premium Noise Overlay
----------------------------- */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: noiseJitter 0.2s infinite;
}

@keyframes noiseJitter {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-1%, 1%); }
    50% { transform: translate(1%, -1%); }
    75% { transform: translate(1%, 1%); }
    100% { transform: translate(0, 0); }
}

/* -----------------------------
   Start Screen
----------------------------- */
.start-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #030303;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Beautiful moving scanlines on start screen */
.start-screen::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(255, 255, 255, 0.05) 50%), linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.03));
    z-index: 2;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
    animation: scanline 8s linear infinite;
    opacity: 1;
}

@keyframes scanline {
    0% { background-position: 0 0; }
    100% { background-position: 0 100%; }
}

.start-content {
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    z-index: 3;
    transition: opacity 0.4s ease-out, transform 0.6s ease-out;
}

.start-screen.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.1);
}

.terminal-text {
    font-size: clamp(32px, 6vw, 48px);
    color: #fff;
    margin-bottom: 24px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.2);
    letter-spacing: 4px;
    font-weight: bold;
}

.cursor {
    display: inline-block;
    width: clamp(16px, 3.5vw, 22px);
    height: clamp(30px, 6vw, 42px);
    background-color: #ffffff;
    vertical-align: bottom;
    margin-left: 8px;
    animation: blink 1.2s step-end infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

.click-to-start {
    font-size: clamp(14px, 3vw, 18px);
    color: #888;
    letter-spacing: 5px;
    text-transform: uppercase;
    animation: pulseText 2.5s ease-in-out infinite;
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

@keyframes pulseText {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(255, 255, 255, 0.6); }
}

/* -----------------------------
   Advanced Animated Background
----------------------------- */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: #000;
}

/* 3D Moving Grid */
.grid-container {
    position: absolute;
    bottom: -20%;
    left: -50%;
    width: 200%;
    height: 150%;
    perspective: 400px;
    transform-origin: bottom center;
}

.grid-floor {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(65deg) translateY(0);
    animation: gridMove 5s linear infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% { transform: rotateX(65deg) translateY(0); }
    100% { transform: rotateX(65deg) translateY(50px); }
}

/* Ash Particles / Starfield */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    bottom: -10px;
    background: #fff;
    border-radius: 50%;
    animation: flyUp linear infinite;
}

.particle-small { width: 1px; height: 1px; box-shadow: 0 0 2px #fff; }
.particle-mid { width: 2px; height: 2px; box-shadow: 0 0 4px #fff; }
.particle-large { width: 3px; height: 3px; box-shadow: 0 0 6px #fff; }

@keyframes flyUp {
    0% { transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120vh) scale(0.5); opacity: 0; }
}

/* Core Pulsing Glow */
.core-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
    border-radius: 50%;
    animation: pulseCore 8s infinite alternate ease-in-out;
    z-index: 0;
    pointer-events: none;
}
@keyframes pulseCore {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

/* Interactive Cursor Glow (Flashlight) */
.cursor-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Shooting Stars */
.shooting-star {
    position: absolute;
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
    border-radius: 50%;
    transform: rotate(20deg);
    animation: shoot 2s linear forwards;
    z-index: 2;
}

@keyframes shoot {
    0% { transform: translateX(-10vw) translateY(0) rotate(20deg); opacity: 1; }
    100% { transform: translateX(110vw) translateY(40vh) rotate(20deg); opacity: 0; }
}

/* Subtle atmosphere blobs */
.blob {
    position: absolute;
    filter: blur(120px);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.blob-1 {
    top: -20%; left: -10%;
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, #222 0%, transparent 70%);
    animation: float1 25s infinite alternate ease-in-out;
}
.blob-2 {
    bottom: -10%; right: -20%;
    width: 70vw; height: 70vw;
    background: radial-gradient(circle, #1a1a1a 0%, transparent 70%);
    animation: float2 30s infinite alternate-reverse ease-in-out;
}
.blob-3 {
    top: 40%; left: 40%;
    width: 40vw; height: 40vw;
    background: radial-gradient(circle, #2a2a2a 0%, transparent 70%);
    animation: float3 20s infinite alternate ease-in-out;
}

@keyframes float1 { 0% { transform: translate(0, 0); } 100% { transform: translate(100px, -50px); } }
@keyframes float2 { 0% { transform: translate(0, 0); } 100% { transform: translate(-80px, -100px); } }
@keyframes float3 { 0% { transform: translate(0, 0); } 100% { transform: translate(-60px, 80px); } }

/* -----------------------------
   Container & Glassmorphism
----------------------------- */
#main-content {
    opacity: 0;
    transform: scale(0.93) translateY(30px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
    z-index: 100; /* above background */
}

#main-content.visible {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    perspective: 1500px;
}

.card-float-wrapper {
    /* Handle floating here so inner card can tilt */
    width: 100%;
    opacity: 0;
    animation: floatCard 6s ease-in-out infinite;
}

.card-float-wrapper.animate-card {
    animation: slideUpFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatCard 6s ease-in-out infinite 1.4s;
}

.profile-card {
    background: var(--glass-bg);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    border-radius: 44px; /* More rounded */
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 
        0 40px 80px -15px rgba(0, 0, 0, 0.9), 
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 40px rgba(255,255,255,0.02);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out; /* Smooth mouse follow */
}

@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Sweeping light effect */
.profile-card::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-25deg);
    animation: sweepLight 8s infinite;
    pointer-events: none;
    z-index: 5;
}
@keyframes sweepLight {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.01) 40%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0) 60%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 480px) {
    .profile-card {
        padding: 55px 35px;
    }
}

.profile-card.animate-card {
    animation: slideUpFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9) rotateX(10deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* Avatar */
.avatar-container {
    position: relative;
    margin-bottom: 25px;
    z-index: 2;
}

.avatar-container::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.2));
    z-index: -1;
    animation: rotateRing 8s linear infinite;
}

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

.avatar {
    width: clamp(110px, 25vw, 140px);
    height: clamp(110px, 25vw, 140px);
    border-radius: 50%;
    object-fit: cover;
    background: linear-gradient(135deg, #111, #333);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(255,255,255,0.15);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
}

.profile-card:hover .avatar {
    transform: scale(1.08) rotate(4deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(255,255,255,0.3);
    border-color: rgba(255,255,255,0.25);
}

.username {
    font-size: clamp(26px, 8vw, 36px);
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(180deg, #fff 0%, #777 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(255,255,255,0.1);
    z-index: 2;
    position: relative;
    transition: text-shadow 0.3s ease;
}

/* Cyberpunk text glitch on hover */
.username:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.6);
}

.username::before,
.username::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
}

.username:hover::before {
    left: 2px;
    text-shadow: -2px 0 #fff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
    opacity: 0.5;
}

.username:hover::after {
    left: -2px;
    text-shadow: -2px 0 #888;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
    opacity: 0.5;
}

@keyframes glitch-anim {
  0% { clip: rect(40px, 9999px, 85px, 0); }
  20% { clip: rect(2px, 9999px, 12px, 0); }
  40% { clip: rect(82px, 9999px, 49px, 0); }
  60% { clip: rect(21px, 9999px, 89px, 0); }
  80% { clip: rect(3px, 9999px, 78px, 0); }
  100% { clip: rect(15px, 9999px, 2px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(24px, 9999px, 5px, 0); }
  20% { clip: rect(52px, 9999px, 11px, 0); }
  40% { clip: rect(12px, 9999px, 69px, 0); }
  60% { clip: rect(81px, 9999px, 19px, 0); }
  80% { clip: rect(43px, 9999px, 98px, 0); }
  100% { clip: rect(65px, 9999px, 32px, 0); }
}

.bio-text {
    color: var(--text-muted);
    font-size: clamp(14px, 4vw, 16px);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* -----------------------------
   Icons Row
----------------------------- */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(12px, 3vw, 22px);
    flex-wrap: wrap;
    z-index: 2;
}

.link-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
    color: #999;
    font-size: clamp(20px, 5vw, 24px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    
    opacity: 0;
    transform: translateY(35px) scale(0.7);
}

.link-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.link-btn.animate-icon {
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% { opacity: 0; transform: translateY(35px) scale(0.7); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.link-btn:hover {
    transform: translateY(-10px) scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255,255,255,0.15);
}

.link-btn:hover::before {
    width: 120%; height: 120%;
}

/* -----------------------------
   Mini Player
----------------------------- */
.mini-player {
    position: fixed;
    bottom: calc(12vh + 25px); /* Raised ABOVE the cinematic bar */
    right: 25px;
    width: 310px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px; /* More rounded */
    padding: 15px;
    display: none;
    align-items: center;
    gap: 15px;
    z-index: 500;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8), inset 0 0 10px rgba(255,255,255,0.02);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mini-player.visible {
    display: flex;
    animation: popInPlayer 0.8s 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards, floatPlayer 7s ease-in-out infinite 2.3s;
}

@keyframes popInPlayer {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatPlayer {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

/* Sweeping light effect for mini player */
.mini-player::after {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-25deg);
    animation: sweepLight 10s infinite;
    animation-delay: 2s; /* Offset from main card */
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
}

.mp-cover {
    width: 55px;
    height: 55px;
    border-radius: 50%; /* Make it a perfectly round vinyl record */
    overflow: hidden;
    flex-shrink: 0;
    background: #111;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.mp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: spinRecord 10s linear infinite;
    animation-play-state: paused;
}

.mp-cover.playing img {
    animation-play-state: running;
}

.mp-cover.playing {
    animation: pulseCover 2s ease-in-out infinite alternate;
}

@keyframes pulseCover {
    0% { box-shadow: 0 5px 15px rgba(0,0,0,0.5), 0 0 10px rgba(255,255,255,0.05); }
    100% { box-shadow: 0 10px 25px rgba(0,0,0,0.8), 0 0 25px rgba(255,255,255,0.15); }
}

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

.mp-cover-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
}

.mp-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    overflow: hidden;
}

.mp-track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mp-title-scroll {
    overflow: hidden;
    white-space: nowrap;
    width: 130px;
    position: relative;
}

.mp-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
}

.mp-artist {
    font-size: 12px;
    color: #aaa;
}

.mp-progress-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #bbb;
    font-family: 'Share Tech Mono', monospace;
}

#mp-seek {
    flex-grow: 1;
    -webkit-appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px; /* More rounded */
    outline: none;
    cursor: pointer;
}

#mp-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(255,255,255,0.8);
    transition: transform 0.2s;
}

#mp-seek::-webkit-slider-thumb:hover {
    transform: scale(1.5);
}

.mp-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2px;
}

.mp-main-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.mp-btn {
    cursor: pointer;
    font-size: 15px;
    color: #ccc;
    transition: all 0.2s ease;
}

.mp-btn:hover {
    color: #fff;
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
}

#mp-play-pause {
    font-size: 20px;
    color: #fff;
}

.mp-vol-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-vol-wrapper i {
    font-size: 13px;
    color: #aaa;
    cursor: pointer;
}

.mp-vol-wrapper i:hover {
    color: #fff;
}

#mp-vol {
    -webkit-appearance: none;
    width: 55px;
    height: 4px; /* Slightly thicker */
    background: rgba(255,255,255,0.2);
    border-radius: 10px; /* More rounded */
    outline: none;
    cursor: pointer;
}

#mp-vol::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

@media (max-width: 600px) {
    .mini-player {
        bottom: calc(12vh + 15px); /* Raised ABOVE the cinematic bar on mobile too */
        right: 15px;
        left: 15px;
        width: auto;
        padding: 12px;
        gap: 10px;
    }
}
