/* --- ЭЛЕГАНТНЫЕ ШРИФТЫ 2025 --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');


:root {
    --primary: #00FF88;
    --secondary: #00CCFF;
    --accent: #FF3366;
    --dark: #000000;
    --dark-gray: #0a0a0a;
    --gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --text: #ffffff;
    --text-dim: #888888;
    --green: #00FF88;
    --blue: #00CCFF;
    --red: #FF3366;
    
    /* Новые переменные для премиум эффектов */
    --glow: rgba(0, 255, 136, 0.4);
    --glow-blue: rgba(0, 204, 255, 0.3);
    --surface: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
    --glass: rgba(255, 255, 255, 0.05);
}

/* --- 2. Базовые стили и сбросы --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden; /* Предотвращает горизонтальный скролл */
}

html, body {
    width: 100%;
    position: relative;
    overscroll-behavior-y: none; /* Убирает "дерганье" при скролле вверх/вниз на мобильных */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    cursor: default;
    line-height: 1.6;
    -webkit-overflow-scrolling: touch;
    font-weight: 400; 
    overflow-x: hidden; /* Дополнительное правило для предотвращения горизонтального скролла */
}

main {
    display: block;
}

section {
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* --- 3. Улучшения доступности (Focus States) --- */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 3px;
    border-radius: 4px;
}

.form-input:focus-visible, 
.form-textarea:focus-visible, 
select:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 2px;
}

/* --- 4. Фон и эффекты --- */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at top, #001122 0%, #000000 50%);
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
    pointer-events: none;
}

.orb-1 { background: linear-gradient(135deg, var(--green), transparent); top: -300px; left: -300px; animation-delay: 0s; }
.orb-2 { background: linear-gradient(135deg, var(--blue), transparent); bottom: -300px; right: -300px; animation-delay: 10s; }
.orb-3 { background: linear-gradient(135deg, var(--red), transparent); top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 5s; opacity: 0.1; }

.grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* --- 5. Навигация (Header) --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

nav.scrolled { padding: 15px 40px; background: rgba(0, 0, 0, 0.9); }

.nav-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 600; letter-spacing: -0.02em; background: linear-gradient(135deg, var(--text), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-decoration: none; transition: all 0.3s ease; font-family: 'Inter', sans-serif; }
.logo:hover { transform: scale(1.05); }
.nav-menu { display: flex; align-items: center; gap: 40px; }
.nav-link { 
    color: var(--text); 
    text-decoration: none; 
    font-size: 0.95rem; 
    font-weight: 500; 
    position: relative; 
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    opacity: 0.8; 
    font-family: 'Inter', sans-serif;
}
.nav-link:hover { opacity: 1; }
.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: -8px; 
    left: 0; 
    width: 0; 
    height: 2px; 
    background: linear-gradient(90deg, var(--green), var(--blue)); 
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }
.nav-link.active-link { opacity: 1; }

.lang-switcher { display: flex; background: rgba(255, 255, 255, 0.05); border-radius: 100px; padding: 3px; gap: 3px; }
a.lang-btn { text-decoration: none; display: inline-block; text-align: center; }
.lang-btn { padding: 8px 16px; background: transparent; border: none; color: var(--text); cursor: pointer; border-radius: 100px; font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; opacity: 0.6; font-family: 'Inter', sans-serif; }
.lang-btn.active { background: rgba(0, 255, 136, 0.1); opacity: 1; color: var(--green); cursor: default; }

.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); cursor: pointer; padding: 8px; transition: all 0.3s ease; z-index: 1001; }
.mobile-menu-btn:hover { color: var(--green); }
.hamburger { width: 24px; height: 18px; position: relative; }
.hamburger span { display: block; position: absolute; height: 2px; width: 100%; background: currentColor; border-radius: 2px; transition: all 0.3s ease; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { bottom: 0; }
.mobile-menu-btn.active .hamburger span:nth-child(1) { transform: rotate(45deg); top: 8px; }
.mobile-menu-btn.active .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active .hamburger span:nth-child(3) { transform: rotate(-45deg); bottom: 8px; }
.mobile-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(20px); z-index: 999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 30px; transform: translateX(-100%); transition: transform 0.3s ease; }
.mobile-menu.active { transform: translateX(0); }
.mobile-menu .nav-link { font-size: 1.5rem; font-weight: 600; }

