:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --text-muted: #888888;
    --accent-color: #ff2a2a;
    --accent-hover: #ff4d4d;
    --card-bg: #0a0a0a;
    --border-color: #1a1a1a;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background-color: var(--accent-color);
    color: white;
}

/* Grain Effect */
.grain-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section {
    padding: 8rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: var(--accent-color);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    letter-spacing: 2px;
}

.active-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff2a2a;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff2a2a, 0 0 15px #ff2a2a;
    animation: blinkRed 1s infinite alternate;
}

@keyframes blinkRed {
    0% {
        opacity: 1;
        box-shadow: 0 0 10px #ff2a2a, 0 0 20px #ff2a2a;
    }
    100% {
        opacity: 0.3;
        box-shadow: 0 0 2px #ff2a2a, 0 0 5px transparent;
    }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding: 0 1rem;
}



.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    letter-spacing: 10px;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-manifesto {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

/* Cinematic Blur Reveal Animation */
.blur-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(20px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, filter, transform;
}

.blur-reveal.in-view {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--text-color);
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* About Section */
.about-content p {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-muted);
}

.about-content p span {
    color: var(--text-color);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.artists-grid {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100vw;
    margin-left: -50vw;
    left: 50%;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: marquee 25s linear infinite;
    padding: 1rem 0 3rem 0;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-track .artist-card {
    width: clamp(280px, 25vw, 350px);
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

.collective-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.releases-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Artist & Collective Cards */
.artist-card, .collective-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}

.artist-card:hover, .collective-card:hover {
    border-color: var(--border-color);
    transform: translateY(-5px);
}

.card-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #000;
}

.collective-card .card-image {
    aspect-ratio: 1/1; /* Square for collective members */
}

/* Base state: Desaturated */
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    filter: grayscale(100%) contrast(1.2);
}

/* Hover state: Reveal color */
.artist-card:hover .card-image img,
.collective-card:hover .card-image img {
    transform: scale(1.05);
    filter: grayscale(0%) contrast(1);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.artist-card:hover .card-overlay {
    opacity: 1;
}

.card-info {
    padding: 1.5rem;
}

.card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Release Showcase Cards (Modern Platform Style) */
.releases-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.release-list-item {
    display: flex;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.release-list-item:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.release-cover-small {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.release-cover-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.release-info-small {
    min-width: 150px;
    flex-shrink: 0;
}

.release-info-small h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-info-small p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.release-play-btn {
    font-size: 1.8rem;
    color: var(--text-color);
    transition: var(--transition);
}

.release-list-item:hover .release-play-btn {
    color: var(--text-color);
}

.release-wave {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
    opacity: 0.5;
}

.release-wave .bar {
    width: 3px;
    background-color: var(--text-muted);
    border-radius: 2px;
}

.release-wave .bar:nth-child(odd) { height: 60%; }
.release-wave .bar:nth-child(even) { height: 100%; }
.release-wave .bar:nth-child(3n) { height: 40%; }
.release-wave .bar:nth-child(4n) { height: 80%; }

.release-spotify-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    white-space: nowrap;
}

.release-spotify-link i {
    font-size: 1.2rem;
    color: var(--text-color);
}

.release-list-item:hover .release-spotify-link {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .release-wave {
        display: none;
    }
    .release-list-item {
        flex-wrap: wrap;
        gap: 1rem;
    }
    .release-info-small {
        flex-grow: 1;
    }
    .release-spotify-link {
        width: 100%;
        justify-content: center;
    }
}

/* Events Styles */
.events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.event-row:hover {
    border-color: var(--text-color);
    background: rgba(255, 255, 255, 0.05);
}

.event-date {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color);
    min-width: 120px;
}

.event-details {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.event-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.event-venue {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-venue i {
    color: var(--text-color);
}

.event-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: var(--transition);
}

.event-btn:hover {
    border-color: var(--text-color);
    color: var(--text-color);
    background: transparent;
}

@media (max-width: 768px) {
    .event-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .event-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ARTIST SPECIFIC PAGE */
.artist-hero {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 4rem;
}

.artist-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.artist-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.artist-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.3) 0%, rgba(5,5,5,1) 100%);
    z-index: 2;
}

.artist-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.artist-header .genre {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.artist-section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.artist-bio-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.artist-bio-short {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-muted);
}

.artist-bio-long {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.artist-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.artist-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.25rem;
    transition: var(--transition);
    text-decoration: none;
}

.artist-socials a:hover {
    border-color: var(--text-color);
    background: var(--text-color);
    color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.loader {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-muted);
}

.loader i {
    font-size: 3rem;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
    color: var(--text-color);
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--text-color);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.email-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.email-link:hover::after {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 1rem 1.5rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--text-color);
    outline: none;
}

