: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;
}

.hero {
  text-align: center;
  padding: 90px 20px 70px;
  flex: 1;
}

.hero .badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-soft);
  font-size: 12px;
  margin-bottom: 18px;
}

.hero h1 { color: var(--gold-soft); font-size: 34px; margin: 0 0 10px; }
.hero p { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto; line-height: 1.8; }

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold-soft);
  text-decoration: none;
  font-size: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(212, 175, 55, 0.18); }
.btn.primary { background: var(--gold); color: #1a1a1f; font-weight: 700; border-color: var(--gold); }

.staff-link { margin-top: 26px; }
.staff-link a { color: var(--muted); font-size: 12px; text-decoration: none; }
.staff-link a:hover { text-decoration: underline; }

.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; }