/* --- СОВРЕМЕННЫЙ HERO ДИЗАЙН --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.05) 0%, transparent 70%),
                radial-gradient(ellipse at top right, rgba(0, 204, 255, 0.03) 0%, transparent 50%);
}

/* --- ЭЛЕГАНТНЫЕ ЭФФЕКТЫ НАД ЛОГОТИПОМ --- */
.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 100px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.1) 25%, 
        rgba(0, 204, 255, 0.15) 50%, 
        rgba(0, 255, 136, 0.1) 75%, 
        transparent 100%);
    border-radius: 100px;
    filter: blur(30px);
    opacity: 0.6;
    animation: elegantGlow 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-content::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 255, 136, 0.4) 50%, 
        transparent 100%);
    opacity: 0.8;
    animation: elegantLine 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

/* --- УЛЬТРА-СОВРЕМЕННЫЙ ЛОГОТИП --- */
.logo-3d-container {
    position: relative;
    margin: 60px 0 40px 0;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logoReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.logo-3d {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 15vw, 12rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    text-transform: uppercase;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.logo-3d-text {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        #00FF88 0%, 
        #00CCFF 25%, 
        #FFFFFF 50%, 
        #00CCFF 75%, 
        #FF3366 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        prismaticGlow 8s ease-in-out infinite,
        logoFloat 6s ease-in-out infinite,
        textShimmer 3s ease-in-out infinite,
        logoBreathing 4s ease-in-out infinite;
    
    /* Премиум тень и свечение */
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.5)) 
            drop-shadow(0 0 40px rgba(0, 204, 255, 0.3))
            drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    
    transform-style: preserve-3d;
    position: relative;
}

/* Голографический эффект */
.logo-3d-text::before {
    content: 'UPCENT';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.8) 0%, 
        rgba(0, 204, 255, 0.8) 50%, 
        rgba(255, 51, 102, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
    transform: translateZ(-5px) rotateY(1deg);
    animation: hologramGlitch 4s infinite;
    opacity: 0.6;
}

/* Дополнительный слой глубины */
.logo-3d-text::after {
    content: 'UPCENT';
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.3) 0%, 
        rgba(0, 204, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -2;
    transform: translateZ(-10px);
    opacity: 0.3;
    animation: depthShift 5s ease-in-out infinite;
}

.hero-subtitle { 
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem); 
    font-weight: 400; 
    color: var(--text-dim); 
    margin-bottom: 40px; 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.4s forwards; 
    letter-spacing: 0.01em;
}

/* --- ИСПРАВЛЕНИЕ МОБИЛЬНОЙ СТАТИСТИКИ --- */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px) saturate(180%);
    margin: 0 0 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 255, 136, 0.02) 0%, 
        rgba(0, 204, 255, 0.02) 50%, 
        rgba(255, 51, 102, 0.02) 100%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: stat-pop-in 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    z-index: 1;
}

