




@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@300;400;600&family=IBM+Plex+Mono:wght@400;600&display=swap');

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: #222222;

  /* ── ORANGE / GOLD IDENTITY ── */
  --accent: #ff8a00;     /* orange primary */
  --accent2: #ffd36a;    /* gold highlight */

  --text: #e8e8e8;
  --muted: #666;
  --card-bg: #141414;
}

/* ─────────────────────────────
   RESET
   ───────────────────────────── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* ─────────────────────────────
   HEADER
   ───────────────────────────── */
header {
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}

.logo {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* ─────────────────────────────
   HERO
   ───────────────────────────── */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: 'WIKI';
  position: absolute;
  top: 20px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(255,138,0,0.05);
  pointer-events: none;
  white-space: nowrap;
}

.hero-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.9;
  color: var(--text);
  margin-bottom: 20px;
}

h1 span {
  color: var(--accent);
}

.hero-sub {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.6;
}

/* ─────────────────────────────
   STATUS
   ───────────────────────────── */
#status {
  text-align: center;
  padding: 60px 40px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ─────────────────────────────
   CONTAINER
   ───────────────────────────── */
#wiki-container {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

/* ─────────────────────────────
   CARD SYSTEM
   ───────────────────────────── */
.business-card {
  border: 1px solid var(--border);
  background: var(--card-bg);
  margin-bottom: 32px;
  overflow: hidden;
  animation: fadeUp 0.5s ease both;
}

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

.card-header {
  padding: 18px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  background: #0e0e0e;
}

.card-header h2 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-tag {
  font-size: 10px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 3px 8px;
}

/* ─────────────────────────────
   CONTENT
   ───────────────────────────── */
.business-content {
  padding: 32px 28px;
}

.business-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
}

.business-content b {
  color: var(--text);
}

.business-content i {
  color: var(--accent2);
}

/* ─────────────────────────────
   FOOTER
   ───────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

footer p {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

/* ─────────────────────────────
   RESPONSIVE
   ───────────────────────────── */
@media (max-width: 640px) {
  header { padding: 0 20px; }
  .hero { padding: 50px 20px; }
  #wiki-container { padding: 20px; }
  .business-content { padding: 20px; }
}









