:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-color: #ff003c;
    /* Cyberpunk Red */
    --secondary-accent: #00f3ff;
    /* Cyan */
    --dark-grey: #121212;
    --grid-line: rgba(255, 255, 255, 0.05);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 999999;
    /* Máxima prioridad */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 5px;
    animation: blink 1s infinite alternate;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Typography & Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 900;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Ajusta el tamaño del logo */
    width: auto;
    filter: invert(1);
    /* Si el logo es negro, esto lo vuelve blanco. Si ya es blanco, quita esta línea */
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 700;
    overflow: hidden;
    display: inline-block;
}

.nav-links a::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--accent-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: translateY(0);
}

.nav-links a:hover {
    color: transparent;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.glitch {
    font-size: 8rem;
    line-height: 0.9;
    position: relative;
    color: var(--text-color);
}

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

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--accent-color);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--secondary-accent);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 50px, 0);
    }

    60% {
        clip: rect(60px, 9999px, 20px, 0);
    }

    80% {
        clip: rect(40px, 9999px, 70px, 0);
    }

    100% {
        clip: rect(90px, 9999px, 30px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    20% {
        clip: rect(50px, 9999px, 20px, 0);
    }

    40% {
        clip: rect(20px, 9999px, 60px, 0);
    }

    60% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    80% {
        clip: rect(30px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 90px, 0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 8px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.location-tag {
    font-size: 0.9rem;
    color: var(--accent-color);
    letter-spacing: 4px;
    margin-bottom: 3rem;
    font-weight: 700;
}

.cta-button {
    padding: 1rem 3rem;
    border: 1px solid var(--text-color);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--text-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--bg-color);
}

.cta-button:hover::before {
    left: 0;
}

.circle-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite;
}

.circle-visual::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(255, 0, 60, 0.2);
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
}

/* Sections */
.section-padding {
    padding: 8rem 4rem;
}

.section-header {
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.section-header h3 {
    font-size: 2.5rem;
    letter-spacing: 4px;
}

.line {
    height: 1px;
    background: var(--accent-color);
    flex-grow: 1;
    opacity: 0.5;
}

/* Releases Placeholder */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.placeholder-release {
    background: var(--dark-grey);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.placeholder-release::before {
    content: 'NO SIGNAL';
    position: absolute;
    opacity: 0.1;
    font-family: var(--font-display);
    font-size: 2rem;
    transform: rotate(-45deg);
}

.status {
    color: var(--accent-color);
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 1rem;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.artist-card {
    text-align: center;
}

.artist-image-container {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.artist-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: all 0.5s ease;
}

.artist-card:hover .artist-image-container img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.05);
}

/* Demo Drop & Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.demo-instructions h3 {
    margin-bottom: 1.5rem;
}

.demo-list {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.demo-list li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.email-highlight {
    font-size: 1.5rem;
    color: var(--text-color);
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 0.2rem;
}

.socials-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    font-size: 1.2rem;
    font-family: var(--font-display);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.social-link span {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.social-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-link:not(.disabled):hover {
    padding-left: 1rem;
    border-color: var(--accent-color);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    background: #020202;
}

.newsletter-mini {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.newsletter-mini p {
    font-family: var(--font-display);
    letter-spacing: 2px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.mini-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mini-form input {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: #fff;
    font-family: var(--font-body);
    outline: none;
}

.mini-form button {
    background: var(--accent-color);
    border: none;
    color: #fff;
    padding: 0 1rem;
    font-weight: bold;
    cursor: none;
}

.mini-form button:hover {
    background: #fff;
    color: #000;
}

.footer-links p {
    font-size: 0.7rem;
    opacity: 0.4;
    letter-spacing: 1px;
}

/* Background Animation */
@keyframes bg-pulse {
    0% {
        background-color: #050505;
    }

    50% {
        background-color: #0a0000;
    }

    /* Very subtle red tint */
    100% {
        background-color: #050505;
    }
}

body {
    animation: bg-pulse 10s infinite ease-in-out;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
    /* High contrast container */
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    /* Thicker line */
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    /* Shadow for legibility */
}

/* Animation for Hamburger to X */
.menu-toggle.toggle span:nth-child(1) {
    transform: rotate(-45deg) translate(-7px, 6px);
    /* Adjusted for thicker lines */
    background-color: var(--accent-color);
}

.menu-toggle.toggle span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.toggle span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
    background-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .glitch {
        font-size: 4rem;
    }

    .main-header {
        padding: 1.5rem;
        background-color: transparent;
        /* El menú fullscreen se encarga del fondo */
        mix-blend-mode: normal !important;
        /* CRÍTICO: Evita que el menú se mezcle con el fondo */
        z-index: 1001;
        /* Asegurar que esté encima de todo */
    }

    .menu-toggle {
        display: flex;
    }

    /* Show hamburger on mobile */

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background-color: #050505 !important;
        /* Forzar negro sólido */
        background: rgba(0, 0, 0, 0.98) !important;
        /* Respaldo */
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in-out;
        z-index: 1000;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        opacity: 0;
        margin: 1.5rem 0;
    }

    /* Animation for links appearing */
    @keyframes navLinkFade {
        from {
            opacity: 0;

            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* --- FIXED & GLOBAL ELEMENTS --- */

/* Radio Player - Fixed Version */
.radio-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    /* Altura fija */
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    position: relative;
    z-index: 2;
    opacity: 1;
    /* Siempre visible */
    transform: none;
    /* Sin movimiento */
    pointer-events: auto;
}

/* Show controls on hover */
.radio-player:hover .player-controls {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.1s;
    /* Wait for expand to start */
}

#visualizer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    pointer-events: none;
}

.track-info {
    display: flex;
    flex-direction: column;
    min-width: 200px;
}

.live-indicator {
    color: var(--accent-color);
    font-size: 0.6rem;
    font-weight: bold;
    animation: blink 2s infinite;
}

.track-name {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.player-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 2rem;
    font-family: var(--font-display);
    cursor: pointer;
    transition: all 0.3s;
}

.player-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Custom Techno Fader */
.volume-control input[type=range] {
    -webkit-appearance: none;
    /* Hides default slider */
    width: 100px;
    /* Ancho un poco mayor */
    background: transparent;
    cursor: pointer;
    margin-left: 1rem;
}

/* Chrome/Safari Track */
.volume-control input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0;
    transition: all 0.3s;
}

