* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Tahoma, Vazirmatn, sans-serif;
  background: #f4f2ee;
  color: #222;
}
.topbar {
  background: #1f2937;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.topbar h1 { margin: 0 0 6px; }
.location-info { margin: 0; opacity: 0.85; font-size: 14px; }

main { max-width: 1000px; margin: 0 auto; padding: 20px; }

.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.song-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.song-card h3 { margin: 0 0 4px; font-size: 16px; }
.song-card .singer { color: #666; font-size: 13px; margin-bottom: 8px; }
.song-card .duration { color: #999; font-size: 12px; margin-bottom: 10px; }
.song-card audio { width: 100%; margin-bottom: 10px; }
.song-card .download-link {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 13px;
}

.empty-msg { text-align: center; color: #777; margin-top: 40px; }

/* مودال */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
}
.modal-box {
  background: #fff; border-radius: 14px; padding: 24px;
  max-width: 380px; width: 90%; text-align: center;
}
.modal-box h2 { margin-top: 0; font-size: 18px; }
.modal-box p { font-size: 14px; color: #555; line-height: 1.8; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.btn { border: none; padding: 10px 16px; border-radius: 8px; cursor: pointer; font-size: 14px; }
.btn-primary { background: #2563eb; color: #fff; }
.btn-secondary { background: #e5e7eb; color: #333; }
