* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: #000000;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: #A1A1A6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.icon-btn-ghost {
  background: transparent;
  border: none;
  color: #A1A1A6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

.icon-btn-ghost:hover {
  color: #FFFFFF;
}

.nav-divider {
  width: 1px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.15);
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.login-btn svg {
  color: #A1A1A6;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  width: 100%;
  height: 540px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
  margin-top: 70px;
  background-color: #050505;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 75%, #000000 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px 15px;
}

.hero-center-logo {
  margin-bottom: 20px;
  text-align: center;
}

.center-logo-img {
  max-width: 260px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* FEATURED TRACK CONTAINER */
.featured-track-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.featured-cover-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.8);
  flex-shrink: 0;
  background-color: #1a1a1a;
}

.featured-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.play-btn-overlay svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.featured-meta-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-sub-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8E8E93;
  margin-bottom: 4px;
}

.featured-track-title {
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.featured-actions {
  display: flex;
  gap: 8px;
}

.action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #8E8E93;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

/* WAVEFORM */
.waveform-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

.waveform-img {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

/* MAIN CONTENT / TRACKLIST */
.main-content {
  background: #000000;
  padding: 30px 0 80px;
}

.tracklist-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.track-header {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 2fr 100px;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  color: #636366;
  letter-spacing: 1.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.track-rows {
  display: flex;
  flex-direction: column;
}

.track-row {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 2fr 100px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.col-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-thumb {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  object-fit: cover;
  background: #1C1C1E;
}

.track-name {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
}

.col-time, .col-bpm {
  font-size: 13px;
  color: #8E8E93;
}

.col-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(255, 255, 255, 0.06);
  color: #8E8E93;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
}

.col-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.row-btn {
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: #8E8E93;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.row-btn svg {
  width: 16px;
  height: 16px;
}

.browse-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.browse-btn {
  background: #FFFFFF;
  color: #000000;
  padding: 12px 32px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
}

/* --- ВОЛНА ВОСПРОИЗВЕДЕНИЯ --- */
.waveform-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.waveform-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* --- PROMO LINKS SECTION (FIGMA LAYOUT) --- */
.promo-links-section {
  width: 100%;
  background: #000000;
  padding: 80px 20px 60px;
  display: flex;
  justify-content: center;
}

.promo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  max-width: 900px;
  width: 100%;
}

.promo-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 36px 48px; /* Вертикальный и горизонтальный отступы как в Figma */
  width: 100%;
}

/* Карточка ссылки */
.promo-card {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.promo-card.active {
  cursor: pointer;
  opacity: 1;
}

.promo-card.active:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* Для неактивных ссылок уменьшаем прозрачность, но СОХРАНЯЕМ оригинальный цвет иконки */
.promo-card.disabled {
  cursor: default;
  opacity: 0.45;
}

.promo-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.promo-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.promo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #FFFFFF;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .promo-category {
    gap: 24px 32px;
  }
  .promo-title {
    font-size: 18px;
  }
  .promo-icon-wrapper {
    width: 26px;
    height: 26px;
  }
}
/* Карточки площадок */
.promo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.promo-card.active {
  cursor: pointer;
}

.promo-card.active:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.promo-card.disabled {
  cursor: default;
  opacity: 0.3;
  filter: grayscale(100%);
}

.promo-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

.promo-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.promo-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .promo-category {
    gap: 24px;
  }
}

/* --- FIX PROMO CARDS COLOR --- */
.promo-card {
  opacity: 1 !important;
  filter: none !important;
}
.promo-card .promo-title {
  color: #FFFFFF !important;
}

/* --- CONTACT SECTION --- */
.contact-section {
  width: 100%;
  background: #000000;
  padding: 80px 20px 100px;
  display: flex;
  justify-content: center;
}

.contact-container {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-align: center;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.form-row {
  display: flex;
  gap: 30px;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.form-group input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #333333;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus {
  border-bottom-color: #FFFFFF;
}

.form-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.send-btn {
  background: #FFFFFF;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.send-btn:hover {
  opacity: 0.85;
}

/* --- FOOTER --- */
.footer {
  width: 100%;
  background: #000000;
  border-top: 1px solid #111111;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.footer-nav-columns {
  display: flex;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-circle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.social-circle-btn svg {
  width: 16px;
  height: 16px;
}

.social-circle-btn:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 36px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav-columns {
    gap: 40px;
  }
}

#form-status:empty,
.form-status:empty {
    display: none;
}