:root {
    --bg-color: #010102;        
    --panel-color: rgba(5, 5, 6, 0.85); 
    --neon-green: #00ff66;      
    --neon-magenta: #e60067;    
    --dark-gray: #0f0f12;       
    --text-color: #a5a5aa;      
    
    --font-industrial: 'Orbitron', sans-serif;
    --font-terminal: 'Share Tech Mono', monospace;
    --font-accent: 'Rajdhani', sans-serif;
}

* {
    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-terminal); 
    overflow-x: hidden;
    position: relative;
}

.background-deity {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fondo.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    filter: grayscale(100%) brightness(35%) contrast(170%);
    opacity: 0.35;
    z-index: -1; 
    pointer-events: none;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.4) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.02), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.02));
    background-size: 100% 4px, 6px 100%;
    z-index: 10;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.95) 100%);
    z-index: 12;
    pointer-events: none;
}

.scanline {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--neon-green);
    opacity: 0.04; 
    z-index: 11;
    animation: scan 8s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: -5%; }
    100% { top: 105%; }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid var(--dark-gray);
    background: rgba(1, 1, 2, 0.95);
    backdrop-filter: blur(5px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-family: var(--font-industrial);
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: 0.3s;
}

.logo span {
    color: var(--neon-magenta);
    text-shadow: 0 0 5px rgba(230, 0, 103, 0.5);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--dark-gray);
    color: var(--neon-green);
    font-family: var(--font-terminal);
    padding: 8px 12px;
    font-size: 0.85rem;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

nav {
    display: flex;
}

nav a {
    font-family: var(--font-terminal);
    color: var(--text-color);
    text-decoration: none;
    margin-left: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: #fff;
    text-shadow: 0 0 5px #fff;
}

.hero {
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    border-bottom: 1px solid var(--dark-gray);
    background: radial-gradient(circle, transparent 0%, rgba(1, 1, 2, 0.8) 100%);
}

.glitch-title {
    font-family: var(--font-industrial);
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(4px, 1.5vw, 12px); 
    position: relative;
    color: #fff;
    animation: glitch-skew 1s infinite linear alternate-reverse;
    width: 100%;
}

.glitch-title::before, .glitch-title::after {
    content: 'VELARIUM NOIR';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #010102;
    font-family: var(--font-industrial);
}

