:root {
    --bg: #f5f5f5;
    --surface: #ffffff;
    --primary: #1a1a1a;
    --accent: #7c3aed;
    --accent-light: #a78bfa;
    --accent-bg: #f5f3ff;
    --text: #1a1a1a;
    --text-dim: #666666;
    --border: #e5e5e5;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--bg);
    font-family: 'Onest', system-ui, -apple-system, sans-serif;
    color: var(--text);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255,255,255,0.95); border-bottom: 1px solid var(--border);
}
.nav-container {
    max-width: 1240px; margin: 0 auto; padding: 12px 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo { font-size: 20px; font-weight: 800; text-decoration: none; color: var(--text); letter-spacing: -0.5px; }

/* Buttons */
.btn-accent {
    background: var(--accent); color: #fff; border: 2px solid var(--accent);
    padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-accent:hover { background: #6d28d9; border-color: #6d28d9; }
.btn-ghost {
    background: transparent; color: var(--text); border: 2px solid var(--border);
    padding: 12px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px;
    cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 14px 36px; font-size: 16px; }

/* Hero */
.hero {
    background: var(--surface); text-align: center; padding: 100px 24px 80px;
    border-bottom: 1px solid var(--border);
}
.hero-content { max-width: 700px; margin: 0 auto; }
.hero-title { font-size: 72px; font-weight: 900; letter-spacing: -2px; margin-bottom: 20px; }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: 18px; color: var(--text-dim); max-width: 500px; margin: 0 auto 32px; }
.hero-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Genres */
.genres { padding: 48px 0; text-align: center; }
.section-heading { font-size: 32px; font-weight: 800; margin-bottom: 24px; }
.section-sub { color: var(--text-dim); margin-bottom: 32px; font-size: 16px; }
.genre-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.genre-tags span {
    background: var(--surface); border: 2px solid var(--border); padding: 10px 22px;
    border-radius: 100px; font-weight: 700; font-size: 14px; transition: all 0.2s;
}
.genre-tags span:hover { border-color: var(--accent); color: var(--accent); }

/* Services */
.services { padding: 48px 0 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
    background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-md);
    padding: 32px 28px; transition: all 0.2s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08); }
.service-icon { color: var(--accent); margin-bottom: 16px; }
.service-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ===== ПОСЛЕДНИЕ РЕЛИЗЫ ===== */
.releases {
    padding: 48px 0 64px;
}

.releases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.release-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.release-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08);
}

.release-cover-wrapper {
    overflow: hidden;
}