.submit-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 2rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .artist-bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        width: 25px;
        height: 2px;
        background-color: var(--text-color);
        transition: var(--transition);
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
    
    .release-row {
        flex-direction: column;
        text-align: center;
    }
    
    .release-details {
        margin: 1rem 0;
    }
    
    .release-meta {
        text-align: center;
    }
}

/* Custom Cursor */
@media (pointer: fine) {
    body, a, button, input, textarea, select {
        cursor: none !important;
    }
}

.cursor-dot, .cursor-outline {
    position: fixed;
    top: 0; left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999999;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    transition: opacity 0.2s, width 0.2s, height 0.2s;
}

.cursor-outline {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.3s, 
                border-color 0.3s;
}

/* Hover state (morphs into a solid inverted highlight) */
.cursor-outline.cursor-hover {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-color: transparent;
}
.cursor-dot.cursor-hover {
    opacity: 0; /* Disappear into the background */
}

/* Click state */
.cursor-outline.cursor-active {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
}

/* HOTLINE THEME ANIMATIONS */

/* 4. Ticker Tape (Emergency Banner) */
.ticker-tape {
    width: 100%;
    background-color: #ff2a2a;
    color: #000;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 3px;
    padding: 0.5rem 0;
    overflow: hidden;
    position: relative;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    display: flex;
    white-space: nowrap;
}
.ticker-tape span {
    display: inline-block;
    padding-right: 50px;
    animation: ticker-anim 20s linear infinite;
}
@keyframes ticker-anim {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* 5. REC Badge */
.rec-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: rgba(0,0,0,0.9);
    color: #ff2a2a;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 6px;
    border: 1px solid #ff2a2a;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 5;
    box-shadow: 0 0 10px rgba(255, 42, 42, 0.4);
}
.rec-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #ff2a2a;
    border-radius: 50%;
    animation: rec-blink 1s infinite alternate;
}
@keyframes rec-blink {
    from { opacity: 1; }
    to { opacity: 0; }
}


/* INTRO PRELOADER */
.intro-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
    overflow: hidden;
}
.intro-preloader::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox=%220 0 200 200%22 xmlns=%22http://www.w3.org/2000/svg%22%3E%3Cfilter id=%22noiseFilter%22%3E%3CfeTurbulence type=%22fractalNoise%22 baseFrequency=%220.65%22 numOctaves=%223%22 stitchTiles=%22stitch%22/%3E%3C/filter%3E%3Crect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23noiseFilter)%22/%3E%3C/svg%3E');
    opacity: 0.06;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
    z-index: 0;
}
.intro-content-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.call-button {
    background: transparent;
    color: #ff2a2a;
    border: 2px solid #ff2a2a;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 15px 40px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 42, 42, 0.5);
    animation: pulse-call 1.5s infinite;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.call-button:hover {
    background: #ff2a2a;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 42, 42, 0.8);
}
@keyframes pulse-call {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 42, 42, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(255, 42, 42, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(255, 42, 42, 0.5); }
}
.dialing-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ff2a2a;
    font-weight: 800;
    letter-spacing: 5px;
    animation: blink-dial 1s infinite;
}
@keyframes blink-dial {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.voice-subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.rec-status {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 4px;
    color: #ff2a2a;
    animation: blink-dial 1s infinite;
}
.voice-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    text-align: center;
}
.intro-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* FINAL MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-title {
        font-size: clamp(2rem, 11vw, 8rem);
        word-break: break-word;
    }
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .hero-manifesto {
        font-size: 1rem;
    }
    .section {
        padding: 4rem 0;
    }
    
    /* Intro Screen */
    .voice-text {
        font-size: 1.2rem;
        padding: 0 10px;
    }
    .call-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    .dialing-text {
        font-size: 1.2rem;
    }
    .rec-status {
        font-size: 0.85rem;
    }
    
    /* Ticker Tape */
    .ticker-tape {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
    
    /* Grids */
    .releases-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Artist Bio Grid on Artist Page */
    .artist-bio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.artist-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.artist-audio-controls {
    margin-top: 20px;
}

.mute-btn {
    background: transparent;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    height: 40px;
}
.mute-btn:hover {
    background: rgba(255, 0, 51, 0.1);
}
.wave-icon {
    display: block;
    width: 3px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 2px;
    transition: all 0.2s ease;
}
.wave-icon.active {
    animation: wave 1s infinite alternate;
}
.wave-icon.active:nth-child(2) {
    animation-delay: 0.2s;
}
.wave-icon.active:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes wave {
    0% { height: 6px; }
    100% { height: 18px; }
}