/* Chrome/Safari Thumb */
.volume-control input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 12px;
    width: 12px;
    background: var(--accent-color);
    margin-top: -5px;
    /* Centrar verticalmente */
    border-radius: 0;
    /* Cuadrado industrial */
    box-shadow: 0 0 10px var(--accent-color);
    /* Glow */
    transition: all 0.2s;
}

.volume-control input[type=range]:hover::-webkit-slider-thumb {
    transform: scale(1.2);
    background: #fff;
}

.volume-control input[type=range]:focus::-webkit-slider-runnable-track {
    background: rgba(255, 255, 255, 0.4);
}

/* Firefox Track */
.volume-control input[type=range]::-moz-range-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Firefox Thumb */
.volume-control input[type=range]::-moz-range-thumb {
    height: 12px;
    width: 12px;
    background: var(--accent-color);
    border: none;
    border-radius: 0;
    box-shadow: 0 0 10px var(--accent-color);
}

/* Secret Modal (Easter Egg) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 9999;
    /* Highest priority */
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.98);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: #050505;
    border: 1px solid var(--accent-color);
    padding: 3rem;
    text-align: center;
    position: relative;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 0 50px rgba(255, 0, 60, 0.3);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

.secret-reward {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.download-btn {
    display: inline-block;
    margin-top: 1rem;
    background: var(--accent-color);
    color: #fff;
    border: none;
    text-decoration: none;
}

/* Documental Page Styles */
.doc-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1514525253440-b393452e3383?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.doc-status {
    margin-top: 2rem;
    font-family: var(--font-display);
    border: 1px solid #fff;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.recording-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: red;
    border-radius: 50%;
    margin-right: 5px;
    animation: blink 1s infinite;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 5px;
    color: #555;
}

/* Final Responsive Overrides */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .tour-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .radio-player {
        padding: 0 1rem;
    }

    .track-info {
        min-width: auto;
        max-width: 120px;
    }

    .track-name {
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-btn {
        padding: 0.3rem 1rem;
        font-size: 0.8rem;
    }

    .volume-control {
        display: none;
        /* Hide volume on mobile to save space */
    }
}

/* Merch Section - Cyber Grid */
.merch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.merch-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 10, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.merch-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.merch-visual {
    height: 350px;
    background: #080808;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Efecto de escaneo */
.scan-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    opacity: 0;
    top: 0;
    left: 0;
    box-shadow: 0 0 10px var(--accent-color);
}

.merch-item:hover .scan-line {
    animation: scan 1.5s linear infinite;
    opacity: 0.8;
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.item-id {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.merch-item:hover .item-id {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.merch-info {
    padding: 1.5rem;
    text-align: center;
}

.merch-info h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.merch-info p {
    font-size: 0.8rem;
    opacity: 0.6;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.merch-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.8rem 2rem;
    font-family: var(--font-display);
    font-size: 0.8rem;
    letter-spacing: 2px;
    cursor: none;
    transition: all 0.3s;
    width: 100%;
    display: inline-block;
}

.merch-btn:hover {
    background: var(--accent-color);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 60, 0.4);
}

color: #555;
box-shadow: none;
}

/* --- CYBER CASSETTE PLAYER (Improved Visibility) --- */
.session-card {
    background: transparent;
    border: none;
    padding: 0;
    perspective: 1000px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.cassette-body {
    background: #111;
    /* Solid dark background */
    border-radius: 10px;
    padding: 15px;
    position: relative;
    border: 2px solid #333;
    box-shadow:
        inset 0 0 20px #000,
        0 0 15px rgba(0, 243, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.session-card.playing .cassette-body {
    border-color: var(--secondary-accent);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.cassette-label-area {
    background: #eee;
    width: 100%;
    height: 120px;
    border-radius: 5px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cassette-window {
    width: 70%;
    height: 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Tape Reels (High Contrast) */
.reel {
    width: 40px;
    /* Bigger */
    height: 40px;
    /* Bigger */
    background: radial-gradient(circle, #fff 30%, #333 40%, #111 100%);
    border-radius: 50%;
    border: 2px solid #777;
    position: relative;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.reel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70%;
    height: 4px;
    /* Thicker spokes */
    background: #000;
    transform: translate(-50%, -50%);
}

.reel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70%;
    width: 4px;
    /* Thicker spokes */
    background: #000;
    transform: translate(-50%, -50%);
}

.reel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    height: 80%;
    width: 2px;
    background: #000;
    transform: translate(-50%, -50%);
}

.session-card.playing .reel,
.reel.spinning {
    animation: spin 2s linear infinite;
}

.session-card.playing .reel.left,
.reel.spinning.left {
    animation-duration: 2s;
    /* Slower as it empties? Simplified for now */
}

.session-card.playing .reel.right,
.reel.spinning.right {
    animation-duration: 2s;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tape connecting reels */
.tape-bridge {
    height: 20px;
    flex-grow: 1;
    margin: 0 5px;
    background: #111;
    position: relative;
    overflow: hidden;
}

/* Artist Image as Sticker on Cassette */
.cassette-sticker {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    mix-blend-mode: multiply;
}

.cassette-info {
    text-align: center;
    color: #fff;
    z-index: 5;
    margin-top: 10px;
    width: 100%;
}

.cassette-title {
    font-family: 'marker', cursive, sans-serif;
    /* Fallback */
    font-family: var(--font-display);
    color: #111;
    background: #fff;
    padding: 2px 5px;
    transform: rotate(-2deg);
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Play Button Integrated */
.cassette-controls {
    margin-top: 10px;
    width: 100%;
}

.play-session-btn.cyber-tape {
    background: #222;
    border: 1px solid #444;
    color: var(--secondary-accent);
    width: 100%;
    padding: 10px;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.play-session-btn.cyber-tape:hover {
    background: var(--secondary-accent);
    color: #000;
    box-shadow: 0 0 15px var(--secondary-accent);
}

.play-session-btn.cyber-tape.playing {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--accent-color);
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        box-shadow: 0 0 10px var(--accent-color);
    }

    to {
        box-shadow: 0 0 20px var(--accent-color);
    }
}

/* --- CYBER RANGE SLIDERS (Session Controls) --- */
.cyber-range,
.cyber-range-mini {
    -webkit-appearance: none;
    appearance: none;
    background: #222;
    height: 5px;
    border-radius: 2px;
    outline: none;
    border: 1px solid #444;
}

.cyber-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: var(--secondary-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px var(--secondary-accent);
    transition: transform 0.2s;
}

.cyber-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.cyber-range-mini::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
}

/* --- PERFORMANCE OPTIMIZATIONS --- */
.releases-grid,
.artists-grid,
.contact-wrapper {
    /* Only render when near viewport to save GPU */
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* Hardware Acceleration Hints */
.cursor-dot,
.cursor-outline,
.menu-toggle,
.reel {
    will-change: transform;
    transform: translateZ(0);
    /* Trigger GPU */
}

/* Optimize Noise Effect */
.noise-overlay {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .noise-overlay,
    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}