/* Deadly Channel - CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier Prime', monospace;
    background: #1a1a1a;
    color: #f4f4f4;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

/* VHS Noise Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.12) 1px,
            rgba(255, 255, 255, 0.12) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.08) 1px,
            rgba(255, 255, 255, 0.08) 2px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.04) 2px,
            rgba(255, 255, 255, 0.04) 3px
        );
    pointer-events: none;
    z-index: 1000;
    animation: vhsNoise 0.02s infinite;
}

@keyframes vhsNoise {
    0%, 100% { opacity: 0.12; }
    25% { opacity: 0.25; }
    50% { opacity: 0.2; }
    75% { opacity: 0.3; }
}

/* VHS Loader */
.vhs-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: 'Orbitron', monospace;
    gap: 2rem;
}

.vhs-counter {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
    animation: counterFlicker 0.5s infinite;
}

@keyframes counterFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.vhs-loading-text {
    font-size: 1.5rem;
    color: #f4f4f4;
    animation: textGlitch 2s infinite;
}

@keyframes textGlitch {
    0%, 90%, 100% { transform: translateX(0); }
    10% { transform: translateX(-2px); }
    20% { transform: translateX(2px); }
    30% { transform: translateX(-1px); }
    40% { transform: translateX(1px); }
}







/* Main Content */
.main-content {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}

.main-content.hidden {
    opacity: 0;
}

/* Navigation */
.vhs-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 2px solid #666666;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 10px #ffffff;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #999999;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
}

.vhs-glitch-container {
    position: relative;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px #ffffff, 0 0 40px #ffffff;
    position: relative;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.1) 1px,
            rgba(255, 255, 255, 0.1) 2px
        );
    pointer-events: none;
    z-index: -1;
    animation: titleNoise 0.05s infinite;
}

@keyframes titleNoise {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

@keyframes titleGlow {
    0% { text-shadow: 0 0 30px #ffffff, 0 0 40px #ffffff; }
    100% { text-shadow: 0 0 40px #ffffff, 0 0 50px #ffffff, 0 0 60px #f4f4f4; }
}

.glitch {
    position: relative;
}

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

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #cccccc;
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #666666;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    animation: subtitleFlicker 3s infinite;
    text-shadow: 0 0 10px #ffffff;
}

@keyframes subtitleFlicker {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.5; }
}

.vhs-counter-display {
    background: rgba(26, 26, 26, 0.8);
    padding: 1rem 2rem;
    border: 2px solid #666666;
    margin-bottom: 2rem;
    display: inline-block;
}

.counter-label {
    font-size: 0.9rem;
    color: #999999;
    display: block;
    margin-bottom: 0.5rem;
}

.counter-time {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 700;
}

.vhs-button {
    background: linear-gradient(45deg, #666666, #999999);
    border: none;
    padding: 1rem 2rem;
    color: #f4f4f4;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.vhs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.vhs-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.vhs-button:hover::before {
    left: 100%;
}

/* VHS Effects */
.vhs-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
    animation: noiseMove 6s infinite;
}

@keyframes noiseMove {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, -5px); }
    50% { transform: translate(5px, -10px); }
    75% { transform: translate(-5px, 5px); }
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 1px,
        rgba(255, 255, 255, 0.15) 1px,
        rgba(255, 255, 255, 0.15) 2px
    );
    pointer-events: none;
    animation: scanMove 0.02s infinite;
}

@keyframes scanMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 20px #ffffff;
}

.vhs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #666666, #999999, #ffffff);
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 4px,
            rgba(255, 255, 255, 0.03) 4px,
            rgba(255, 255, 255, 0.03) 5px
        );
    pointer-events: none;
    z-index: 1;
    animation: sectionNoise 0.08s infinite;
}

@keyframes sectionNoise {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.06; }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vhs-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.vhs-text::before {
    content: '▶';
    position: absolute;
    left: -1rem;
    color: #ffffff;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid #666666;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #999999;
    letter-spacing: 1px;
}

/* Artists Section */
.artists-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.artist-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #666666;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.artist-card:hover::before {
    left: 100%;
}

.vhs-frame {
    position: relative;
    margin-bottom: 1.5rem;
    border: 3px solid #666666;
    overflow: hidden;
}

.vhs-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.artist-card:hover .vhs-frame img {
    transform: scale(1.05);
}

.artist-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #ffffff;
}

.artist-genre {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.artist-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(102, 102, 102, 0.3);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #f4f4f4;
    border: 1px solid #666666;
}

/* Releases Section */
.releases-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
}

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

.release-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #666666;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.release-card:hover {
    transform: translateY(-5px);
    border-color: #ffffff;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.vhs-tape-design {
    position: relative;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #666666, #999999);
    padding: 1rem;
    border-radius: 5px;
}

.tape-label {
    display: none; /* Скрываем VHS-метки */
}

.vhs-tape-design img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #1a1a1a;
}

.tape-holes {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
}

.tape-holes::before,
.tape-holes::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
}

.release-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #ffffff;
}

.release-artist {
    font-size: 1rem;
    color: #f4f4f4;
    margin-bottom: 0.5rem;
}

.release-date {
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 1rem;
}

.play-button {
    background: linear-gradient(45deg, #666666, #999999);
    border: none;
    padding: 0.8rem 1.5rem;
    color: #f4f4f4;
    font-family: 'Courier Prime', monospace;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.play-button:hover {
    background: linear-gradient(45deg, #999999, #ffffff);
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid #666666;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #ffffff;
    transform: translateX(10px);
}

.contact-label {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: #f4f4f4;
}

.vhs-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.vhs-input,
.vhs-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid #666666;
    color: #f4f4f4;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.vhs-input:focus,
.vhs-textarea:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.vhs-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Footer */
.vhs-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-top: 2px solid #666666;
    padding: 3rem 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 1px solid #666666;
}

.social-link:hover {
    color: #ffffff;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer-text {
    text-align: center;
    color: #999999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .releases-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* VHS Card Effects */
.vhs-card {
    position: relative;
    overflow: hidden;
}

.vhs-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.vhs-card:hover::after {
    transform: translateX(100%);
}

/* Additional VHS Noise Effects */
.vhs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.04) 2px,
            rgba(255, 255, 255, 0.04) 4px
        ),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.02) 3px,
            rgba(255, 255, 255, 0.02) 5px
        );
    pointer-events: none;
    z-index: 1;
    animation: cardNoise 0.1s infinite;
}

@keyframes cardNoise {
    0%, 100% { opacity: 0.04; }
    50% { opacity: 0.08; }
}

/* Additional VHS Effects */
.vhs-text {
    position: relative;
}

.vhs-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.vhs-text:hover::after {
    width: 100%;
}

/* Enhanced VHS Noise for Main Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.06) 2px,
            rgba(255, 255, 255, 0.06) 3px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 255, 255, 0.04) 3px,
            rgba(255, 255, 255, 0.04) 4px
        );
    pointer-events: none;
    z-index: 2;
    animation: vhsStatic 0.05s infinite;
}

@keyframes vhsStatic {
    0%, 100% { opacity: 0.06; }
    25% { opacity: 0.12; }
    50% { opacity: 0.08; }
    75% { opacity: 0.15; }
}

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

.glitch::before {
    animation: glitch-1 2s infinite;
    color: #ffffff;
    z-index: -1;
    text-shadow: 2px 0 0 #cccccc;
}

.glitch::after {
    animation: glitch-2 2s infinite;
    color: #f4f4f4;
    z-index: -2;
    text-shadow: -2px 0 0 #999999;
} 