.stat-item:nth-child(1) { animation-delay: 1.2s; }
.stat-item:nth-child(2) { animation-delay: 1.4s; }
.stat-item:nth-child(3) { animation-delay: 1.6s; }

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--green), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: -0.02em;
    position: relative;
    white-space: nowrap;
    animation: numberGlow 3s ease-in-out infinite;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.hero-cta { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 18px 40px; 
    background: linear-gradient(135deg, var(--green), var(--blue)); 
    color: var(--dark); 
    text-decoration: none; 
    border-radius: 100px; 
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; 
    font-size: 1rem; 
    letter-spacing: 0.01em;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    opacity: 0; 
    animation: fadeInUp 0.8s ease 0.8s forwards; 
    position: relative; 
    overflow: hidden; 
    box-shadow: 
        0 4px 15px rgba(0, 255, 136, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-cta::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.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.hero-cta:hover::before { left: 100%; }
.hero-cta:hover { 
    transform: translateY(-4px) scale(1.02); 
    box-shadow: 
        0 12px 35px rgba(0, 255, 136, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.hero-cta:active { transform: translateY(0) scale(0.98); }

/* --- 7. Общие стили секций --- */
.about, .releases, .streaming, .contact { padding: 80px 40px; }
.section-header { text-align: center; margin-bottom: 60px; opacity: 0; transform: translateY(30px); }
.section-header.visible { animation: slideUp 0.8s ease forwards; }
.section-label { display: inline-block; padding: 6px 16px; background: rgba(0, 255, 136, 0.05); border-radius: 100px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 20px; font-family: 'Space Grotesk', sans-serif; }
.section-title { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; 
    letter-spacing: -0.04em; 
    line-height: 1.1;
    background: linear-gradient(135deg, var(--text), var(--text-dim)); 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

/* --- 8. Секция About --- */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text { opacity: 0; transform: translateX(-30px); }
.about-text.visible { animation: slideRight 0.8s ease forwards; }
.about-text p { font-size: 1.1rem; line-height: 1.8; color: var(--text-dim); margin-bottom: 20px; }
.about-text p:first-child { font-size: 1.3rem; color: var(--text); font-weight: 600; }
.about-visual { position: relative; opacity: 0; transform: translateX(30px); }
.about-visual.visible { animation: slideLeft 0.8s ease forwards; }
.waveform { width: 100%; height: 200px; display: flex; align-items: center; justify-content: space-around; gap: 5px; padding: 20px; background: rgba(255, 255, 255, 0.02); border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.05); }
.wave-bar { width: 4px; background: linear-gradient(to top, var(--green), var(--blue)); border-radius: 2px; animation: wave 1s ease-in-out infinite; opacity: 0.8; }

/* --- 9. Секция Releases --- */
.releases { background: linear-gradient(180deg, transparent, rgba(0, 255, 136, 0.01)); }
.releases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-top: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.release-card { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 24px; overflow: hidden; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; position: relative; backdrop-filter: blur(10px); opacity: 0; transform: translateY(30px) scale(0.95); box-shadow: 0 10px 30px rgba(0,0,0,0); }
.release-card.visible { animation: cardReveal 0.6s ease forwards; }
.release-card:hover { transform: translateY(-15px) scale(1.03); background: rgba(255, 255, 255, 0.04); border-color: rgba(0, 255, 136, 0.3); box-shadow: 0 25px 60px rgba(0, 255, 136, 0.15), 0 0 80px rgba(0, 204, 255, 0.1); }
.release-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(0, 255, 136, 0.03) 0%, rgba(0, 204, 255, 0.03) 50%, rgba(255, 51, 102, 0.03) 100%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.release-card:hover::before { opacity: 1; }
.release-artwork { width: 100%; aspect-ratio: 1; background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 204, 255, 0.1)); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.release-artwork img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.release-card:hover .release-artwork img { transform: scale(1.05); }
.play-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; backdrop-filter: blur(5px); z-index: 2; }
.release-card:hover .play-overlay { opacity: 1; }
.play-button { width: 80px; height: 80px; background: linear-gradient(135deg, var(--green), var(--blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; border: none; box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4); position: relative; overflow: hidden; }
@media (hover: hover) { .play-button:hover { transform: scale(1.05); box-shadow: 0 15px 40px rgba(0, 255, 136, 0.5); } }
.play-button:active { transform: scale(0.95); box-shadow: 0 5px 20px rgba(0, 255, 136, 0.3); }
.play-button.loading .play-pause-icon { opacity: 0; }
.play-button.loading::after { content: ''; position: absolute; width: 30px; height: 30px; border: 3px solid rgba(255, 255, 255, 0.2); border-top-color: var(--text); border-radius: 50%; animation: spin 1s linear infinite; }
.progress-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(-90deg); z-index: 1; pointer-events: none; }
.progress-ring-circle { transition: stroke-dashoffset 0.2s linear; fill: none; }
.progress-ring-bg { stroke: rgba(0, 0, 0, 0.2); }
.progress-ring-fg { stroke: var(--text); stroke-linecap: round; }
.play-pause-icon { position: relative; z-index: 2; transition: opacity 0.2s ease; }
.play-icon { width: 0; height: 0; border-left: 25px solid var(--dark); border-top: 15px solid transparent; border-bottom: 15px solid transparent; margin-left: 5px; }
.pause-icon { width: 24px; height: 24px; border: none; margin: 0; border-left: 8px solid var(--dark); border-right: 8px solid var(--dark); box-sizing: border-box; }
.release-info { padding: 25px; }
.release-title { font-size: 1.4rem; font-weight: 600; margin-bottom: 8px; background: linear-gradient(135deg, var(--text), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Space Grotesk', sans-serif; }
.release-collab { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 15px; font-weight: 500; }
.release-actions { display: flex; justify-content: space-between; align-items: center; }
.release-label { display: inline-block; padding: 8px 16px; background: rgba(0, 255, 136, 0.05); border: 1px solid rgba(0, 255, 136, 0.2); border-radius: 100px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--green); font-family: 'Space Grotesk', sans-serif; }
.release-card.playing { border-color: var(--green); box-shadow: 0 0 25px rgba(0, 255, 136, 0.4); transform: scale(1.02); }
.release-card.playing .play-overlay { opacity: 1; }
.release-date { font-size: 0.8rem; color: var(--text-dim); font-weight: 500; }
.new-badge { position: absolute; top: 16px; right: 16px; background: linear-gradient(135deg, var(--accent), var(--green)); color: var(--dark); padding: 5px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; z-index: 3; animation: new-pulse 2s infinite; font-family: 'Space Grotesk', sans-serif; }

/* --- 10. Mini Player --- */
.mini-player { position: fixed; bottom: 20px; right: 20px; width: 300px; background: rgba(0, 0, 0, 0.9); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 16px; padding: 15px; backdrop-filter: blur(20px); transform: translateY(150%); opacity: 0; transition: all 0.4s ease; z-index: 1001; display: flex; flex-direction: column; gap: 10px; }
.mini-player.active { transform: translateY(0); opacity: 1; }
.mini-player-track-info { display: flex; align-items: center; gap: 15px; }
.mini-player-artwork { width: 50px; height: 50px; border-radius: 8px; background: linear-gradient(135deg, var(--green), var(--blue)); background-size: cover; background-position: center; flex-shrink: 0; }
.mini-player-info { flex: 1; min-width: 0; }
.mini-player-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: 'Space Grotesk', sans-serif; }
.mini-player-artist { font-size: 0.75rem; color: var(--text-dim); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-player-controls-wrapper { width: 100%; }
.mini-player-controls { display: flex; gap: 10px; align-items: center; justify-content: center; }
.mini-player-btn { width: 32px; height: 32px; background: rgba(255, 255, 255, 0.1); border: none; border-radius: 50%; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; flex-shrink: 0; }
.mini-player-btn:hover { background: rgba(0, 255, 136, 0.2); }
.mini-player-btn svg { display: block; }
.play-pause-btn { width: 40px !important; height: 40px !important; background: rgba(0, 255, 136, 0.15); }
.play-pause-btn:hover { background: rgba(0, 255, 136, 0.3); }
.play-pause-btn .icon-pause { display: none; }
.play-pause-btn.playing .icon-play { display: none; }
.play-pause-btn.playing .icon-pause { display: block; }
.mini-player-progress-container { display: flex; align-items: center; gap: 10px; width: 100%; margin-top: 5px; }
.player-time { font-size: 0.75rem; color: var(--text-dim); width: 35px; text-align: center; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; }
.progress-bar-wrapper { flex: 1; height: 4px; background: rgba(255, 255, 255, 0.2); border-radius: 2px; cursor: pointer; }
.progress-bar { width: 0%; height: 100%; background: var(--green); border-radius: 2px; }
.mini-player-close { position: absolute; top: 10px; right: 10px; width: 20px; height: 20px; cursor: pointer; opacity: 0.7; transition: opacity 0.3s ease; z-index: 5; }
.mini-player-close:hover { opacity: 1; }
.mini-player-close::before, .mini-player-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--text); }
.mini-player-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mini-player-close::after { transform: translate(-50%, -50%) rotate(-45deg); }

/* --- 11. Секция Streaming --- */
.streaming-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto; }
.streaming-card { aspect-ratio: 1; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-decoration: none; color: var(--text); transition: all 0.3s ease; position: relative; overflow: hidden; opacity: 0; transform: scale(0.9); }
.streaming-card.visible { animation: popIn 0.5s ease forwards; }
.streaming-card:hover { transform: translateY(-5px) scale(1.05); background: rgba(255, 255, 255, 0.05); border-color: var(--green); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2); }
.streaming-icon { width: 48px; height: 48px; opacity: 0.9; transition: all 0.3s ease; }
.streaming-card:hover .streaming-icon { opacity: 1; transform: scale(1.1); }
.streaming-name { font-size: 0.85rem; font-weight: 600; opacity: 0.7; transition: opacity 0.3s ease; font-family: 'Space Grotesk', sans-serif; }
.streaming-card:hover .streaming-name { opacity: 1; }

