/* GTA2 SHRINE - 3D Diorama Styles */

/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'GTA2Custom';
    src: url('../assets/fonts/custom.ttc') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

:root {
    --metal-gray: #4a4a4a;
    --steel-blue: #5a7a8a;
    --rust-orange: #8a6a4a;
    --concrete: #3a3a3a;
    --dark-bg: #0a0a0a;
    --street-gray: #1a1a1a;
    --building-dark: #151520;
    --metal-sheen: #6a6a6a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GTA2Custom', 'Press Start 2P', monospace;
    background: linear-gradient(180deg, #0a0a0a 0%, #151520 50%, #1a1a1a 100%);
    color: #c0c0c0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ===== 3D SCENE SETUP ===== */
.scene {
    position: relative;
    width: 100%;
    height: 100vh;
    perspective: 1000px;
    overflow: hidden;
    transform-style: preserve-3d;
}

/* Layer system for parallax */
.layer {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
}

/* ===== BACKGROUND IMAGES ===== */
.bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: pixelated;
}

.bg-image:not([src]),
.bg-image[src=""],
.bg-image[src$=".png"]:error {
    display: none;
}

/* Fallback when no PNG loaded */
.sky-fallback {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #0d0221 0%,
        #1a0b2e 30%,
        #2d1b4e 60%,
        #1a1a2e 100%
    );
}

/* Hide fallback when sky PNG is present */
#sky-bg[src]:not([src=""]) ~ .sky-fallback {
    display: none;
}

#city-skyline {
    bottom: 40%;
    height: 200px;
    object-fit: contain;
    object-position: bottom;
}

/* ===== SKY LAYER ===== */
.sky {
    z-index: 1;
}

/* ===== BUILDING PNGS ===== */
.building-png {
    position: absolute;
    image-rendering: pixelated;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.building-png:hover {
    transform: scale(1.05) translateZ(30px);
}

.building-png:active {
    transform: scale(1.1) translateZ(50px);
}

/* Placeholder styling when no PNG */
.building-png:not([src]),
.building-png[src=""] {
    background: var(--building-dark);
    border: 2px solid var(--metal-gray);
}

/* Single background buildings image - stretched to fit */
.building-png.buildings-bg {
    left: 0;
    bottom: 20%;
    width: 100%;
    height: 50%;
    object-fit: fill;
    object-position: bottom;
}

/* ===== FAR BACKGROUND ===== */
.bg-far {
    z-index: 2;
}

/* ===== MID BACKGROUND ===== */
.bg-mid {
    z-index: 3;
}


/* Neon Logo - PNG version */
.neon-logo {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translateX(-50%);
    max-width: 400px;
    max-height: 150px;
    image-rendering: pixelated;
    filter: 
        drop-shadow(0 0 10px var(--neon-yellow))
        drop-shadow(0 0 20px var(--neon-yellow))
        drop-shadow(0 0 40px var(--neon-yellow));
    animation: flicker 3s infinite alternate;
}

/* Text fallback when no PNG */
.neon-logo:not([src]),
.neon-logo[src=""] {
    display: none;
}

.neon-logo:not([src]) + .neon-fallback,
.neon-logo[src=""] + .neon-fallback {
    display: block;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
    70% { opacity: 0.9; }
}

/* ===== PLATFORM/STREET LAYER ===== */
.platform {
    z-index: 4;
    bottom: 0;
    height: 40%;
}

#street-bg {
    bottom: 0;
    height: 70%;
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
    object-fit: fill;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#street-bg:hover {
    transform: perspective(500px) rotateX(60deg) scale(1.02);
}

#street-bg:active {
    transform: perspective(500px) rotateX(60deg) scale(1.04);
}

/* Fallback street when no PNG */
#street-bg:not([src]) ~ .street-fallback,
#street-bg[src=""] ~ .street-fallback {
    display: block;
}

.street-fallback {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: var(--street-gray);
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255,255,255,0.1) 50px,
            rgba(255,255,255,0.1) 60px
        );
    transform: perspective(500px) rotateX(60deg);
    transform-origin: bottom;
}

#sidewalk-bg {
    bottom: 0;
    height: 15%;
    object-fit: fill;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#sidewalk-bg:hover {
    transform: scale(1.02);
}

#sidewalk-bg:active {
    transform: scale(1.04);
}

/* Fallback sidewalk */
#sidewalk-bg:not([src]) ~ .sidewalk-fallback,
#sidewalk-bg[src=""] ~ .sidewalk-fallback {
    display: block;
}

