/* ═══ DETAIL PAGE ═══ */
.dp {
  max-width: 520px;
  padding-bottom: 60px;
}

.dp-back {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 48px;
  transition: color 0.3s;
}
.dp-back:hover { color: rgba(255,255,255,0.6); }

/* Header */
.dp-head {
  margin-bottom: 56px;
}

.dp-idx {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.dp-name {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  font-weight: normal;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
}

.dp-desc {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 20px;
}

.dp-meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.dp-status {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.dp-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dp-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

/* Sections */
.dp-section {
  margin-bottom: 48px;
}

.dp-section-label {
  font-family: 'Courier Prime', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Releases */
.dp-rel {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.dp-rel-date {
  font-family: 'Courier Prime', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  width: 40px;
  flex-shrink: 0;
}

.dp-rel-title {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  flex: 1;
}

.dp-rel-tag {
  font-family: 'Courier Prime', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Links */
.dp-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dp-link {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: color 0.3s, border-color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dp-link:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}

.dp-arrow {
  font-size: 13px;
  transition: transform 0.2s;
}

.dp-link:hover .dp-arrow {
  transform: translate(2px, -2px);
}

/* ═══ MOBILE ═══ */
@media (max-width: 768px) {
  .dp {
    max-width: none;
    padding-bottom: 40px;
  }
  .dp-back { margin-bottom: 32px; }
  .dp-head { margin-bottom: 40px; }
  .dp-name { font-size: 36px; }
  .dp-desc { font-size: 12px; }
  .dp-section { margin-bottom: 36px; }
  .dp-rel { gap: 12px; }
  .dp-rel-title { font-size: 11px; }
  .dp-link {
    padding: 10px 16px;
    font-size: 11px;
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .dp-name { font-size: 28px; }
  .dp-meta {
    flex-direction: column;
    gap: 10px;
  }
  .dp-rel-tag { display: none; }
}
