/* Original Manmotyme style – unchanged design */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: #0b0b0b;
  color: #eaeaea;
  line-height: 1.6;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  background: #000;
  border-bottom: 1px solid #1f1f1f;
}

.site-header h1 {
  margin: 0;
  font-size: 1.6rem;
}

.site-header .muted {
  color: #8f8f8f;
}

.site-header nav {
  margin-top: 12px;
}

.site-header nav a {
  color: #cfcfcf;
  text-decoration: none;
  margin-right: 16px;
  font-size: 0.95rem;
}

.site-header nav a:hover {
  color: #4caf50;
}

.hero {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 36px;
  margin-top: 24px;
}

.hero h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.lead {
  color: #cfcfcf;
  max-width: 720px;
}

.cta {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  background: #4caf50;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
}

.btn:hover {
  background: #43a047;
}

.btn.alt {
  background: transparent;
  color: #4caf50;
  border: 1px solid #4caf50;
}

.btn.alt:hover {
  background: rgba(76, 175, 80, 0.1);
}

.quick-info {
  margin-top: 40px;
}

.quick-info ul {
  list-style: none;
  padding: 0;
}

.quick-info li {
  padding: 6px 0;
  border-bottom: 1px solid #1f1f1f;
}

.features {
  margin-top: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 20px;
}

.card h4 {
  margin-top: 0;
  color: #4caf50;
}

.socials {
  margin-top: 40px;
}

.socials .links {
  list-style: none;
  padding: 0;
}

.socials .links li {
  margin-bottom: 8px;
}

.socials .links a {
  color: #4caf50;
  text-decoration: none;
}

.socials .links a:hover {
  text-decoration: underline;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid #1f1f1f;
  background: #000;
}

.site-footer p {
  margin: 8px 0;
  font-size: 0.85rem;
  color: #8f8f8f;
}

.site-footer a {
  color: #4caf50;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* === Gold Ranking Titles (Explorer-Friendly) === */
.gold-title {
  color: #d4af37;
  font-weight: 700;
}

.gold-subtitle {
  color: #c9a227;
  font-weight: 600;
}

/* === Animated Navigation Buttons === */
.nav-btn {
  display: inline-block;
  padding: 8px 14px;
  margin: 4px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

.nav-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

/* === Highlight Button (Compliance) === */
.highlight-btn {
  border: 1px solid #d4af37;
  border-radius: 4px;
}