.sidewalk-fallback {
    display: none;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 15%;
    background: #2a2a2a;
    border-top: 4px solid var(--metal-gray);
}

/* ===== FOREGROUND SPRITES ===== */
.foreground {
    z-index: 5;
    pointer-events: none;
}

/* Sprite slot containers */
.sprite-slot {
    position: absolute;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

.sprite-slot:hover {
    transform: scale(1.1) translateZ(30px);
}

/* Street/Platform props */
.prop-png {
    position: absolute;
    image-rendering: pixelated;
    max-width: 150px;
    max-height: 150px;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.prop-png:hover {
    transform: scale(1.1);
}

.prop-png:active {
    transform: scale(1.3);
}

/* Placeholder for empty props */
.prop-png:not([src]),
.prop-png[src=""] {
    display: none;
}

/* Legacy class for compatibility */
.sprite-container {
    position: absolute;
    bottom: 15%;
    left: 20%;
    pointer-events: auto;
}

.sprite {
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sprite:hover {
    transform: scale(1.1) translateZ(50px);
}

.sprite:active {
    transform: scale(1.3) translateZ(70px);
}

/* Character sprites */
.character {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

/* Vehicle sprites */
.vehicle-img {
    width: 192px;
    height: 96px;
    object-fit: contain;
}

/* Prop sprites */
.prop-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.prop-img:hover {
    transform: scale(1.1);
}

.prop-img:active {
    transform: scale(1.3);
}

/* Hide sprites when no PNG loaded */
.sprite:not([src]),
.sprite[src=""] {
    display: none;
}

/* Legacy support: placeholder styling for missing sprites */
.sprite-container .sprite:not([src]),
.sprite-container .sprite[src=""] {
    width: 64px;
    height: 64px;
    background: var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    color: #000;
    text-align: center;
}

/* ===== UI LAYER ===== */
.ui-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.ui-layer > * {
    pointer-events: auto;
}

/* ===== TITLE LOGO PNG ===== */
.title-logo {
    max-width: 100%;
    max-height: 120px;
    image-rendering: pixelated;
    margin-bottom: 2rem;
    pointer-events: auto;
    cursor: pointer;
    filter: grayscale(30%) contrast(1.1);
    animation: glitch 2s infinite;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.title-logo:hover {
    transform: scale(1.05);
    filter: grayscale(20%) contrast(1.2);
}

.title-logo:active {
    transform: scale(1.1);
    filter: grayscale(10%) contrast(1.3);
}

/* Hide PNG if no src */
.title-logo:not([src]),
.title-logo[src=""] {
    display: none;
}

/* Show text fallback when no PNG */
.title-logo:not([src]) + .title-fallback,
.title-logo[src=""] + .title-fallback {
    display: block;
}

/* Text fallback styling (hidden by default) */
.title-fallback {
    display: none;
    font-size: 2.5rem;
    color: var(--metal-sheen);
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 
        2px 2px 0 var(--rust-orange),
        -2px -2px 0 var(--steel-blue);
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% {
        text-shadow:
            2px 2px 0 var(--rust-orange),
            -2px -2px 0 var(--steel-blue);
    }
    25% {
        text-shadow:
            -2px 2px 0 var(--rust-orange),
            2px -2px 0 var(--steel-blue);
    }
    50% {
        text-shadow:
            2px -2px 0 var(--rust-orange),
            -2px 2px 0 var(--steel-blue);
    }
}

/* Menu */
.menu {
    display: flex;
    gap: 1rem;
    margin-top: 8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.7);
    border: 2px solid var(--metal-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 120px;
    min-height: 40px;
}

.menu-item:hover {
    background: rgba(90,122,138,0.2);
    box-shadow: 0 0 10px var(--metal-sheen);
    transform: translateY(-3px);
    border-color: var(--steel-blue);
}

/* Menu button PNG image */
.menu-btn-img {
    max-width: 100%;
    max-height: 32px;
    image-rendering: pixelated;
    display: none;
}

/* Show PNG when it has src */
.menu-btn-img[src]:not([src=""]) {
    display: block;
}

/* Hide PNG when missing src */
.menu-btn-img:not([src]),
.menu-btn-img[src=""] {
    display: none;
}

/* Show text fallback when no PNG */
.menu-btn-img:not([src]) + .menu-text,
.menu-btn-img[src=""] + .menu-text {
    display: block;
    color: var(--metal-sheen);
    font-size: 0.7rem;
    text-transform: uppercase;
}

/* Hide text when PNG is present */
.menu-btn-img[src]:not([src=""]) + .menu-text {
    display: none;
}

/* Stats Display */
.stats {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.6rem;
}

.stats span {
    color: var(--rust-orange);
    text-shadow: none;
}

/* ===== CONTENT SECTIONS ===== */
.content {
    position: relative;
    z-index: 20;
    background: var(--dark-bg);
    padding: 4rem 2rem;
}

.section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section h2 {
    color: var(--metal-sheen);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--metal-gray);
    padding-bottom: 0.5rem;
}

.section-header {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 1.5rem;
    display: none;
}

.section-header[src]:not([src=""]) {
    display: block;
}

.section h3 {
    color: var(--steel-blue);
    font-size: 1rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.headline-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 1rem;
    display: none;
}

.headline-img[src]:not([src=""]) {
    display: block;
}

.about-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-bottom: 1rem;
    border: 2px solid var(--metal-gray);
    display: none;
}

.about-img[src]:not([src=""]) {
    display: block;
}

.video-container {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.movie-video {
    width: 100%;
    height: auto;
    border: 2px solid var(--metal-gray);
    background: #000;
}

.map-container {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.map-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid var(--metal-gray);
    display: none;
}

.map-img[src]:not([src=""]) {
    display: block;
}

/* Pixel Box Style */
.pixel-box {
    background: #1a1a1a;
    border: 4px solid var(--metal-gray);
    padding: 1.5rem;
    position: relative;
}

.pixel-box::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--rust-orange), transparent, var(--steel-blue));
    z-index: -1;
    opacity: 0.2;
}

.pixel-box p {
    font-size: 0.7rem;
    line-height: 1.8;
    color: #ccc;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #1a1a1a;
    border: 2px solid var(--metal-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--metal-sheen);
    border-color: var(--steel-blue);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.1);
}

