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

:root {
    --mic-head-width: 80px;
    --mic-head-height: 100px;
    --mic-head-depth: 60px;
    --mic-body-width: 70px;
    --mic-body-height: 120px;
    --mic-body-depth: 50px;
    --ring-height: 8px;
    --ring-small-height: 5px;
    
    --color-dark: #1a1a1a;
    --color-mid: #2d2d2d;
    --color-light: #3d3d3d;
    --color-highlight: #4a4a4a;
    --color-gold: #d4af37;
    --color-gold-light: #f4cf57;
    --color-gold-dark: #a48a2b;
    
    --gradient-bg-1: #1e1e56;
    --gradient-bg-2: #0f3460;
    --gradient-bg-3: #5276a4;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--gradient-bg-3) 0%, var(--gradient-bg-2) 50%, var(--gradient-bg-1) 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.nav-toggle.active .hamburger { background: transparent; }
.nav-toggle.active .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.active .hamburger::after { top: 0; transform: rotate(-45deg); }

.artist-info-bar {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, rgba(30, 30, 86, 0.95) 0%, rgba(15, 52, 96, 0.95) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--color-gold);
    z-index: 999;
    animation: slideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.artist-info-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 5%;
    max-width: 100%;
}

.artist-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(212, 175, 55, 0.8); }
}

.artist-details {
    flex: 1;
    min-width: 0;
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-real-name {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.now-playing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
    flex-wrap: wrap;
}

.playing-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.song-title {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.track-type {
    font-size: 0.7rem;
    color: var(--color-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.playback-controls {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.play-btn,
.next-btn,
.refresh-btn {
    background: var(--color-gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.play-btn:hover,
.next-btn:hover,
.refresh-btn:hover {
    background: var(--color-gold-light);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.play-btn:active,
.next-btn:active,
.refresh-btn:active {
    transform: scale(0.95);
}

.playback-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* MUSIC NOTES */
.notes-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.music-note {
    position: absolute;
    font-size: 40rem;
    color: transparent;
    background: linear-gradient(135deg, var(--gradient-bg-1) 0%, var(--gradient-bg-2) 50%, var(--gradient-bg-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    opacity: 0;
    transition: all 0.3s ease;
}

.music-note.flash {
    color: #fff9da;
    -webkit-background-clip: unset;
    background-clip: unset;
    background: none;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2);
    opacity: 1;
}

/* MICROPHONE */
.scene {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
    z-index: 10;
    margin-top: 80px;
}

.mic-assembly {
    transform-style: preserve-3d;
    scale: 1.4;
    margin-top: 110px
}

.microphone {
    transform-style: preserve-3d;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* HEAD */
.mic-head {
    position: relative;
    width: var(--mic-head-width);
    height: var(--mic-head-height);
    transform-style: preserve-3d;
}

.head-cylinder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.head-cylinder .cylinder-face {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.3);
}

.head-cylinder .front {
    width: var(--mic-head-width);
    height: var(--mic-head-height);
    transform: translateZ(calc(var(--mic-head-depth) / 2));
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(90deg, 
        var(--color-dark) 0%, 
        var(--color-light) 20%, 
        var(--color-highlight) 50%, 
        var(--color-light) 80%, 
        var(--color-dark) 100%
    );
}

.head-cylinder .back {
    width: var(--mic-head-width);
    height: var(--mic-head-height);
    transform: translateZ(calc(var(--mic-head-depth) / -2)) rotateY(180deg);
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(90deg, 
        var(--color-dark) 0%, 
        var(--color-mid) 30%, 
        var(--color-mid) 70%, 
        var(--color-dark) 100%
    );
}

.head-cylinder .left {
    width: var(--mic-head-depth);
    height: var(--mic-head-height);
    left: calc(var(--mic-head-depth) / -2);
    transform: rotateY(-90deg);
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-mid) 100%);
}

.head-cylinder .right {
    width: var(--mic-head-depth);
    height: var(--mic-head-height);
    right: calc(var(--mic-head-depth) / -2);
    transform: rotateY(90deg);
    border-radius: 10px 10px 5px 5px;
    background: linear-gradient(90deg, var(--color-mid) 0%, var(--color-dark) 100%);
}

.head-cylinder .top {
    width: var(--mic-head-width);
    height: var(--mic-head-depth);
    top: calc(var(--mic-head-depth) / -2);
    transform: rotateX(90deg);
    border-radius: 10px;
    background: radial-gradient(ellipse at center, var(--color-highlight) 0%, var(--color-mid) 100%);
}

.head-cylinder .bottom {
    width: var(--mic-head-width);
    height: var(--mic-head-depth);
    bottom: calc(var(--mic-head-depth) / -2);
    transform: rotateX(-90deg);
    background: var(--color-dark);
}

/* MESH */
.grille-mesh {
    position: absolute;
    top: 10px;
    left: 5px;
    width: calc(var(--mic-head-width) - 10px);
    height: calc(var(--mic-head-height) - 30px);
    transform-style: preserve-3d;
}

.mesh-face {
    position: absolute;
    background-image: radial-gradient(circle, rgba(0,0,0,0.6) 1px, transparent 1px);
    background-size: 4px 4px;
    border-radius: 8px;
}

.mesh-face.front {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-head-depth) / 2 + 1px));
    background-color: rgba(60, 60, 60, 0.9);
}

.mesh-face.back {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-head-depth) / -2 - 1px)) rotateY(180deg);
    background-color: rgba(40, 40, 40, 0.9);
}

.mesh-face.left {
    width: calc(var(--mic-head-depth) - 10px);
    height: 100%;
    left: calc((var(--mic-head-depth) - 10px) / -2);
    transform: rotateY(-90deg);
    background-color: rgba(35, 35, 35, 0.9);
}

.mesh-face.right {
    width: calc(var(--mic-head-depth) - 10px);
    height: 100%;
    right: calc((var(--mic-head-depth) - 10px) / -2);
    transform: rotateY(90deg);
    background-color: rgba(35, 35, 35, 0.9);
}

/* RINGS */
.gold-ring {
    position: relative;
    transform-style: preserve-3d;
    margin-top: -1px;
}

.gold-ring .ring-face {
    position: absolute;
    border: 1px solid var(--color-gold-dark);
}

.ring-under-head {
    width: calc(var(--mic-head-width) + 4px);
    height: var(--ring-small-height);
}

.ring-under-head .front {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-head-depth) / 2 + 2px));
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 20%, 
        var(--color-gold-light) 50%, 
        var(--color-gold) 80%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 1px;
}

