:root {
    --studio-metallic: #d4c5a9;
    --studio-dark: #1a1a1a;
    --studio-bg: #0d0d0d;
    --neon-pink: #ff00ff;
    --neon-cyan: #00fbff;
    --neon-purple: #9d00ff;
    --lcd-bg: #1c2e2a;
    --lcd-text: #00ffcc;
    --glass: rgba(255, 255, 255, 0.1);
    --border-bevel: inset 2px 2px 2px rgba(255, 255, 255, 0.2), inset -2px -2px 2px rgba(0, 0, 0, 0.5);
}

[data-theme='light'] {
    --studio-bg: #e0e0e0;
    --studio-dark: #333;
    --lcd-bg: #2a3d38;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--studio-bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* Modern font */
    overflow-x: hidden;
    height: 100vh;
}

/* Background Scenario */
.studio-theme {
    background: url('../assets/studio.png') no-repeat center center fixed;
    background-size: cover;
}

/* Laptop Screen Animation */
.laptop-screen-overlay {
    position: absolute;
    bottom: 24.5%;
    right: 14.5%;
    width: 14.5%;
    height: 9.5%;
    background: rgba(0, 50, 80, 0.4);
    z-index: 5;
    transform: perspective(1000px) rotateY(-18deg) rotateX(10deg);
    border-radius: 2px;
    overflow: hidden;
    pointer-events: none;
    box-shadow: 0 0 15px rgba(0, 150, 255, 0.3);
}

.wave-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 5px;
}

.v-bar {
    flex: 1;
    background: #00fbff;
    height: 2px;
    transition: height 0.1s ease;
}

.playing .v-bar {
    animation: wavePulse 0.5s infinite alternate ease-in-out;
}

.playing .v-bar:nth-child(odd) {
    animation-duration: 0.7s;
    height: 10px;
}

.playing .v-bar:nth-child(3n) {
    animation-duration: 0.4s;
    height: 20px;
}

.playing .v-bar:nth-child(5n) {
    animation-duration: 0.9s;
    height: 15px;
}

