/* --- CONFIGURATION & VARIABLES --- */
:root {
    --bg-black: #050505;
    --text-gray: #E0E0E0;
    --neon-blue: #7DF9FF;
    --toxic-green: #39FF14;
    --deep-purple: #674982;
    --glass-bg: rgba(5, 5, 5, 0.85);
    
    /* System Monospace Stack */
    --font-mono: 'Courier New', Courier, 'Lucida Sans Typewriter', monospace;
    
    --border-thin: 1px solid rgba(255, 255, 255, 0.15);
}

/* --- RESET --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: var(--bg-black);
    color: var(--text-gray);
    font-family: var(--font-mono);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* --- PRELOADER --- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.cmd-text {
    color: var(--toxic-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: #333;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0; height: 100%; width: 0%;
    background: var(--toxic-green);
    animation: load 1s linear forwards;
}

@keyframes load { to { width: 100%; } }

/* --- SCANLINES OVERLAY --- */
.scanlines {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 900;
}

/* --- HEADER --- */
.glass-header {
    position: fixed;
    top: 0; width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-bottom: var(--border-thin);
    z-index: 1000;
}

.logo-wrapper h1 {
    font-size: 1.2rem;
    letter-spacing: 0.15rem;
    color: var(--text-gray);
    font-weight: bold;
    position: relative;
}

.system-status {
    font-size: 0.8rem;
    color: var(--toxic-green);
    letter-spacing: 1px;
}

.status-light {
    display: inline-block;
    color: var(--toxic-green);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

/* --- GLITCH EFFECT --- */
.glitch { position: relative; color: var(--text-gray); }
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--bg-black);
}
.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--deep-purple);
    clip-path: inset(0 0 0 0);
    animation: glitch-1 3s infinite linear alternate-reverse;
}
.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--toxic-green);
    clip-path: inset(0 0 0 0);
    animation: glitch-2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0% { clip-path: inset(20% 0 80% 0); }
    20% { clip-path: inset(60% 0 10% 0); }
    40% { clip-path: inset(40% 0 50% 0); }
    60% { clip-path: inset(80% 0 5% 0); }
    80% { clip-path: inset(10% 0 70% 0); }
    100% { clip-path: inset(30% 0 20% 0); }
}
@keyframes glitch-2 {
    0% { clip-path: inset(10% 0 60% 0); }
    20% { clip-path: inset(30% 0 20% 0); }
    40% { clip-path: inset(70% 0 10% 0); }
    60% { clip-path: inset(20% 0 50% 0); }
    80% { clip-path: inset(60% 0 15% 0); }
    100% { clip-path: inset(40% 0 40% 0); }
}

/* --- HERO SECTION --- */
/* --- HERO SECTION (ОБНОВЛЕННЫЙ) --- */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-bottom: var(--border-thin);
    padding: 0 20px;
    position: relative;

    /* === ФОНОВОЕ ИЗОБРАЖЕНИЕ === */
    background-image: 
        /* Слой 1: Затемнение (от 70% сверху до 90% снизу), чтобы текст читался */
        linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.9)),
        /* Слой 2: Ваша картинка */
        url('img/hero.jpg');
    
    /* Растягиваем фото на весь блок без искажений */
    background-size: cover;
    
    /* Центрируем фото */
    background-position: center;
    
    /* Эффект параллакса: фото "замирает", когда вы скроллите страницу */
    background-attachment: fixed;
}
/* --- UTILITIES --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- RELEASE SECTION --- */
.release-section { padding: 100px 0; border-bottom: var(--border-thin); }

.release-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.art-frame {
    position: relative;
    border: 1px solid #333;
    padding: 5px;
}

.cover-img {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.4s ease;
}

.cover-img:hover { filter: grayscale(0%) contrast(1); }

.release-tag {
    position: absolute; top: -12px; left: 10px;
    background: var(--toxic-green);
    color: #000;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.track-title { font-size: 3rem; margin-bottom: 10px; color: #fff; }
.track-meta { color: var(--deep-purple); margin-bottom: 30px; font-size: 0.9rem; }

/* WIREFRAME BUTTONS */
.action-buttons { display: flex; flex-wrap: wrap; gap: 15px; }

.btn-wireframe {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    background: rgba(0,0,0,0.2);
}

.btn-wireframe:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px rgba(125, 249, 255, 0.4);
}

/* --- BAND SECTION --- */
.band-section { padding: 80px 0; border-bottom: var(--border-thin); }

.section-header {
    margin-bottom: 40px;
    color: #666;
    border-bottom: 1px dashed #333;
    display: inline-block;
    padding-bottom: 5px;
    font-size: 1rem;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.member-card {
    border: var(--border-thin);
    padding: 25px;
    background: rgba(255,255,255,0.01);
    transition: 0.3s;
    cursor: crosshair;
}

.member-card:hover {
    border-color: var(--deep-purple);
    box-shadow: inset 0 0 30px rgba(103, 73, 130, 0.2);
    transform: translateY(-4px);
}

.card-top { font-size: 0.7rem; color: #555; margin-bottom: 25px; }
.member-name { font-size: 1.8rem; color: #fff; margin-bottom: 10px; font-weight: bold; }
.card-status { font-size: 0.7rem; color: var(--toxic-green); }

/* --- FOOTER --- */
.site-footer { padding: 50px 0; font-size: 0.8rem; color: #666; }
.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links a, .privacy-link { color: #888; transition: 0.2s; }
.social-links a:hover, .privacy-link:hover { color: var(--toxic-green); }
.slash { margin: 0 10px; color: var(--deep-purple); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .release-grid { grid-template-columns: 1fr; text-align: center; }
    .hero { min-height: 70vh; }
    .action-buttons { justify-content: center; }
    .footer-flex { flex-direction: column; text-align: center; }
    .art-frame { max-width: 400px; margin: 0 auto; }
}