/* === ОСНОВНЫЕ НАСТРОЙКИ === */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #fff;
  background: #000;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === ВИДЕО-ФОН === */
.bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4) contrast(1.2);
}

/* === OVERLAY (в потоке, не absolute) === */
.overlay {
  margin-top: 8vh; /* 🔹 отступ сверху */
  text-align: center;
  max-width: 900px;
}

.logo {
  width: clamp(160px, 30vw, 280px);
  margin-bottom: 20px;
}

.subtitle {
  font-size: clamp(12px, 1.3vw, 16px);
  color: #ccc;
  margin-bottom: 90px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === СЕТКА ТРЕКОВ === */
.tracks {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;       /* 🔹 чуть меньше, чтобы компенсировать общий баланс */
  margin-bottom: 60px;
  padding: 0 2vw;
  box-sizing: border-box;
}

/* === КАРТОЧКА === */
.track {
  background: #121212;
  border: 1px solid #1c1c1c;
  border-radius: 12px;
  padding: 16px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.track:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* === ОБЛОЖКА === */
.cover {
  width: clamp(60px, 8vw, 90px);
  height: clamp(60px, 8vw, 90px);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0,0,0,0.4);
}
.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* === МЕТА === */
.meta {
  text-align: center;
}
.title {
  margin: 0 0 2px;
  font-weight: 600;
  font-size: clamp(13px, 1vw, 15px);
}
.subtitle {
  margin: 0;
  font-size: clamp(10px, 0.8vw, 12px);
  color: #aaa;
}

/* === КОНТРОЛЫ === */
.controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  justify-content: center;
}

/* Кнопки */
.btn {
  border: 1px solid #333;
  background: #161616;
  color: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn:hover {
  background: #cf0303;
  border-color: #cf0303;
}

/* Время */
.time {
  font-size: 11px;
  color: #bbb;
  min-width: 60px;
  text-align: center;
}

/* Прогресс */
.bar {
  position: relative;
  flex: 1;
  height: 4px;
  background: #1a1a1a;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
}
.bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, #cf0303, #8b0000);
}

/* Download */
.dl {
  border: 1px dashed #444;
  border-radius: 8px;
  padding: 4px 9px;
  font-size: 11px;
  color: #fff;
  transition: 0.2s;
}
.dl:hover {
  border-color: #cf0303;
  background: #141414;
}

/* === КОНТАКТЫ === */
.contact-section {
  color: #fff;
  text-align: center;
  padding: 10px 20px 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}
.contact-section h2 {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.contact-section p {
  color: #bbb;
  font-size: 13px;
  margin-bottom: 12px;
}
.contact-info {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.contact-btn {
  border: 2px solid #fff;
  padding: 8px 22px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
}
.contact-btn:hover {
  background: #cf0303;
  border-color: #cf0303;
  transform: scale(1.05);
}

/* === МЕДИА === */
@media (max-width: 700px) {
  .overlay {
    margin-top: 5vh;
  }
  .tracks {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .track {
    width: 90%;
    max-width: 300px;
  }
}