.ring-under-head .back {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-head-depth) / -2 - 2px)) rotateY(180deg);
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 50%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 1px;
}

.ring-under-head .left {
    width: calc(var(--mic-head-depth) + 4px);
    height: 100%;
    left: calc((var(--mic-head-depth) + 4px) / -2);
    transform: rotateY(-90deg);
    background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
}

.ring-under-head .right {
    width: calc(var(--mic-head-depth) + 4px);
    height: 100%;
    right: calc((var(--mic-head-depth) + 4px) / -2);
    transform: rotateY(90deg);
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.ring-under-head .top {
    width: 100%;
    height: calc(var(--mic-head-depth) + 4px);
    top: calc((var(--mic-head-depth) + 4px) / -2);
    transform: rotateX(90deg);
    background: var(--color-gold-light);
}

.ring-under-head .bottom {
    width: 100%;
    height: calc(var(--mic-head-depth) + 4px);
    bottom: calc((var(--mic-head-depth) + 4px) / -2);
    transform: rotateX(-90deg);
    background: var(--color-gold-dark);
}

.ring-above-body {
    width: calc(var(--mic-body-width) + 8px);
    height: var(--ring-height);
    margin-top: 2px;
}

.ring-above-body .front {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-body-depth) / 2 + 4px));
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 20%, 
        var(--color-gold-light) 50%, 
        var(--color-gold) 80%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 2px;
}

.ring-above-body .back {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-body-depth) / -2 - 4px)) rotateY(180deg);
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 50%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 2px;
}

.ring-above-body .left {
    width: calc(var(--mic-body-depth) + 8px);
    height: 100%;
    left: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateY(-90deg);
    background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
}

.ring-above-body .right {
    width: calc(var(--mic-body-depth) + 8px);
    height: 100%;
    right: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateY(90deg);
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.ring-above-body .top {
    width: 100%;
    height: calc(var(--mic-body-depth) + 8px);
    top: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateX(90deg);
    background: var(--color-gold-light);
}

.ring-above-body .bottom {
    width: 100%;
    height: calc(var(--mic-body-depth) + 8px);
    bottom: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateX(-90deg);
    background: var(--color-gold-dark);
}

.ring-below-body {
    width: calc(var(--mic-body-width) + 8px);
    height: var(--ring-height);
    margin-top: -1px;
}

.ring-below-body .front {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-body-depth) / 2 + 4px));
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 20%, 
        var(--color-gold-light) 50%, 
        var(--color-gold) 80%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 2px;
}

