/* Podstawy layoutu */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  min-height: 100vh;
  background: #121212;
  color: #f5f5f5;
}

/* Nagłówek i nawigacja */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
  background: #181818;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  font-size: 1.5rem;
  color: #ff9800;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.site-nav {
  display: flex;
  gap: 1rem;
}

.site-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: #333;
  color: #fff;
}

/* Główna zawartość */
.page {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 1rem 3rem;
}

/* Sekcja albumu */
.album {
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #1c1c1c;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 8px 24px rgba(0, 0, 0, 0.4);
}

.album-header h2 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.album-header p {
  font-size: 0.9rem;
  color: #aaa;
}

/* Lista utworów */
.track-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.track {
  padding: 0.75rem 0;
  border-top: 1px solid #2a2a2a;
}

.track:first-child {
  border-top: none;
}

.track-meta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.track-number {
  font-size: 0.8rem;
  color: #888;
}

.track-title {
  font-size: 0.95rem;
  font-weight: 500;
}

.track-length {
  font-size: 0.8rem;
  color: #888;
}

/* Player audio */
audio {
  width: 100%;
}

/* Stopka */
.site-footer {
  border-top: 1px solid #333;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  color: #aaa;
  text-align: center;
}

/* Responsywność */
@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .page {
    margin-top: 1rem;
  }

  .album {
    padding: 1rem;
  }
}