:root {
  --bg: #0a0a09;
  --panel: #131211;
  --panel-border: #262420;
  --gold: #f2b705;
  --gold-soft: #d9a441;
  --green: #4ade80;
  --text-muted: #b3aea3;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: #fff;
  min-height: 100dvh;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== HEADER ===== */
.header {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 26px 20px 10px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.15)),
    repeating-linear-gradient(115deg, #17140f 0px, #17140f 2px, #100e0a 2px, #100e0a 4px);
}

.back-btn {
  position: absolute;
  left: 24px;
  top: 30px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--panel-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: 0.2s;
}

.back-btn:hover {
  border-color: var(--gold);
}

.equipped-header {
  max-width: 420px;
  width: 80%;
  height: auto;
}

/* ===== INTRO ===== */
.intro {
  text-align: center;
  padding: 46px 20px 10px;
  max-width: 640px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.eyebrow .dash {
  width: 26px;
  height: 2px;
  background: var(--gold);
}

.intro h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
}

.intro h1 .accent {
  color: var(--gold);
}

.intro-sub {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
}

/* ===== TRACK CARDS ===== */
.track-grid {
  max-width: 1180px;
  margin: 46px auto 60px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.track-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 34px 26px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}

.track-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
}

.track-card.featured {
  border-color: var(--gold-soft);
  background: linear-gradient(180deg, rgba(242, 183, 5, 0.06), var(--panel) 40%);
}

.status-badge {
  align-self: flex-end;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  background: #222;
  color: #999;
  margin-bottom: 18px;
}

.status-badge.open {
  background: rgba(74, 222, 128, 0.12);
  color: var(--green);
}

.status-badge.closed {
  background: rgba(255, 255, 255, 0.06);
  color: #999;
}

.track-icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 20px;
}

.track-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.track-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 26px;
  flex: 1;
}

.track-btn {
  width: 100%;
  background: var(--gold);
  color: #1a1200;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 13px 20px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.2s;
}

.track-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(242, 183, 5, 0.25);
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 0 40px;
}

.pbagicon {
  width: 56px;
}

.pbagtxt {
  width: 200px;
  max-width: 70vw;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .track-grid {
    grid-template-columns: 1fr;
  }
}
