:root {
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #8a6200;
  --red: #cc2200;
  --red-bright: #ff3300;
  --bg: #050508;
  --bg-mid: #0d0d18;
  --bg-card: #0a0a16;
  --blue: #2255cc;
  --text-muted: #8888aa;
  --border: rgba(212,160,23,0.25);
  --green: #00cc44;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: #e0e0f0;
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* BG */
.page-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(26,58,122,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 70%, rgba(204,34,0,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #050508 0%, #0a0a18 50%, #05050c 100%);
}
.page-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(212,160,23,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,160,23,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(5,5,8,0.98), rgba(5,5,8,0.7));
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  backdrop-filter: blur(12px);
}
.nav-logo { text-decoration: none; }
.nav-logo img { height: 48px; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  color: #aaa; text-decoration: none; font-size: 13px;
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-btn {
  background: linear-gradient(135deg, var(--red), #880000);
  color: #fff; border: none; padding: 8px 22px;
  font-family: 'Exo 2', sans-serif; font-size: 12px;
  letter-spacing: 2px; font-weight: 700; text-transform: uppercase;
  cursor: pointer; clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.nav-btn:hover { background: linear-gradient(135deg, var(--red-bright), var(--red)); }

/* CONTENT */
.content {
  position: relative; z-index: 1;
  max-width: 960px; margin: 0 auto;
  padding: 100px 20px 60px;
}

.page-title {
  font-family: 'Cinzel', serif;
  font-size: 36px; font-weight: 700;
  color: var(--gold); text-align: center;
  margin-bottom: 8px;
  text-shadow: 0 0 30px rgba(212,160,23,0.3);
}
.page-sub {
  text-align: center; color: var(--text-muted);
  font-size: 14px; letter-spacing: 1px; margin-bottom: 48px;
}

/* SECTION */
.info-section {
  margin-bottom: 40px;
}
.info-section h2 {
  font-family: 'Cinzel', serif;
  font-size: 22px; font-weight: 700;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px; margin-bottom: 20px;
}
.info-section h3 {
  font-size: 15px; font-weight: 700;
  color: #ccc; margin: 16px 0 8px;
  letter-spacing: 1px;
}

/* TABLE */
.info-table {
  width: 100%; border-collapse: collapse; margin-bottom: 16px;
}
.info-table th {
  background: rgba(212,160,23,0.1);
  color: var(--gold); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table td {
  padding: 8px 14px; font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: #ccc;
}
.info-table tr:hover td { background: rgba(212,160,23,0.03); }
.val { color: var(--gold); font-weight: 700; }
.val-green { color: var(--green); font-weight: 700; }
.val-red { color: var(--red-bright); font-weight: 700; }

/* CARD GRID */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px; margin-bottom: 16px;
}
.info-card {
  background: rgba(10,10,22,0.8);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 20px;
}
.info-card h4 {
  color: var(--gold); font-size: 14px;
  margin-bottom: 8px; letter-spacing: 1px;
}
.info-card p {
  color: #aaa; font-size: 12px; line-height: 1.6;
}
.info-card code {
  background: rgba(212,160,23,0.1);
  color: var(--gold-light); padding: 2px 6px;
  border-radius: 3px; font-size: 12px;
}

/* CMD LIST */
.cmd-item {
  display: flex; gap: 12px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cmd-name {
  color: var(--gold-light); font-weight: 700;
  font-size: 13px; min-width: 140px; font-family: monospace;
}
.cmd-desc { color: #aaa; font-size: 12px; }

/* FOOTER */
.footer {
  text-align: center; padding: 30px 20px;
  color: var(--text-muted); font-size: 12px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .content { padding: 80px 16px 40px; }
  .page-title { font-size: 28px; }
  .card-grid { grid-template-columns: 1fr; }
  .cmd-item { flex-direction: column; gap: 4px; }
  .cmd-name { min-width: auto; }
}