@keyframes wavePulse {
    from {
        height: 5%;
        transform: scaleY(1);
        opacity: 0.5;
    }

    to {
        height: 90%;
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Wrapper to maintain layout */
.studio-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    background: rgba(0, 0, 0, 0.15);
    /* Even less overlay for clarity */
}

/* Top Nav Bar (Metallic like footer) */
.studio-nav {
    display: flex;
    flex-direction: column;
    /* Stack Title and Buttons */
    align-items: center;
    padding: 1rem 1rem;
    background: linear-gradient(to top, #a0a0a0 0%, #e0e0e0 20%, #a0a0a0 100%);
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        linear-gradient(to top, #a0a0a0 0%, #e0e0e0 20%, #a0a0a0 100%);
    border-bottom: 1.5px solid #bbb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    position: relative;
    border-radius: 0 0 10px 10px;
    gap: 0.8rem;
}

.studio-nav .nav-links a {
    background: linear-gradient(135deg, #ffffff 0%, #dcdcdc 50%, #a0a0a0 100%);
    border: 1px solid #777;
    color: #222;
    text-decoration: none;
    margin: 0 0.2rem;
    padding: 6px 0;
    /* Reduced padding */
    width: 90px;
    /* Reduced width */
    font-size: 0.6rem;
    /* Slightly smaller font */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.8px;
    transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Raleway', sans-serif;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        1px 2px 3px rgba(0, 0, 0, 0.4),
        inset 1px 1px 0 rgba(255, 255, 255, 0.7);
}

.studio-nav .nav-links a:hover {
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #b0b0b0 100%);
    transform: translateY(-1px);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5), inset 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.studio-nav .nav-links a:active {
    transform: translateY(1px);
    background: linear-gradient(135deg, #d0d0d0, #a0a0a0);
    box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Active Button with Power Light */
.studio-nav .nav-links a.active {
    background: linear-gradient(135deg, #f0f0f0, #c0c0c0);
    border-color: #555;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.studio-nav .nav-links a.active::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: 3px;
    background: #00ff00;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff00;
}

.studio-branding {
    text-align: center;
}

.studio-branding .main-title {
    display: block;
    font-size: 0.9rem;
    color: #222;
    letter-spacing: 1.5px;
    font-weight: 800;
    text-shadow: 0.5px 0.5px 0 rgba(255, 255, 255, 0.4);
}

.studio-logo-left {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #333;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    pointer-events: none;
    z-index: 1001;
}

.mini-logo {
    height: 45px;
    /* Compact size */
    width: auto;
    mix-blend-mode: screen;
    /* Perfect for black backgrounds - makes black 100% transparent */
    filter: brightness(1.1) contrast(1.1);
    transition: 0.3s transform ease;
}

/* Main Area */
.studio-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.monitor-wall {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 10vh;
    /* Even lower - exactly below the main monitors/paintings */
}

.monitor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    /* Mini monitors */
    gap: 0.8rem;
    padding: 0 10rem;
}

/* Radio Items as Thin Metallic Bars */
.radio-item {
    background: linear-gradient(135deg, #ffffff 0%, #dcdcdc 50%, #a0a0a0 100%);
    border: 1px solid #777;
    border-radius: 20px;
    padding: 2px 12px;
    box-shadow:
        1px 2px 3px rgba(0, 0, 0, 0.4),
        inset 1px 1px 0 rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.radio-item:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #b0b0b0 100%);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5), inset 1px 1px 0 rgba(255, 255, 255, 0.8);
    border-color: #555;
}

.radio-item.active {
    background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 50%, #707070 100%);
    box-shadow:
        inset 3px 3px 8px rgba(0, 0, 0, 0.6),
        inset -1px -1px 2px rgba(255, 255, 255, 0.2);
    border-color: #333;
    transform: scale(0.98);
    /* Slightly smaller for 'pressed' effect */
}

/* LED Indicator Dot */
.indicator-led {
    width: 7px;
    height: 7px;
    background: #333;
    /* Off */
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.6);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    margin-right: -2px;
}

.radio-item.active .indicator-led {
    background: #00ff22;
    box-shadow:
        0 0 8px #00ff00,
        0 0 12px rgba(0, 255, 0, 0.4),
        inset 0 0 2px #fff;
}

.radio-item span {
    font-size: 0.65rem;
    color: #222;
    /* Dark text on light metal */
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radio-item i {
    color: #008080;
    font-size: 0.8rem;
    transition: 0.2s;
}

.radio-item:hover i {
    color: #00c2c2;
    transform: scale(1.1);
}

.radio-item.active i {
    color: #004d4d;
}

.radio-item::before {
    display: none;
    /* Remove scanline effect for bars */
}

/* Decorative Central Area */
.central-deco {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

/* Bottom Player Bar (Metallic) */
.studio-footer-player {
    background: linear-gradient(to bottom, #a0a0a0 0%, #e0e0e0 20%, #a0a0a0 100%);
    background-image:
        repeating-linear-gradient(90deg, transparent 0px, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        linear-gradient(to bottom, #a0a0a0 0%, #e0e0e0 20%, #a0a0a0 100%);
    border-top: 1px solid #bbb;
    padding: 0;
    position: relative;
    z-index: 50;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.4);
}

.player-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

/* Silver/Metallic Circular Buttons from Image */
.studio-btn {
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #dcdcdc 20%, #a0a0a0 60%, #808080 100%);
    border: 1px solid #666;
    color: #222;
    cursor: pointer;
    box-shadow:
        1px 2px 4px rgba(0, 0, 0, 0.7),
        inset 1px 1.5px 1px rgba(255, 255, 255, 0.9);
    transition: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 0.8rem;
    position: relative;
}

.studio-btn:hover {
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #e0e0e0 20%, #b0b0b0 60%, #909090 100%);
}

.studio-btn:active {
    transform: translateY(1px);
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5), inset 2px 2px 5px rgba(0, 0, 0, 0.4);
}

.studio-btn.active {
    background: radial-gradient(circle at 50% 50%, #c0c0c0, #909090);
    box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.6);
}

/* Power Light Effect */
.studio-btn::after {
    content: "";
    position: absolute;
    top: 3px;
    width: 3px;
    height: 3px;
    background: #444;
    border-radius: 50%;
    transition: 0.3s;
}

.studio-btn.active::after {
    background: #00ff00;
    box-shadow: 0 0 5px #00ff00;
}

.player-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* Tighter spacing */
}

/* Volume Control Styles */
.volume-control-wrap {
    display: flex;
    align-items: center;
    padding-left: 5px;
}

.studio-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 60px;
    height: 4px;
    background: #111;
    border-radius: 2px;
    border: 1px solid #444;
    outline: none;
    cursor: pointer;
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.studio-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #dcdcdc 20%, #a0a0a0 60%, #808080 100%);
    border: 1px solid #666;
    border-radius: 3px;
    /* Slightly squared retro knob */
    cursor: pointer;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
}

.studio-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: radial-gradient(circle at 35% 35%, #ffffff 0%, #dcdcdc 20%, #a0a0a0 60%, #808080 100%);
    border: 1px solid #666;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.6);
}

/* Recessed Dark Display Panel from Image */
.display-panel {
    flex: 2;
    background: radial-gradient(circle at center, #554d45 0%, #2a2521 100%);
    border: 1px solid #1a1512;
    border-radius: 6px;
    padding: 0.3rem 1.5rem;
    box-shadow:
        inset 3px 3px 12px rgba(0, 0, 0, 0.9),
        inset -1px -1px 2px rgba(255, 255, 255, 0.05),
        0 1px 1px rgba(255, 255, 255, 0.15);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 1rem;
}

.display-content {
    font-family: 'Raleway', sans-serif;
    color: #e5dacb;
    width: 100%;
}

.display-label {
    font-size: 0.6rem;
    color: #bfa181;
    margin-bottom: -2px;
    font-weight: 500;
}

.display-scroller h4 {
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
}

.display-scroller .song-info {
    font-size: 0.65rem;
    opacity: 0.5;
    font-weight: 300;
}

/* Square Container for Album Art (image style) */
.current-album-container {
    width: 46px;
    height: 46px;
    background: #fff;
    border: 1.5px solid #444;
    padding: 2.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 1.5rem;
}

.retro-disc-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    background: #000;
}

.retro-disc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: 0.3s;
}

.retro-disc-wrapper.playing .retro-disc-img {
    animation: rotateDisc 5s infinite linear;
    border-radius: 50%;
}

.disc-hole {
    display: none;
}

.retro-disc-wrapper.playing .disc-hole {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: #111;
    border-radius: 50%;
    z-index: 10;
}

/* Stream Selectors (Right side) */
.stream-selectors {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selector-row {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.selector-row .label {
    font-size: 0.65rem;
    color: #bfa181;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.selector-btn {
    background: linear-gradient(to bottom, #777, #444);
    border: 1px solid #333;
    color: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    transition: 0.2s;
    min-width: 50px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.selector-btn:hover,
.selector-btn.active {
    background: linear-gradient(to bottom, #999, #666);
    color: #fff;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5), 0 0 8px rgba(191, 161, 129, 0.3);
}

/* Status Bar */
.status-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2px 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0.2rem 0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

.on .status-dot {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00, inset 0 0 3px #fff;
}

.on .status-text {
    color: #00ff00;
}

/* Equalizer Small */
.equalizer-small {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.equalizer-small .bar {
    width: 5px;
    background: var(--neon-cyan);
    height: 3px;
    transition: height 0.2s;
}

.equalizer-small.playing .bar {
    animation: equalizeSmall 0.8s infinite alternate;
}

.equalizer-small.playing .bar:nth-child(2) {
    animation-delay: 0.1s;
    background: var(--neon-pink);
}

.equalizer-small.playing .bar:nth-child(3) {
    animation-delay: 0.3s;
}

.equalizer-small.playing .bar:nth-child(4) {
    animation-delay: 0.2s;
    background: var(--neon-pink);
}

.equalizer-small.playing .bar:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes equalizeSmall {
    0% {
        height: 3px;
    }

    100% {
        height: 18px;
    }
}

@keyframes rotateDisc {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* Page Content Styles (Nosotros / Contacto) */
.page-container {
    max-width: 900px;
    width: 90%;
    margin: 2rem auto;
    padding: 3rem;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(10px);
    border: 1.5px solid #444;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
}

.page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 5px solid #a39587;
    padding-left: 1.5rem;
}

.page-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #a39587 0%, #7a7066 100%);
    padding: 2rem;
    border-radius: 8px;
    color: #222;
    margin: 2rem 0;
}

.highlight-box h3 {
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Contact Form */
.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #a39587;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: #111;
    border: 1.5px solid #333;
    padding: 12px;
    border-radius: 6px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #a39587;
    outline: none;
    box-shadow: 0 0 10px rgba(163, 149, 135, 0.3);
}

.submit-btn {
    background: linear-gradient(to bottom, #a0a0a0, #7a7066);
    color: #222;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.submit-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

/* Mini Bottom Nav Bar (SUBTLE & SLIM) */
.mini-bottom-bar {
    background: #050505;
    padding: 0.3rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #111;
}

.mini-foot-links {
    display: flex;
    gap: 0.8rem;
}

.mini-foot-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.55rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 10px;
    border-radius: 20px;
    transition: 0.2s;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #151515;
}

.mini-foot-links a:hover {
    color: #aaa;
    background: rgba(255, 255, 255, 0.05);
    border-color: #333;
}

.mini-copyright {
    font-size: 0.55rem;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright {
    font-size: 0.7rem;
    color: #444;
}

/* Maintain Layout */
.studio-main {
    min-height: calc(100vh - 70px - 70px);
}

/* Responsive Styles */
@media (max-width: 768px) {

    /* Radio bars 3x thicker and full width on mobile */
    .monitor-wall {
        max-width: 95%;
        margin-top: 15vh;
    }

    .monitor-grid {
        padding: 0;
        grid-template-columns: 1fr;
        /* Full horizontal space */
        gap: 1rem;
    }

    .radio-item {
        height: 44px;
        /* More compact vertical space */
        border-radius: 20px;
        padding: 0 15px;
        max-width: 250px;
        /* narrower horizontally if needed */
        margin: 0 auto;
        /* center horizontally */
    }

    .radio-item span {
        font-size: 0.8rem;
        /* Smaller text */
    }

    .radio-item i.fa-play-circle,
    .radio-item i {
        font-size: 1.1rem;
        /* Smaller icons */
    }

    /* Player Footer Adjustments for Mobile */
    .player-inner {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }

    /* Disco 2x larger on mobile */
    .current-album-container {
        width: 100px;
        /* Base 46px -> approx 2x */
        height: 100px;
        margin: 0 auto;
        order: -1;
        /* Move to top of the stack */
    }

    .display-panel {
        width: 100%;
        height: auto;
        padding: 0.8rem;
        margin: 0;
    }

    .display-scroller h4 {
        font-size: 1.2rem;
    }

    .player-controls {
        justify-content: center;
        flex-wrap: wrap;
    }

    .studio-btn {
        width: 48px;
        /* Slightly larger buttons for touch */
        height: 48px;
    }

    .stream-selectors {
        align-items: center;
        width: 100%;
    }

    .selector-row {
        justify-content: center;
    }

    .studio-nav {
        display: none;
        /* Hide top nav entirely on mobile to save space */
    }

    .nav-links {
        display: none;
    }

    .main-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .foot-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    /* Center and Lower Laptop Visualizer on Mobile */
    .laptop-screen-overlay {
        width: 80%;
        /* Much wider for impact */
        height: 12%;
        bottom: 9%;
        /* Raised approx 1cm */
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        /* Centering */
        box-shadow:
            0 0 30px rgba(0, 251, 255, 0.4),
            0 0 5px rgba(255, 255, 255, 0.3);
        background: rgba(0, 8, 15, 0.9);
        border: 2px solid #00fbff;
        border-radius: 8px;
        z-index: 10;
        pointer-events: none;
        /* Crucial: clicks go through to elements behind */
    }

    .wave-container {
        gap: 1.5px;
        /* Thinner bars -> more dense look */
        padding: 4px;
    }

    .playing .v-bar {
        filter: drop-shadow(0 0 10px #00fbff);
    }

    /* Restore staggered movement with varied delays for mobile */
    .playing .v-bar:nth-child(2n) {
        animation-delay: 0.1s;
    }

    .playing .v-bar:nth-child(3n) {
        animation-delay: 0.2s;
    }

    .playing .v-bar:nth-child(4n) {
        animation-delay: 0.35s;
    }

    .playing .v-bar:nth-child(5n) {
        animation-delay: 0.15s;
    }

    .playing .v-bar:nth-child(odd) {
        animation-delay: 0.05s;
    }

    .v-bar {
        background: linear-gradient(to top, #00fbff, #fff, #00fbff);
        width: 100% !important;
    }
}

/* Modal Styles */
.studio-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #e0e0e0 0%, #a0a0a0 100%);
    margin: 10% auto;
    padding: 30px;
    border: 3px solid #666;
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.8),
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    position: relative;
    color: #222;
    font-family: 'Inter', sans-serif;
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

.close-modal:hover {
    color: #000;
}

.modal-header {
    text-align: center;
    border-bottom: 2px solid #888;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-header i {
    font-size: 3rem;
    color: #d42a2a;
    /* Indicator color */
    filter: drop-shadow(0 0 10px rgba(212, 42, 42, 0.3));
    margin-bottom: 10px;
}

.modal-header h3 {
    letter-spacing: 2px;
    font-weight: 800;
}

.modal-body p {
    font-weight: 600;
    margin-bottom: 15px;
}

.modal-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.modal-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.modal-list li i {
    color: #008800;
}

.modal-footer {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

#modalOk {
    width: 150px;
    height: 40px;
    border-radius: 5px;
    font-weight: 800;
    background: linear-gradient(to bottom, #777, #333);
    color: #fff;
    border: 1px solid #000;
}

#modalOk:hover {
    background: linear-gradient(to bottom, #999, #444);
}

.text-center {
    text-align: center;
}