.gallery-img:active {
    transform: scale(1.2);
}

.placeholder {
    color: #666;
    font-size: 0.6rem;
    text-align: center;
}

/* Sprite Showcase */
.sprite-showcase {
    background: #1a1a1a;
    border: 2px dashed var(--metal-gray);
    padding: 2rem;
    text-align: center;
}

.sprite-showcase code {
    color: var(--steel-blue);
    background: rgba(0,0,0,0.5);
    padding: 0.2rem 0.5rem;
}

.sprite-showcase p {
    font-size: 0.7rem;
    color: #999;
}

/* Sprite Collection Container */
.sprite-collection-container {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.sprite-collection-container h3 {
    color: var(--metal-sheen);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
    text-shadow: none;
}

.sprite-collection {
    max-height: 500px;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--metal-gray);
    scrollbar-width: thin;
    scrollbar-color: var(--metal-gray) #1a1a1a;
}

.sprite-collection::-webkit-scrollbar {
    width: 8px;
}

.sprite-collection::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.sprite-collection::-webkit-scrollbar-thumb {
    background: var(--metal-gray);
    border-radius: 4px;
}

.collection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--metal-gray);
    transition: all 0.3s ease;
}

.collection-item:hover {
    border-color: var(--steel-blue);
    transform: scale(1.05);
}

.collection-sprite {
    width: 64px;
    height: 64px;
    object-fit: contain;
    image-rendering: pixelated;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collection-sprite:hover {
    transform: scale(1.2);
}

.collection-sprite:active {
    transform: scale(1.3);
}

.collection-label {
    margin-top: 0.25rem;
    font-size: 0.5rem;
    color: var(--metal-sheen);
    word-break: break-all;
}

/* Links */
.links-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.link-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--metal-gray);
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    border: 2px solid var(--metal-gray);
}

.link-btn:hover {
    background: transparent;
    color: var(--steel-blue);
    box-shadow: 0 0 10px var(--metal-sheen);
    border-color: var(--steel-blue);
}

.link-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: none;
}

.link-img[src]:not([src=""]) {
    display: block;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.6rem;
    color: #666;
    border-top: 1px solid #333;
}

/* Return to Top Button */
.return-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--metal-gray);
    border: 2px solid var(--metal-sheen);
    border-radius: 50%;
    color: var(--metal-sheen);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'GTA2Custom', 'Press Start 2P', monospace;
}

