/* DualShock versions list styles */
:root { --ds-gap: 12px; }

.dualshock-controls { display: flex; gap: 16px; align-items: center; margin: 20px 0 24px; flex-wrap: wrap; }
.controls-inline { display: flex; gap: 12px; align-items: center; }
.sort-label { font-size: 0.95rem; color: var(--text-secondary, #aab0b6); }
.sort-label select { margin-left: 8px; padding: 8px 10px; border-radius: 10px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #fff; }

.search-box { position: relative; flex: 1 1 260px; max-width: 460px; }
.search-box input { width: 100%; padding: 12px 40px 12px 14px; border-radius: 12px; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #fff; outline: none; }
.search-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); opacity: .7; }

.dualshock-list { display: flex; flex-direction: column; gap: var(--ds-gap); }
.ds-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); }
.ds-left { overflow: hidden; }
.ds-tag { font-weight: 600; color: #fff; letter-spacing: .2px; }
.ds-msg { color: var(--text-secondary, #aab0b6); font-size: .95rem; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ds-right { display: flex; gap: 14px; align-items: center; }
.ds-date { font-variant-numeric: tabular-nums; color: var(--text-secondary, #aab0b6); }
.ds-open { padding: 8px 12px; border-radius: 10px; background: linear-gradient(90deg, var(--accent-color, #58d68d), #7bdcb5); color: #14212b; font-weight: 600; text-decoration: none; }

/* Meta line */
.ds-meta { 
  margin-top: 20px; 
  padding: 12px 14px; 
  border-radius: 12px; 
  background: rgba(255,255,255,.05); 
  border: 1px solid rgba(255,255,255,.08); 
}
.ds-meta p { 
  margin: 0; 
  color: var(--text-secondary, #aab0b6);
  display: flex; 
  align-items: center; 
  gap: 10px; 
  flex-wrap: wrap; 
}
.ds-meta a { 
  color: #7bdcb5; 
  text-decoration: none; 
  font-weight: 600; 
}
.ds-meta a:hover { text-decoration: underline; }
.ds-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.3); display: inline-block; }

@media (max-width: 640px) {
  .ds-row { grid-template-columns: 1fr; }
  .ds-right { justify-content: space-between; }
}
