:root {
      --bg: #050513; --bg-alt: #0a0a1f; --accent: #ff3e7f; --accent-soft: rgba(255, 62, 127, 0.15);
      --text: #f4f4f4; --text-muted: #a0a0b8; --text-secondary: #d0d0e0; --border: #262640;
      --radius-lg: 18px; --radius-md: 10px; --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
      --transition-fast: 0.2s ease;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { 
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
      background: radial-gradient(circle at top, #1c1638 0%, #050513 45%, #000 100%); 
      color: var(--text); line-height: 1.6; scroll-behavior: smooth; 
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; height: auto; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
    section { padding: 80px 0; }
    
    /* Header */
    header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(14px); background: linear-gradient(to bottom, rgba(5,5,19,0.94), rgba(5,5,19,0.7)); border-bottom: 1px solid rgba(255,255,255,0.03); }
    .nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
    .logo { font-weight: 800; letter-spacing: 0.16em; font-size: 18px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
    .logo-badge { width: 28px; height: 28px; border-radius: 999px; background: radial-gradient(circle at 25% 25%, #ff9ad1, #ff3e7f 50%, #7a2eff 100%); box-shadow: 0 0 20px rgba(255,62,127,0.7); }
    nav ul { list-style: none; display: flex; gap: 22px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.14em; }
    nav a { position: relative; color: var(--text-muted); padding-bottom: 4px; }
    nav a::after { content: ''; position: absolute; height: 2px; width: 0; left: 0; bottom: 0; background: linear-gradient(90deg, #ff3e7f, #ffb347); border-radius: 999px; transition: width var(--transition-fast); }
    nav a:hover::after { width: 100%; }
    nav a:hover { color: var(--text); }
    
    .button { display: inline-flex; align-items: center; justify-content: center; padding: 9px 18px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; cursor: pointer; transition: all var(--transition-fast); }
    .button-primary { background: linear-gradient(120deg, #ff3e7f, #ffb347); color: #050513; box-shadow: 0 10px 30px rgba(255,62,127,0.6); }
    .button-primary:hover { filter: brightness(1.05); transform: translateY(-1px); box-shadow: 0 14px 34px rgba(255,62,127,0.7); }
    .button-outline { border-color: rgba(255,255,255,0.18); color: var(--text-muted); background: rgba(5,5,19,0.7); }
    .button-outline:hover { border-color: var(--accent); color: var(--text); background: rgba(255,62,127,0.08); }
    /* Breadcrumbs */
.breadcrumb-wrapper {
  background: rgba(5,5,19,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.03);
  padding: 10px 0;
}
.breadcrumbs { 
  list-style: none; 
  display: flex; 
  gap: 8px; 
  align-items: center;
  font-size: 13px; 
  color: var(--text-muted); 
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li:not(:last-child)::after { 
  content: '›'; 
  margin-left: 8px;
  color: var(--text-muted);
  font-size: 16px;
}
.breadcrumbs a { 
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.breadcrumbs a:hover { 
  color: var(--accent); 
}
.breadcrumbs li:last-child span {
  color: var(--text-secondary);
  font-weight: 500;
}

    /* Hero */
    .hero { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(0,1fr); gap: 40px; align-items: center; }
    .hero-kicker { text-transform: uppercase; letter-spacing: 0.2em; font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
    .hero-title { font-size: clamp(40px,5vw,64px); line-height: 1.06; margin-bottom: 16px; font-weight: 800; }
    .hero-title span { background: linear-gradient(120deg,#ffb347,#ff3e7f,#7a2eff); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .hero-subtitle { font-size: 16px; color: var(--text-secondary); max-width: 520px; margin-bottom: 26px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
    .hero-tags { display: flex; flex-wrap: wrap; gap: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); }
    .hero-tag { padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.06); background: rgba(10,10,31,0.8); }
    .hero-card { background: radial-gradient(circle at top left, rgba(255,62,127,0.1), rgba(10,10,31,0.9)); border-radius: 26px; padding: 24px; box-shadow: var(--shadow-soft); border: 1px solid rgba(255,255,255,0.06); }
    .hero-artwork { border-radius: 22px; overflow: hidden; position: relative; aspect-ratio: 4/5; }
    
    /* Sections */
    .section-title { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
    .section-subtitle { font-size: 16px; color: var(--text-muted); margin-bottom: 36px; max-width: 720px; line-height: 1.5; }
    
    /* Music */
    .music-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
    .release-list { display: flex; flex-direction: column; gap: 24px; }
    .release-card { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 20px; padding: 24px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08); background: rgba(5,5,19,0.8); transition: all var(--transition-fast); }
    .release-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.7); border-color: rgba(255,62,127,0.4); }
    .release-cover { width: 80px; height: 80px; border-radius: 16px; }
    .release-title { font-size: 22px; font-weight: 700; margin: 4px 0 8px; }
    .release-year { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
    .release-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 20px; }
    .release-links { display: flex; flex-wrap: wrap; gap: 10px; }
    .pill { padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.15); color: var(--text-muted); font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; transition: all var(--transition-fast); }
    .pill-accent { border-color: rgba(255,62,127,0.6); color: #ffb6d4; background: rgba(255,62,127,0.1); font-weight: 600; }
    .pill:hover { border-color: var(--accent); color: var(--text); transform: translateY(-1px); }
    
    /* Video Section */
    .video-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 28px; }
    .video-main { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #000; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 14px; text-align: center; padding: 20px; }
    .video-main small { display: block; margin-top: 8px; color: var(--text-muted); font-size: 12px; }
    .video-list { display: flex; flex-direction: column; gap: 14px; }
    .video-item { display: flex; gap: 12px; padding: 12px; border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.06); background: rgba(5,5,19,0.8); transition: all var(--transition-fast); cursor: pointer; }
    .video-item:hover { border-color: rgba(255,62,127,0.4); background: rgba(10,10,31,0.9); }
    .video-thumb { width: 80px; height: 50px; border-radius: 8px; background: linear-gradient(135deg, #ff3e7f, #7a2eff); flex-shrink: 0; }
    .video-title { font-weight: 600; margin-bottom: 4px; font-size: 14px; }
    .video-meta { font-size: 11px; color: var(--text-muted); }
    
    /* Gallery */
    .gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
    .gallery-item { border-radius: 16px; overflow: hidden; position: relative; background: #111; aspect-ratio: 4/5; }
    .gallery-item:nth-child(2), .gallery-item:nth-child(5) { aspect-ratio: 16/9; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1) contrast(1.05); transform: scale(1.02); transition: transform 0.5s ease, filter 0.5s ease; }
    .gallery-item:hover img { transform: scale(1.06); filter: saturate(1.3) contrast(1.1); }
    
    /* Blog ПОЛНЫЕ СТАТЬИ */
    .blog-section { background: rgba(10,10,31,0.3); }
    .blog-intro { margin-bottom: 48px; }
    .article-full { padding: 40px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08); background: rgba(5,5,19,0.9); margin-bottom: 40px; }
    .article-full h3 { font-size: 28px; margin-bottom: 16px; }
    .article-full h4 { font-size: 20px; margin: 28px 0 16px; color: var(--accent); }
    .article-full p { margin-bottom: 20px; line-height: 1.7; color: var(--text-secondary); }
    .article-full ul { margin: 20px 0 20px 24px; }
    .article-full li { margin-bottom: 14px; line-height: 1.6; color: var(--text-secondary); }
    .article-full blockquote { border-left: 3px solid var(--accent); padding-left: 20px; margin: 24px 0; font-style: italic; color: var(--text-muted); }
    .article-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; text-transform: uppercase; letter-spacing: 0.1em; }
    
    /* Platforms */
    .platforms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
    .platform-card { padding: 28px; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08); background: rgba(10,10,31,0.9); text-align: center; transition: all var(--transition-fast); }
    .platform-card:hover { border-color: rgba(255,62,127,0.4); transform: translateY(-3px); }
    .platform-card h3 { margin-bottom: 12px; }
    .platform-tagline { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
    .platform-link { display: inline-block; margin-top: 8px; color: #ffb6d4; font-weight: 600; font-size: 14px; }
    
	/* FAQ */
.faq-item { 
  padding: 24px; 
  border-radius: var(--radius-md); 
  border: 1px solid rgba(255,255,255,0.08); 
  background: rgba(5,5,19,0.8); 
  margin-bottom: 16px; 
  transition: all var(--transition-fast); 
}
.faq-item:hover { 
  border-color: rgba(255,62,127,0.3); 
  background: rgba(10,10,31,0.9); 
  transform: translateY(-2px);
}
.faq-item h3 { 
  font-size: 18px; 
  margin-bottom: 12px; 
  color: var(--text); 
  font-weight: 600;
}
.faq-item p { 
  color: var(--text-secondary); 
  line-height: 1.6; 
  font-size: 15px;
}

    /* Footer */
    footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 40px 0 24px; }
    .footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
    .footer-copy { font-size: 13px; color: var(--text-muted); }
    
    /* Временно скрываем раздел видео */
    #video {
      display: none;
    }

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { order: -1; }
  .music-grid, .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  nav ul, .nav-cta { display: none; }
  
  /* Плееры на мобильных */
  .music-players {
    position: static;
    margin-top: 32px;
  }
  .breadcrumbs {
    font-size: 11px;
    gap: 6px;
  }
  .breadcrumbs li:not(:last-child)::after {
    font-size: 14px;
  }
} /* <--- ВОТ ОНА, ПОТЕРЯННАЯ СКОБКА! ОНА ЗАКРЫВАЕТ МОБИЛЬНУЮ ВЕРСИЮ */

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .article-full { padding: 24px; }
}

	/* Article Related */
.article-related { 
  margin-top: 32px; 
  padding: 20px; 
  border-left: 3px solid var(--accent); 
  background: rgba(255,62,127,0.05); 
  border-radius: 8px; 
}
.article-related h4 { 
  margin-bottom: 12px; 
  color: var(--text); 
  font-size: 16px;
}
.article-related ul {
  margin: 0 0 0 20px;
}
.article-related li {
  margin-bottom: 8px;
}
.article-related a { 
  color: #ffb6d4; 
  text-decoration: underline; 
}
.article-related a:hover { 
  color: var(--accent); 
}
  /* Music Players */
.music-players {
  position: sticky;
  top: 100px;
  align-self: start;
  max-width: 420px;
}

.player-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at top, rgba(255,62,127,0.12), rgba(5,5,19,0.96));
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  padding: 18px 18px 20px;
  transition: all var(--transition-fast);
}

.player-card:hover {
  border-color: rgba(255,62,127,0.4);
  transform: translateY(-2px);
}

.player-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.player-card iframe {
  display: block;
  width: 100%;
  height: 550px;         /* увеличил с 250 до 550 */
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

/* список треков-тизеров под плеером */
.player-tracklist {
  margin-top: 14px;
  list-style: none;
  font-size: 13px;
  color: var(--text-secondary);
}

.player-tracklist li + li {
  margin-top: 6px;
}

.player-tracklist strong {
  color: #fff;
}


.back-home-wrapper {
  text-align: left;
}
.blog-list {
  margin: 40px auto 80px;
  max-width: 900px;
}

/* =========================================
   СТИЛИ ДЛЯ СТРАНИЦЫ БЛОГА (КАРТОЧКИ)
   ========================================= */

/* Контейнер списка */
.blog-list-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

/* Заголовок "Свежие статьи" */
.blog-list-title {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
    border-left: 4px solid #6c5ce7;
    padding-left: 15px;
}

/* Убираем точки у списка */
.blog-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Отступ между статьями */
.blog-list-items li {
    margin-bottom: 15px;
}

/* Сама ссылка-карточка */
.blog-list-items li a {
    display: block;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Эффект при наведении мыши */
.blog-list-items li a:hover {
    background: rgba(108, 92, 231, 0.15);
    border-color: #6c5ce7;
    color: #fff;
    transform: translateX(10px);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

/* Полоска слева при наведении */
.blog-list-items li a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #6c5ce7;
}

/* Адаптив для телефонов */
@media (max-width: 768px) {
    .blog-list-card {
        padding: 20px;
    }
    .blog-list-items li a {
        font-size: 1rem;
        padding: 15px;
    }
}

/* Бургер-меню для мобилок */
.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav #nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 320px;
    height: 100vh;
    background: rgba(5,5,19,0.98);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 20px 20px;
    gap: 24px;
    transition: right 0.3s ease;
    z-index: 999;
    border-left: 1px solid rgba(255,255,255,0.1);
  }

  .nav #nav-list.open {
    right: 0;
  }

  /* на мобилке скрываем исходный горизонтальный список (он уже fixed) */
}

body.menu-open {
  overflow: hidden;
}
