:root {
  --bg: #000000;
  --text: #ffffff;
  --gold: #d4af37;
  --muted: #9e9e9e;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid #111;
}

nav .logo {
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--gold);
}

nav .links a {
  margin-left: 24px;
  transition: color 0.2s ease;
}

nav .links a:hover {
  color: var(--gold);
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 80px 40px;
}

.hero {
  text-align: center;
  animation: fadeIn 1.2s ease;
}

.hero h1 {
  font-size: 3.2rem;
  letter-spacing: 6px;
}

.hero p {
  margin-top: 20px;
  color: var(--muted);
}

.buttons {
  margin-top: 40px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin: 10px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--gold);
  color: #000;
  transform: translateY(-2px);
}

.section {
  margin-top: 80px;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--gold);
  display: inline-block;
  padding-bottom: 6px;
}

.search-box {
  margin: 30px 0;
}

.search-box input {
  width: 100%;
  padding: 14px;
  background: #0b0b0b;
  border: 1px solid #222;
  color: white;
  font-size: 1rem;
}

.command-group {
  margin-top: 30px;
}

.command {
  padding: 10px 0;
  border-bottom: 1px solid #111;
  transition: color 0.2s ease;
}

.command span {
  color: var(--gold);
}

.command:hover {
  color: var(--gold);
}

.status {
  margin-top: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid #111;
  color: var(--muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