/* --- 12. Секция Contact и модальные окна --- */
.contact-content { max-width: 800px; margin: 60px auto 0; text-align: center; }
.contact-text { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--text-dim); margin-bottom: 50px; opacity: 0; transform: translateY(20px); }
.contact-text.visible { animation: fadeInUp 0.8s ease forwards; }
.contact-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; opacity: 0; transform: translateY(20px); }
.contact-buttons.visible { animation: fadeInUp 0.8s ease 0.2s forwards; }
.contact-btn { padding: 18px 40px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; color: var(--text); text-decoration: none; font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease; cursor: pointer; }
.contact-btn:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--green); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2); }
.contact-btn.primary { background: linear-gradient(135deg, var(--green), var(--blue)); border: none; color: var(--dark); }
.contact-btn.primary:hover { box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4); }
.contact-btn:active { transform: translateY(0) scale(0.98); box-shadow: 0 5px 15px rgba(0, 255, 136, 0.1); }
.contact-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); backdrop-filter: blur(10px); z-index: 2000; align-items: center; justify-content: center; }
.contact-modal.active { display: flex; }
.contact-form-container { background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 20px; padding: 40px; max-width: 500px; width: 90%; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8); }
.modal-close { position: absolute; top: 20px; right: 20px; width: 30px; height: 30px; cursor: pointer; opacity: 0.7; transition: opacity 0.3s ease; }
.modal-close:hover { opacity: 1; }
.modal-close::before, .modal-close::after { content: ''; position: absolute; top: 50%; left: 50%; width: 20px; height: 2px; background: var(--text); }
.modal-close::before { transform: translate(-50%, -50%) rotate(45deg); }
.modal-close::after { transform: translate(-50%, -50%) rotate(-45deg); }
.form-title { font-size: 1.8rem; margin-bottom: 30px; text-align: center; background: linear-gradient(135deg, var(--text), var(--green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; margin-bottom: 8px; font-size: 0.9rem; color: var(--text-dim); font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.form-input, .form-textarea { width: 100%; padding: 12px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 10px; color: var(--text); font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; transition: all 0.3s ease; }
select.form-input { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 12px center; background-size: 1em; padding-right: 2.5em; }
.form-input option { background: var(--dark); color: var(--text); }
.form-input:focus, .form-textarea:focus { border-color: var(--green); background: rgba(255, 255, 255, 0.08); box-shadow: 0 0 15px rgba(0, 255, 136, 0.2); }
.form-input.error, .form-textarea.error { border-color: var(--red); }
.form-error { color: var(--red); font-size: 0.8rem; margin-top: 5px; display: none; }
.form-error.show { display: block; }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--green), var(--blue)); border: none; border-radius: 10px; color: var(--dark); font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; }
.form-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3); }
.form-submit:active:not(:disabled) { transform: translateY(0) scale(0.98); box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.success-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); z-index: 3000; align-items: center; justify-content: center; padding: 20px; }
.success-modal.active { display: flex; }
.success-content { background: rgba(10, 10, 10, 0.95); border: 1px solid rgba(0, 255, 136, 0.3); border-radius: 20px; padding: 40px; text-align: center; max-width: 400px; width: 100%; }
.success-icon { width: 60px; height: 60px; margin: 0 auto 20px; background: linear-gradient(135deg, var(--green), var(--blue)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.success-title { font-size: 1.5rem; margin-bottom: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
.success-text { color: var(--text-dim); margin-bottom: 20px; }
.success-btn { padding: 12px 30px; background: linear-gradient(135deg, var(--green), var(--blue)); border: none; border-radius: 10px; color: var(--dark); font-family: 'Space Grotesk', sans-serif; font-weight: 600; cursor: pointer; transition: all 0.3s ease; }
.success-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3); }

/* --- 13. Footer --- */
footer { padding: 40px; text-align: center; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-content { max-width: 1200px; margin: 0 auto; }
.social-section { margin-bottom: 30px; }
.social-title { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 15px; text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Space Grotesk', sans-serif; font-weight: 500; }
.social-links { display: flex; gap: 20px; justify-content: center; }
.social-link { width: 44px; height: 44px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; color: var(--text); transition: all 0.3s ease; }
.social-link:hover { background: rgba(0, 255, 136, 0.05); border-color: var(--green); transform: translateY(-3px); color: var(--green); }
.social-icon { display: inline-block; width: 20px; height: 20px; background-color: currentColor; -webkit-mask-image: var(--icon-url); mask-image: var(--icon-url); -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; transition: background-color 0.3s ease; }
.footer-text { color: var(--text-dim); font-size: 0.9rem; }

/* --- 14. Загрузочный экран --- */
.loading { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.5s ease; }
.loading.hidden { opacity: 0; pointer-events: none; }
.loading-content { text-align: center; }
.loading-logo { font-family: 'Inter', sans-serif; font-size: 4rem; font-weight: 700; background: linear-gradient(135deg, var(--green), var(--blue), var(--red)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% 200%; animation: loadingGradient 2s ease infinite, loadingPulse 1s ease infinite; position: relative; }
.loading-bar { width: 200px; height: 2px; background: rgba(255, 255, 255, 0.1); border-radius: 2px; margin: 30px auto 0; overflow: hidden; }
.loading-progress { height: 100%; background: linear-gradient(90deg, var(--green), var(--blue)); animation: loadingProgress 1.5s ease infinite; }

/* --- НОВЫЕ ЭЛЕГАНТНЫЕ АНИМАЦИИ --- */
@keyframes elegantGlow {
    0%, 100% { 
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1.1);
    }
}

@keyframes elegantLine {
    0%, 100% { 
        opacity: 0.8;
        transform: translateX(-50%) scaleX(1);
    }
    50% { 
        opacity: 1;
        transform: translateX(-50%) scaleX(1.3);
    }
}

@keyframes subtleFlow {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

@keyframes elegantFloat {
    0%, 100% { 
        transform: translateY(0px);
    }
    33% { 
        transform: translateY(-8px);
    }
    66% { 
        transform: translateY(-4px);
    }
}

@keyframes subtleGlow {
    0%, 100% { 
        opacity: 0.5;
        transform: translateZ(-2px);
    }
    50% { 
        opacity: 0.7;
        transform: translateZ(-2px) scale(1.02);
    }
}

/* --- ПРОСТЫЕ И ЗАМЕТНЫЕ АНИМАЦИИ --- */
@keyframes dynamicGradient {
    0% { 
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
    50% { 
        background-position: 100% 50%;
        background-size: 300% 300%;
    }
    100% { 
        background-position: 0% 50%;
        background-size: 200% 200%;
    }
}

@keyframes logoBreathing {
    0%, 100% { 
        transform: scale(1);
    }
    50% { 
        transform: scale(1.05);
    }
}

@keyframes strongGlitch {
    0%, 90%, 100% { 
        transform: scale(1) skew(0deg);
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
    91% { 
        transform: scale(1.02) skew(-2deg);
        text-shadow: 
            3px 0 0 rgba(255, 0, 100, 0.8), 
            -3px 0 0 rgba(0, 255, 136, 0.8),
            0 0 30px rgba(0, 255, 136, 1);
    }
    92% { 
        transform: scale(0.98) skew(2deg);
        text-shadow: 
            -2px 0 0 rgba(0, 204, 255, 0.8), 
            2px 0 0 rgba(255, 255, 255, 0.8),
            0 0 40px rgba(0, 204, 255, 1);
    }
    93% {
        transform: scale(1) skew(0deg);
        text-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

@keyframes colorPulse {
    0% { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.8)) 
                drop-shadow(0 0 15px rgba(0, 204, 255, 0.6));
    }
    25% { 
        filter: drop-shadow(0 0 50px rgba(0, 204, 255, 1)) 
                drop-shadow(0 0 25px rgba(0, 255, 136, 0.8));
    }
    50% { 
        filter: drop-shadow(0 0 60px rgba(255, 255, 255, 0.6)) 
                drop-shadow(0 0 30px rgba(0, 204, 255, 1));
    }
    75% { 
        filter: drop-shadow(0 0 40px rgba(0, 255, 136, 1)) 
                drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 136, 0.8)) 
                drop-shadow(0 0 15px rgba(0, 204, 255, 0.6));
    }
}

@keyframes logoReveal {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(100px) rotateX(90deg);
        filter: blur(20px);
    }
    40% { 
        opacity: 0.7;
        transform: scale(1.1) translateY(-20px) rotateX(-10deg);
        filter: blur(5px);
    }
    70% { 
        opacity: 0.9;
        transform: scale(0.95) translateY(10px) rotateX(5deg);
        filter: blur(2px);
    }
    100% { 
        opacity: 1; 
        transform: scale(1) translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

@keyframes stat-pop-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes numberGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 30px rgba(0, 204, 255, 0.3);
    }
}

/* --- ОСТАЛЬНЫЕ АНИМАЦИИ --- */
@keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(100px, -100px) scale(1.1); } 66% { transform: translate(-100px, 100px) scale(0.9); } }
@keyframes fadeInDown { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(-20px); } }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight { to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes wave { 0%, 100% { height: 20px; opacity: 0.5; } 50% { height: var(--h); opacity: 1; } }
@keyframes cardReveal { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes new-pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); } }
@keyframes popIn { to { opacity: 1; transform: scale(1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes loadingGradient { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes loadingPulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes loadingProgress { 0% { transform: translateX(-100%); } 100% { transform: translateX(200%); } }
@keyframes prismaticGlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes textShimmer { 0%, 100% { opacity: 1; } 50% { opacity: 0.9; } }
@keyframes hologramGlitch { 0%, 100% { transform: translateZ(-5px) rotateY(1deg) skew(0); } 25% { transform: translateZ(-5px) rotateY(1deg) skew(0.5deg, -0.2deg); } 50% { transform: translateZ(-5px) rotateY(1deg) skew(-0.5deg, 0.2deg); } 75% { transform: translateZ(-5px) rotateY(1deg) skew(0.2deg, -0.5deg); } }
@keyframes depthShift { 0%, 100% { transform: translate(2px, 2px) translateZ(-10px); } 50% { transform: translate(1px, 1px) translateZ(-10px); } }


/* --- 16. Медиа-запросы (Адаптивность) --- */
@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    .nav-menu { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding-top: 80px; }
    
    .hero-content::before {
        width: 300px;
        height: 150px;
        top: -100px;
    }
    
    .logo-3d-container { height: 180px; margin: 40px 0 30px 0; }
    .logo-3d { font-size: clamp(3rem, 18vw, 6rem); }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px 15px;
        margin: 0 0 40px 0; /* Убрал отрицательные отступы */
    }
    
    .stat-item {
        padding: 0 5px;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.1em;
    }
    
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .section-title { font-size: clamp(2rem, 8vw, 3rem); line-height: 1.2; }
    .releases-grid { grid-template-columns: 1fr; gap: 20px; }
    .streaming-grid { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .contact-buttons { flex-direction: column; align-items: center; }
    .contact-btn { width: 100%; max-width: 300px; justify-content: center; }
    .contact-form-container { width: calc(100% - 40px); margin: 20px; padding: 30px 20px; }
    .mini-player { width: calc(100% - 40px); left: 20px; right: 20px; }
    .social-links { flex-wrap: wrap; gap: 15px; }
    .play-button:hover { transform: none; box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4); }
}

@media (max-width: 480px) {
    .streaming-grid { grid-template-columns: repeat(2, 1fr); }
    
    .stat-number {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .hero { min-height: 100vh; }
    .logo-3d-container { height: 120px; }
    .logo-3d { font-size: 3rem; }
}