:root {
  --gold: #d4af37;
  --gold-soft: #e9cd6b;
  --bg-1: #0e0e11;
  --bg-2: #17171c;
  --panel: #1c1c22;
  --text: #f0ead9;
  --muted: #9a9488;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 50% -10%, var(--bg-2), var(--bg-1));
  color: var(--text);
  font-family: "Vazirmatn", Tahoma, sans-serif;
  direction: rtl;
  display: flex;
  flex-direction: column;
}

.explore-header {
  text-align: center;
  padding: 50px 20px 30px;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 18px;
}
.back-link:hover { color: var(--gold-soft); }

.explore-header h1 { color: var(--gold-soft); font-size: 28px; margin: 0 0 8px; }
.explore-header p { color: var(--muted); font-size: 14px; margin: 0 0 24px; }

#search {
  width: 100%;
  max-width: 420px;
  padding: 13px 16px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: var(--bg-2);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
#search:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.explore-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 24px 60px;
  flex: 1;
  width: 100%;
}

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

.preview-card {
  background: var(--panel);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 22px 14px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.preview-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.preview-card .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-2);
  border: 2px solid var(--gold);
  margin: 0 auto 12px;
  display: block;
}

.preview-card .name { font-weight: 700; font-size: 14px; color: #f2ead6; }
.preview-card .city { font-size: 12px; color: var(--muted); margin-top: 4px; }
.preview-card .type-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10px;
  color: var(--gold-soft);
  background: rgba(212, 175, 55, 0.1);
}

.empty-msg { text-align: center; color: var(--muted); padding: 40px 0; }

.site-footer {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  padding: 20px 20px 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  color: var(--muted);
  font-size: 13px;
}
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer .sep { margin: 0 8px; opacity: 0.5; }
.site-footer .copyright { margin-top: 6px; font-size: 11px; opacity: 0.7; }
