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

    body {
      background-color: #03030c;
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
      color: #eef2ff;
      line-height: 1.5;
    }

    /* Фоновая астрофотография галактики Андромеда */
    .cosmic-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background-image: url('https://30kpk.ru/Images/my-universe.webp');*/
      background-image: url('https://30kpk.ru/Images/milky-way.webp');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      filter: brightness(100%) contrast(70%);
      z-index: -2;
    }

    /* Наложение для читаемости текста */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.5));
      z-index: -1;
    }

    /* Контейнер */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 2rem 2rem 4rem;
      position: relative;
      z-index: 2;
      width: 100%;
    }

    /* Заголовок с обложкой */
    .hero {
      text-align: center;
      margin-bottom: 3rem;
    }

    .band-logo {
      max-width: 90%;
      width: 650px;
      height: auto;
      display: block;
      margin: 0 auto 1.5rem;
      border-radius: 2rem;
      box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.7);
      transition: transform 0.3s ease;
    }

    .band-logo:hover {
      transform: scale(1.01);
    }

    /* Карточка описания */
    .statement-card {
      background: rgba(10, 8, 25, 0.7);
      backdrop-filter: blur(12px);
      border-radius: 2rem;
      padding: 2rem 2rem;
      margin-bottom: 3rem;
      border: 1px solid rgba(130, 100, 210, 0.4);
      box-shadow: 0 20px 35px -15px rgba(0, 0, 0, 0.5);
    }

    .description {
      font-size: 1.2rem;
      line-height: 1.6;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
      color: #dfdafc;
    }

    .description strong {
      color: #C7B3FF;
      font-weight: 600;
    }

    /* Секции */
    .section {
      margin-top: 3rem;
      margin-bottom: 3rem;
    }

    .section-title {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: -0.3px;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      border-left: 5px solid #aa8eff;
      padding-left: 1.2rem;
    }

    .section-title span {
      background: #aa8eff20;
      padding: 0.2rem 0.7rem;
      border-radius: 40px;
      font-size: 0.9rem;
      font-weight: normal;
    }

    /* Сетка участников */
    .members-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    .member-card {
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      border-radius: 1.5rem;
      overflow: hidden;
      text-align: center;
      transition: transform 0.25s, box-shadow 0.25s;
      border: 1px solid rgba(140, 100, 220, 0.5);
    }

    .member-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -12px black;
      border-color: #ba9cff;
    }

    .member-photo {
      width: 100%;
      aspect-ratio: 2 / 3;
      object-fit: cover;
      display: block;
      background: #1a152f;
    }

    .member-name {
      font-weight: 700;
      font-size: 1.2rem;
      margin: 1rem 0 0.3rem;
      background: linear-gradient(120deg, #f0ebff, #cbbdff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .member-role {
      font-size: 0.8rem;
      color: #b1a2da;
      padding-bottom: 1rem;
      font-family: monospace;
    }

    /* Трек-лист */
    .tracklist {
      background: rgba(0, 0, 0, 0.45);
      backdrop-filter: blur(8px);
      border-radius: 2rem;
      padding: 1.8rem 2rem;
      border: 1px solid rgba(130, 100, 210, 0.4);
    }

    .track-item {
      display: flex;
      align-items: baseline;
      padding: 0.6rem 0;
      border-bottom: 1px dashed rgba(200, 180, 255, 0.2);
      font-size: 1rem;
    }

    .track-number {
      width: 3rem;
      font-weight: 600;
      color: #aa8eff;
    }

    .track-name {
      flex: 1;
      font-weight: 500;
    }

    .single-badge {
      background: #5e4b8b;
      color: white;
      font-size: 0.7rem;
      border-radius: 30px;
      padding: 0.2rem 0.7rem;
      margin-left: 1rem;
      font-weight: normal;
      letter-spacing: 0.3px;
    }

    /* Видео сетка */
    .videos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 1rem;
    }

    .video-card {
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      border-radius: 1.5rem;
      overflow: hidden;
      border: 1px solid rgba(140, 100, 220, 0.6);
      transition: transform 0.2s;
    }

    .video-card:hover {
      transform: scale(1.01);
      border-color: #c3abff;
    }

    .video-wrapper {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-title {
      padding: 1rem 1rem 1.2rem;
      text-align: center;
      font-weight: 600;
      font-size: 1rem;
      background: linear-gradient(120deg, #e6e0ff, #cbbdff);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    /* Фотоколлаж */
    .collage-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 1.5rem;
    }

    .collage-card {
      flex: 1;
      min-width: 240px;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      border-radius: 1.5rem;
      padding: 1.2rem;
      text-align: center;
      border: 1px solid #7f66c4;
    }

    .collage-img {
      width: 100%;
      border-radius: 1.2rem;
      margin-bottom: 0.8rem;
      box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    }

    .collage-caption {
      font-size: 0.9rem;
      color: #c9bef0;
    }

    /* Кнопка диск */
    .disk-link-container {
      text-align: center;
      margin: 2rem 0;
    }

    .disk-button {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(25, 20, 45, 0.9);
      backdrop-filter: blur(12px);
      padding: 0.8rem 2rem;
      border-radius: 60px;
      font-weight: 500;
      color: #ddd9ff;
      text-decoration: none;
      border: 1px solid #8f77dd;
      transition: all 0.25s;
      font-size: 1rem;
    }

    .disk-button:hover {
      background: #2a234b;
      border-color: #b89eff;
      color: white;
      transform: scale(1.02);
    }

    /* Футер */
    footer {
      margin-top: 4rem;
      text-align: center;
      font-size: 0.8rem;
      color: #8c83b0;
      border-top: 1px solid #2a2446;
      padding-top: 2rem;
    }

    @media (max-width: 700px) {
      .container {
        padding: 1.5rem 1rem 3rem;
      }
      .description {
        font-size: 1rem;
      }
      .section-title {
        font-size: 1.5rem;
      }
    }
