/* -------------------------------------------------------
   BRAND SYSTEM
------------------------------------------------------- */
:root {
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --accent: #3b82f6;

  --bg-dark: #0c0a1a;
  --bg-card: #1a1145;
  --bg-card-light: #0f0d24;

  --text: #ffffff;
  --text-light: #d1caff;

  --radius: 16px;
  --shadow: 0 4px 14px rgba(0,0,0,0.35);
}

/* -------------------------------------------------------
   PAGE
------------------------------------------------------- */
.lp-page {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  font-family: system-ui, sans-serif;
  color: var(--text);
  min-height: 100vh;
  padding-bottom: 80px; /* bottom nav spacing */
}

/* -------------------------------------------------------
   HEADER
------------------------------------------------------- */
.lp-header {
  text-align: center;
  padding: 28px 20px 10px;
}

.lp-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
}

.lp-subtitle {
  margin-top: 6px;
  font-size: 14px;
  color: var(--text-light);
}

/* -------------------------------------------------------
   TRACKS LIST
------------------------------------------------------- */
.tracks-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.track-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.05);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.track-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

.track-info {
  flex: 1;
}

.track-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.track-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}

/* -------------------------------------------------------
   BOTTOM NAV
------------------------------------------------------- */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--bg-card);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
}

.nav-tab {
  text-decoration: none;
  color: var(--text-light);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.nav-tab.active {
  color: var(--primary-light);
  font-weight: 600;
}