.glitch-title::before {
    left: 3px;
    text-shadow: -3px 0 var(--neon-magenta);
    clip: rect(44px, 650px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch-title::after {
    left: -3px;
    text-shadow: -3px 0 var(--neon-green), 0 3px var(--neon-magenta);
    clip: rect(85px, 650px, 140px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.hero p.tagline {
    font-family: var(--font-terminal);
    font-size: clamp(0.75rem, 2vw, 0.9rem);
    color: #444;
    margin-top: 25px;
    letter-spacing: clamp(2px, 1vw, 6px);
    text-transform: uppercase;
}

.manifesto-text {
    max-width: 700px;
    margin-top: 40px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #777;
    background: rgba(3, 3, 5, 0.6);
    padding: 20px;
    border: 1px dashed #15151a;
}

.manifesto-text strong {
    color: #aaa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

h2 {
    font-family: var(--font-industrial);
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(3px, 1vw, 6px);
    margin-bottom: 5px;
    color: #fff;
}

.subtitle-section {
    font-family: var(--font-terminal);
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.divider {
    height: 1px;
    background: var(--dark-gray);
    margin-bottom: 50px;
    width: 100%;
}

.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

a.artist-card {
    text-decoration: none;
    display: block;
    background-color: var(--panel-color);
    border: 1px solid var(--dark-gray);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    backdrop-filter: blur(4px); 
}

.artist-logo-container {
    height: 300px;
    background: rgba(3, 3, 4, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
}

.artist-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(70%) contrast(110%);
    opacity: 0.65;
    transition: all 0.5s ease;
}

.artist-info {
    padding: 25px;
    background: rgba(3, 3, 4, 0.9);
    border-top: 1px solid var(--dark-gray);
}

.artist-info h3 {
    font-family: var(--font-accent);
    font-size: 1.8rem; 
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase; 
    transition: color 0.3s;
}

.artist-info p {
    font-family: var(--font-terminal);
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    transition: color 0.3s;
}

.genres-tag {
    font-family: var(--font-terminal);
    display: inline-block;
    margin-top: 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    background: #09090b;
    border: 1px solid #15151a;
    color: #444;
    transition: all 0.3s;
}

.cyber-hover:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(0, 255, 102, 0.15);
    transform: translateY(-5px);
}
.cyber-hover:hover .artist-logo-container img { filter: grayscale(0%) brightness(100%); opacity: 1; }
.cyber-hover:hover h3 { color: var(--neon-green); text-shadow: 0 0 8px rgba(0, 255, 102, 0.3); }
.cyber-hover:hover p { color: #aaa; }
.cyber-hover:hover .genres-tag { border-color: var(--neon-green); color: var(--neon-green); }

.goth-hover:hover {
    border-color: var(--neon-magenta);
    box-shadow: 0 0 25px rgba(230, 0, 103, 0.15);
    transform: translateY(-5px);
}
.goth-hover:hover .artist-logo-container img { filter: grayscale(0%) brightness(100%); opacity: 1; }
.goth-hover:hover h3 { color: var(--neon-magenta); text-shadow: 0 0 8px rgba(230, 0, 103, 0.3); }
.goth-hover:hover p { color: #aaa; }
.goth-hover:hover .genres-tag { border-color: var(--neon-magenta); color: var(--neon-magenta); }

.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

a.release-item {
    text-decoration: none;
    display: block;
    background: rgba(5, 5, 6, 0.5);
    border: 1px solid var(--dark-gray);
    padding: 20px;
    text-align: center;
    transition: all 0.4s ease;
}

a.release-item:hover {
    border-color: #222;
    background: rgba(9, 9, 12, 0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.03);
    transform: translateY(-3px);
}

.release-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1; 
    background: #030304;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: 1px solid #0d0d12;
}

.release-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%);
    opacity: 0.5;
    transition: all 0.5s ease;
}

a.release-item:hover .release-thumbnail img {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

a.release-item h4 {
    font-family: var(--font-accent);
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

a.release-item p {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 10px;
}

.release-status {
    font-size: 0.7rem;
    color: var(--neon-green);
    letter-spacing: 1px;
}

.release-status.magenta {
    color: var(--neon-magenta);
}

.faq-block {
    margin-bottom: 30px;
    background: rgba(4, 4, 6, 0.9);
    padding: 25px;
    border-left: 2px solid #222;
}

.faq-block h3 {
    font-family: var(--font-accent);
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-block p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #777;
}

footer {
    text-align: center;
    padding: 40px 20px;
    font-family: var(--font-terminal);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #444;
    border-top: 1px solid var(--dark-gray);
    background: rgba(1, 1, 2, 0.95);
    position: relative;
    z-index: 20;
    text-transform: uppercase;
}

footer a {
    color: #666;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-bottom: 1px dashed #333;
    padding-bottom: 2px;
}

footer a:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.5);
}

@keyframes glitch-anim {
    0% { clip: rect(25px, 9999px, 50px, 0); }
    20% { clip: rect(80px, 9999px, 20px, 0); }
    40% { clip: rect(45px, 9999px, 85px, 0); }
    60% { clip: rect(10px, 9999px, 60px, 0); }
    80% { clip: rect(90px, 9999px, 100px, 0); }
    100% { clip: rect(30px, 9999px, 70px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(70px, 9999px, 105px, 0); }
    25% { clip: rect(15px, 9999px, 65px, 0); }
    50% { clip: rect(50px, 9999px, 30px, 0); }
    75% { clip: rect(95px, 9999px, 80px, 0); }
    100% { clip: rect(5px, 9999px, 40px, 0); }
}

@keyframes glitch-skew {
    0%, 100% { transform: skew(0deg); }
    20% { transform: skew(-3deg); }
    40% { transform: skew(3deg); }
    60% { transform: skew(-1deg); }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(1, 1, 2, 0.98);
        border-bottom: 1px solid var(--neon-green);
        padding: 20px 0;
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    nav.active {
        display: flex;
    }

    nav a {
        margin: 12px 0;
        text-align: center;
        font-size: 1rem;
        width: 100%;
    }

    .hero {
        min-height: 60vh;
        padding: 40px 15px;
    }

    .container {
        padding: 50px 15px;
    }

    .artist-logo-container {
        height: 220px;
    }

    .artist-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .releases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-block {
        padding: 15px;
    }
}