.return-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.return-to-top:hover {
    background: var(--steel-blue);
    border-color: var(--steel-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--metal-sheen);
}

.return-to-top:active {
    transform: translateY(-1px);
}

/* Audio Grid */
.audio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.audio-item {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--metal-gray);
    padding: 1rem;
    transition: all 0.3s ease;
}

.audio-item:hover {
    border-color: var(--steel-blue);
    transform: translateY(-2px);
    box-shadow: 0 0 10px var(--metal-sheen);
}

.audio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.audio-title {
    font-size: 0.7rem;
    color: var(--metal-sheen);
    font-weight: bold;
}

.audio-station {
    font-size: 0.6rem;
    color: var(--rust-orange);
    text-transform: uppercase;
}

.audio-info {
    font-size: 0.55rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.audio-actions {
    display: flex;
    gap: 0.5rem;
}

.audio-btn {
    flex: 1;
    padding: 0.5rem;
    background: var(--metal-gray);
    border: 1px solid var(--metal-gray);
    color: var(--metal-sheen);
    font-family: 'GTA2Custom', 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.audio-btn:hover {
    background: var(--steel-blue);
    border-color: var(--steel-blue);
    color: #fff;
}

.audio-btn.download {
    background: transparent;
}

.audio-btn.download:hover {
    background: var(--rust-orange);
    border-color: var(--rust-orange);
}

.audio-player-container {
    margin: 0.5rem 0;
}

.audio-player {
    width: 100%;
    height: 32px;
    background: var(--metal-gray);
    border: 1px solid var(--metal-sheen);
    border-radius: 4px;
}

.audio-player::-webkit-media-controls-panel {
    background: var(--metal-gray);
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--metal-sheen);
    font-family: 'GTA2Custom', 'Press Start 2P', monospace;
    font-size: 0.5rem;
}

.audio-player::-webkit-media-controls-play-button,
.audio-player::-webkit-media-controls-mute-button {
    background-color: var(--metal-sheen);
    border-radius: 50%;
}

.audio-player::-webkit-media-controls-play-button:hover,
.audio-player::-webkit-media-controls-mute-button:hover {
    background-color: var(--steel-blue);
}

.audio-player::-webkit-media-controls-timeline {
    background: var(--metal-sheen);
}

.audio-player::-webkit-media-controls-volume-slider {
    background: var(--metal-sheen);
}

/* Downloads Section */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--metal-gray);
    color: #c0c0c0;
    text-decoration: none;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    border: 2px solid var(--metal-gray);
}

.download-btn:hover {
    background: transparent;
    color: var(--steel-blue);
    box-shadow: 0 0 10px var(--metal-sheen);
    border-color: var(--steel-blue);
}

.download-icon {
    font-size: 1.2rem;
}

.download-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: none;
}

.download-img[src]:not([src=""]) {
    display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .title {
        font-size: 1.5rem;
    }
    
    .menu {
        gap: 0.5rem;
    }
    
    .menu-item {
        padding: 0.75rem 1rem;
        font-size: 0.6rem;
    }
    
    .neon-sign {
        font-size: 2rem;
    }
    
    .stats {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 1rem;
    }
}

/* ===== PARALLAX MOUSE EFFECT ===== */
.parallax-active .layer[data-depth] {
    transition: transform 0.1s ease-out;
}

/* ===== MUSIC PLAYER CONTROLS ===== */
.music-controls {
    position: fixed;
    top: 2rem;
    left: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 100;
}

.music-btn,
.mute-btn {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.8rem;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--metal-gray);
    color: var(--metal-sheen);
    font-family: 'GTA2Custom', 'Press Start 2P', monospace;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.music-btn:hover,
.mute-btn:hover {
    border-color: var(--steel-blue);
    box-shadow: 0 0 10px var(--metal-sheen);
    transform: translateY(-2px);
}

.music-btn.playing {
    border-color: var(--rust-orange);
    color: var(--rust-orange);
    box-shadow: 0 0 8px rgba(138, 106, 74, 0.5);
}

.mute-btn.muted {
    border-color: #666;
    color: #666;
}

.music-icon {
    font-size: 0.9rem;
}

.mute-icon {
    font-size: 0.9rem;
}

.music-status {
    font-size: 0.5rem;
}

/* Responsive music controls */
@media (max-width: 768px) {
    .music-controls {
        top: 1rem;
        left: 1rem;
    }
    
    .music-btn,
    .mute-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.5rem;
    }
}
