* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0c;
    color: #ececec;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* градиентное свечение (фиолетовое, не розовое) */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 10%, rgba(155, 48, 255, 0.15), transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* ===== header / навигация ===== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #9b30ff, #6a0dad);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    text-decoration: none;
}

.nav a {
    color: #ccc;
    text-decoration: none;
    margin-left: 2rem;
    transition: 0.2s;
    font-size: 1rem;
}

.nav a:hover, .nav a.active {
    background: linear-gradient(135deg, #9b30ff, #6a0dad);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ===== hero блок ===== */
.hero {
    text-align: center;
    padding: 2rem 0 3rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 450;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: #aaa;
}

.accent {
    background: linear-gradient(135deg, #9b30ff, #6a0dad);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* ===== секции ===== */
.section-title {
    font-size: 1.8rem;
    font-weight: 450;
    margin: 2rem 0 1.5rem;
    letter-spacing: -0.01em;
    border-left: 3px solid;
    border-image: linear-gradient(135deg, #9b30ff, #6a0dad);
    border-image-slice: 1;
    padding-left: 1rem;
}

.section-title:first-of-type {
    margin-top: 0;
}

/* ===== карточки релизов ===== */
.releases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    padding: 1.2rem;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(155, 48, 255, 0.4);
    transform: translateY(-4px);
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
    background: #1e1e22;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.card .year {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.listen-btn {
    display: inline-block;
    background: transparent;
    border: 1px solid #9b30ff;
    color: #9b30ff;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.2s;
}

.listen-btn:hover {
    background: linear-gradient(135deg, #9b30ff, #6a0dad);
    border-color: transparent;
    color: white;
}

/* ===== видео сетка ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 1.2rem;
    overflow: hidden;
    transition: 0.2s;
}

.video-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.video-card p {
    padding: 0.75rem 1rem 1rem;
    font-size: 0.9rem;
    color: #ccc;
}

/* ===== about page ===== */
.about-text {
    max-width: 720px;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    color: #cbcbcb;
}

.about-text p {
    margin-bottom: 1rem;
}

.contacts-list {
    list-style: none;
    margin: 1rem 0;
}

.contacts-list li {
    margin-bottom: 0.5rem;
}

.contacts-list a {
    color: #9b30ff;
    text-decoration: none;
}

.contacts-list a:hover {
    text-decoration: underline;
}

/* ===== цветные кнопки соцсетей с градиентом ===== */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0;
}

.social-link {
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 450;
    transition: all 0.25s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: white;
}

/* градиент для всех соцсетей по умолчанию */
.social-link {
    background: linear-gradient(135deg, #9b30ff, #6a0dad);
}

.social-link:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* YouTube */
.social-link[href*="youtube"], 
.social-link[href*="youtu.be"] {
    background: #FF0000;
}
.social-link[href*="youtube"]:hover, 
.social-link[href*="youtu.be"]:hover {
    background: #cc0000;
}

/* Telegram */
.social-link[href*="telegram"] {
    background: #26A5E4;
}
.social-link[href*="telegram"]:hover {
    background: #1e8bc3;
}

/* VK */
.social-link[href*="vk.com"] {
    background: #0077FF;
}
.social-link[href*="vk.com"]:hover {
    background: #0066cc;
}

/* Spotify */
.social-link[href*="spotify"] {
    background: #1DB954;
}
.social-link[href*="spotify"]:hover {
    background: #169c46;
}

/* Яндекс Музыка */
.social-link[href*="music.yandex"] {
    background: #FFCC00;
    color: #1A1A1A;
}
.social-link[href*="music.yandex"]:hover {
    background: #e6b800;
}

/* Zvuk */
.social-link[href*="zvuk.com"] {
    background: #FF5E00;
}
.social-link[href*="zvuk.com"]:hover {
    background: #cc4a00;
}

/* Apple Music */
.social-link[href*="music.apple"] {
    background: #FA243C;
}
.social-link[href*="music.apple"]:hover {
    background: #d41e33;
}

/* Bandcamp */
.social-link[href*="bandcamp"] {
    background: #629AA9;
}
.social-link[href*="bandcamp"]:hover {
    background: #4f7f8a;
}

/* SoundCloud */
.social-link[href*="soundcloud"] {
    background: #FF5500;
}
.social-link[href*="soundcloud"]:hover {
    background: #cc4400;
}

/* ===== футер ===== */
.footer {
    margin-top: 4rem;
    text-align: center;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* ===== мобильная адаптация ===== */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }
    
    .nav a {
        margin: 0 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .releases-grid, .video-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin: 1.5rem 0 1rem;
    }
    
    .listen-btn, .social-link {
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .about-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.75rem;
    }
    
    .card {
        padding: 1rem;
    }
}

/* убираем серое нажатие на тач-устройствах */
a, button, .listen-btn, .social-link {
    -webkit-tap-highlight-color: transparent;
}

/* плавная прокрутка */
html {
    scroll-behavior: smooth;
}
/* ===== герой с фото (2 колонки) ===== */
.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin: 2rem 0 4rem;
    min-height: 400px;
}

.hero-image {
    flex: 1;
    max-width: 40%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: 0 20px 40px rgba(155, 48, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: #aaa;
}

/* мобильная адаптация — фото сверху, текст снизу */
@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        gap: 2rem;
        margin: 1rem 0 3rem;
    }
    
    .hero-image {
        max-width: 70%;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-image {
        max-width: 85%;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
}