.release-cover {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.release-info {
    padding: 8px;
}

.release-title {
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-artists {
    font-size: 10px;
    color: var(--text-dim);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.release-date {
    font-size: 9px;
    color: var(--text-dim);
    opacity: 0.7;
}

/* Partners */
.partners { padding: 0 0 48px; text-align: center; }
.partners-preview { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.partners-preview span {
    background: var(--surface); border: 2px solid var(--border); padding: 14px 24px;
    border-radius: 100px; font-weight: 700; font-size: 14px; transition: all 0.2s;
}
.partners-preview span:hover { border-color: var(--accent); color: var(--accent); }

/* Advantages */
.advantages { padding: 48px 0 64px; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advantage-card {
    background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-md);
    padding: 28px; transition: all 0.2s;
}
.advantage-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.advantage-num { font-size: 36px; font-weight: 900; color: #e9d5ff; margin-bottom: 12px; }
.advantage-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.advantage-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* Artists */
.artists { padding: 0 0 48px; text-align: center; }
.artists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; }
.artists-grid div {
    background: var(--surface); border: 2px solid var(--border); padding: 24px;
    border-radius: var(--radius-sm); font-weight: 800; font-size: 18px; transition: all 0.2s;
}
.artists-grid div:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

/* FAQ */
.faq { padding: 0 0 64px; }
.faq-grid { display: flex; flex-direction: column; gap: 10px; max-width: 750px; }
.faq-item { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: all 0.2s; }
.faq-item:hover { border-color: var(--accent); }
.faq-question {
    width: 100%; text-align: left; padding: 20px 24px; font-family: inherit; font-size: 16px;
    font-weight: 700; background: none; border: none; color: var(--text); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-question:hover { background: var(--accent-bg); color: var(--accent); }
.faq-icon { font-size: 20px; transition: transform 0.2s; color: var(--accent); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px; font-size: 14px; color: var(--text-dim); line-height: 1.6;
}
.faq-item.active .faq-answer { max-height: 250px; padding: 0 24px 20px; }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg);
    padding: 32px; max-width: 520px; width: 100%; max-height: 85vh; overflow-y: auto;
}
.modal-wide { max-width: 700px; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-header h2 { font-size: 24px; font-weight: 900; }
.modal-close {
    width: 36px; height: 36px; border: 2px solid var(--border); border-radius: 50%;
    background: none; cursor: pointer; font-size: 18px; display: grid; place-items: center;
    transition: all 0.2s;
}
.modal-close:hover { border-color: var(--accent); color: var(--accent); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 14px; }
.form-group input, .form-group textarea {
    width: 100%; background: #f9f9f9; border: 2px solid var(--border); border-radius: var(--radius-sm);
    padding: 12px 16px; font-family: inherit; font-size: 15px;
    transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { min-height: 80px; resize: vertical; }
.vpn-warning {
    background: var(--accent-bg); border: 2px solid var(--border); padding: 12px; border-radius: var(--radius-sm);
    text-align: center; font-weight: 700; font-size: 14px; color: var(--accent);
}
.form-status { text-align: center; font-weight: 700; margin: 12px 0; }

/* Partners categories */
.partners-cats { display: flex; flex-direction: column; gap: 20px; }
.partner-cat h3 { font-size: 16px; margin-bottom: 10px; font-weight: 800; }
.partner-list { display: flex; flex-wrap: wrap; gap: 8px; }
.partner-list span {
    background: #f5f5f5; border: 2px solid var(--border); padding: 6px 14px;
    border-radius: 100px; font-size: 13px; font-weight: 600; transition: all 0.2s;
}
.partner-list span:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-bg); }

/* Releases modal grid */
.releases-modal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.release-item { border-radius: var(--radius-sm); overflow: hidden; border: 2px solid var(--border); transition: all 0.2s; }
.release-item:hover { border-color: var(--accent); }
.release-item .release-cover { width: 100%; aspect-ratio: 1; object-fit: cover; }
.release-item .release-info { padding: 10px; }
.release-artist { font-weight: 800; font-size: 14px; }
.release-item .release-title { font-size: 12px; color: var(--text-dim); }

/* Footer */
.footer { background: #1a1a1a; color: #999; padding: 48px 24px 32px; margin-top: 40px; }
.footer-container { max-width: 1240px; margin: 0 auto; display: grid; gap: 24px; }
.footer-info { display: flex; flex-direction: column; gap: 4px; }
.footer-name { color: #fff; font-weight: 800; font-size: 15px; }
.footer-details { font-size: 13px; }
.footer-services { border-top: 2px solid #333; padding-top: 20px; }
.footer-services-title { color: #fff; font-weight: 800; font-size: 14px; margin-bottom: 12px; }
.footer-services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.footer-service-item {
    border: 2px solid #333; padding: 12px; border-radius: var(--radius-sm); text-align: center; transition: all 0.2s;
}
.footer-service-item:hover { border-color: var(--accent); }
.footer-service-name { font-size: 12px; font-weight: 700; color: #ccc; margin-bottom: 4px; }
.footer-service-price { font-size: 16px; font-weight: 900; color: #fff; }
.footer-service-free { border-color: var(--accent); }
.footer-service-free .footer-service-price { color: var(--accent); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; border-top: 2px solid #333; padding-top: 20px; }
.footer-links a { color: #999; text-decoration: none; font-size: 13px; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 12px; color: #666; border-top: 2px solid #333; padding-top: 20px; }

/* Адаптив */
@media (max-width: 1200px) {
    .releases-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 900px) {
    .services-grid, .advantages-grid { grid-template-columns: 1fr; }
    .artists-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 48px; }
}

@media (max-width: 768px) {
    .releases-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 600px) {
    .artists-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
    .section-heading { font-size: 28px; }
}

@media (max-width: 550px) {
    .releases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .release-info {
        padding: 6px;
    }
    
    .release-title {
        font-size: 11px;
    }
    
    .release-artists {
        font-size: 9px;
    }
    
    .releases-modal-grid {
        grid-template-columns: 1fr;
    }
}