.ring-below-body .back {
    width: 100%;
    height: 100%;
    transform: translateZ(calc(var(--mic-body-depth) / -2 - 4px)) rotateY(180deg);
    background: linear-gradient(90deg, 
        var(--color-gold-dark) 0%, 
        var(--color-gold) 50%, 
        var(--color-gold-dark) 100%
    );
    border-radius: 2px;
}

.ring-below-body .left {
    width: calc(var(--mic-body-depth) + 8px);
    height: 100%;
    left: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateY(-90deg);
    background: linear-gradient(90deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
}

.ring-below-body .right {
    width: calc(var(--mic-body-depth) + 8px);
    height: 100%;
    right: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateY(90deg);
    background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.ring-below-body .top {
    width: 100%;
    height: calc(var(--mic-body-depth) + 8px);
    top: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateX(90deg);
    background: var(--color-gold-light);
}

.ring-below-body .bottom {
    width: 100%;
    height: calc(var(--mic-body-depth) + 8px);
    bottom: calc((var(--mic-body-depth) + 8px) / -2);
    transform: rotateX(-90deg);
    background: var(--color-gold-dark);
}

/* BODY */
.mic-body {
    position: relative;
    width: var(--mic-body-width);
    height: var(--mic-body-height);
    transform-style: preserve-3d;
}

.body-cylinder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
}

.body-cylinder .cylinder-face {
    position: absolute;
    border: 1px solid rgba(0,0,0,0.3);
}

.body-cylinder .front {
    width: var(--mic-body-width);
    height: var(--mic-body-height);
    transform: translateZ(calc(var(--mic-body-depth) / 2));
    background: linear-gradient(90deg, 
        var(--color-dark) 0%, 
        var(--color-mid) 15%, 
        var(--color-light) 30%,
        var(--color-highlight) 50%, 
        var(--color-light) 70%,
        var(--color-mid) 85%, 
        var(--color-dark) 100%
    );
    border-radius: 3px;
}

.body-cylinder .back {
    width: var(--mic-body-width);
    height: var(--mic-body-height);
    transform: translateZ(calc(var(--mic-body-depth) / -2)) rotateY(180deg);
    background: linear-gradient(90deg, 
        var(--color-dark) 0%, 
        var(--color-mid) 30%, 
        var(--color-mid) 70%, 
        var(--color-dark) 100%
    );
    border-radius: 3px;
}

.body-cylinder .left {
    width: var(--mic-body-depth);
    height: var(--mic-body-height);
    left: calc(var(--mic-body-depth) / -2);
    transform: rotateY(-90deg);
    background: linear-gradient(90deg, var(--color-dark) 0%, var(--color-mid) 100%);
}

.body-cylinder .right {
    width: var(--mic-body-depth);
    height: var(--mic-body-height);
    right: calc(var(--mic-body-depth) / -2);
    transform: rotateY(90deg);
    background: linear-gradient(90deg, var(--color-mid) 0%, var(--color-dark) 100%);
}

/* PLATE */
.logo-plate {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateZ(calc(var(--mic-body-depth) / 2 + 2px));
    width: 60px;   /* was 50px */
    height: 45px;  /* was 35px */
    background: linear-gradient(180deg, #222 0%, #111 100%);
    border: 1px solid #444;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.logo-text {
    font-size: 8px;  
    font-weight: bold;
    color: var(--color-gold);
    letter-spacing: 1px;
}

.logo-model {
    font-size: 14px; 
    font-weight: bold;
    color: #888;
    margin-top: 2px;
}

/* Switches */
.switches {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateZ(calc(var(--mic-body-depth) / 2 + 2px));
    display: flex;
    gap: 10px;
}

.switch {
    width: 18px;
    height: 24px;
    background: linear-gradient(180deg, #333 0%, #1a1a1a 100%);
    border: 1px solid #444;
    border-radius: 2px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 6px;
    background: linear-gradient(180deg, #555 0%, #333 100%);
    border-radius: 1px;
    border: 1px solid #222;
}

.switch-label {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5px;
    color: #666;
    white-space: nowrap;
}

/* ========== CONNECTOR HOUSING ========== */
.connector-housing {
    position: relative;
    width: 50px;
    height: 25px;
    transform-style: preserve-3d;
}

.housing-cylinder {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
}

.housing-cylinder .cylinder-face {
    position: absolute;
    background: var(--color-dark);
    border: 1px solid rgba(0,0,0,0.5);
}

.housing-cylinder .front {
    width: 50px;
    height: 25px;
    transform: translateZ(20px);
    background: linear-gradient(90deg, 
        #111 0%, 
        #2a2a2a 30%, 
        #333 50%, 
        #2a2a2a 70%, 
        #111 100%
    );
    border-radius: 0 0 5px 5px;
}

.housing-cylinder .back {
    width: 50px;
    height: 25px;
    transform: translateZ(-20px) rotateY(180deg);
    background: linear-gradient(90deg, #111 0%, #222 50%, #111 100%);
    border-radius: 0 0 5px 5px;
}

.housing-cylinder .left {
    width: 40px;
    height: 25px;
    left: -20px;
    transform: rotateY(-90deg);
    background: #111;
    border-radius: 0 0 0 5px;
}

.housing-cylinder .right {
    width: 40px;
    height: 25px;
    right: -20px;
    transform: rotateY(90deg);
    background: #111;
    border-radius: 0 0 5px 0;
}

.housing-cylinder .bottom {
    width: 50px;
    height: 40px;
    bottom: -20px;
    transform: rotateX(-90deg);
    background: radial-gradient(circle, #222 0%, #111 100%);
    border-radius: 50%;
}


/* ========== SHADOW ========== */
.mic-shadow {
    width: 120px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
    margin: 5px auto 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-toggle { display: block; }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active { transform: translateY(0); }

    .artist-info-content {
        gap: 1rem;
        padding: 0.8rem 4%;
    }

    .artist-avatar {
        width: 40px;
        height: 40px;
    }

    .avatar-placeholder {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    .artist-name {
        font-size: 1rem;
    }

    .artist-real-name {
        font-size: 0.75rem;
    }

    .song-title {
        font-size: 0.85rem;
        max-width: 150px;
    }

    .playback-controls {
        gap: 0.35rem;
    }

    .play-btn,
    .next-btn,
    .refresh-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    :root {
        --mic-head-width: 60px;
        --mic-head-height: 75px;
        --mic-head-depth: 45px;
        --mic-body-width: 52px;
        --mic-body-height: 90px;
        --mic-body-depth: 38px;
        --ring-height: 6px;
        --ring-small-height: 4px;
    }

    .logo-plate {
        width: 38px;
        height: 28px;
    }

    .logo-text { font-size: 5px; }
    .logo-model { font-size: 6px; }

    .switches { gap: 6px; }
    .switch {
        width: 14px;
        height: 18px;
    }
    .switch-label { font-size: 4px; }

    .music-note { font-size: 1.5rem; }

    .mic-shadow {
        width: 90px;
        height: 30px;
    }

    .scene {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .navbar { padding: 0.8rem 4%; }
    .nav-brand { font-size: 1.2rem; }

    .artist-info-content {
        flex-wrap: wrap;
        gap: 0.75rem;
        padding: 0.6rem 3%;
    }

    .artist-details {
        flex: 1 0 100%;
    }

    .artist-name {
        font-size: 0.9rem;
    }

    .song-title {
        max-width: 120px;
        font-size: 0.8rem;
    }

    .playback-controls {
        order: -1;
        width: 100%;
        justify-content: space-around;
    }

    .play-btn,
    .next-btn,
    .refresh-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    :root {
        --mic-head-width: 50px;
        --mic-head-height: 62px;
        --mic-head-depth: 38px;
        --mic-body-width: 44px;
        --mic-body-height: 75px;
        --mic-body-depth: 32px;
        --ring-height: 5px;
        --ring-small-height: 3px;
    }

    .logo-plate {
        width: 32px;
        height: 32px;
        top: 15px;
    }

    .logo-text { font-size: 6px;}
    .logo-model { font-size: 4px; }

    .switches { display: none; }

    .grille-mesh { 
        top: 8px; 
        height: calc(var(--mic-head-height) - 25px); 
    }

    .mic-shadow {
        width: 70px;
        height: 25px;
    }

    .music-note { font-size: 1.2rem; }

    .scene {
        margin-top: 10px;
    }
}

@media (min-width: 1200px) {
    :root {
        --mic-head-width: 100px;
        --mic-head-height: 125px;
        --mic-head-depth: 75px;
        --mic-body-width: 88px;
        --mic-body-height: 150px;
        --mic-body-depth: 62px;
        --ring-height: 10px;
        --ring-small-height: 6px;
    }

    .logo-plate {
        width: 62px;
        height: 44px;
    }

    .logo-text {
        font-size: 10px;
    }

    .logo-model {
        font-size: 8px;
    }

    .mic-shadow {
        width: 150px;
        height: 50px;
    }

    .music-note { font-size: 6.0rem; }
}

@media (prefers-reduced-motion: reduce) {
    .mic-assembly { animation: none; }
    .mic-shadow { animation: none; }
    .music-note { transition: none; }
    .artist-info-bar { animation: none; }
    .avatar-placeholder { animation: none; }
}

#youtubePlayer {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}