@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Orbitron:wght@600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; background: #0D0D0D; color: #F5F5F5; }
a { text-decoration: none; color: inherit; }

/* ── Nav buttons ── */
.nav-btn {
  position: fixed;
  top: 28px;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow 0.2s ease;
  z-index: 100;
}
.nav-btn-left {
  left: 28px;
  color: #C17A3E;
  border: 1.5px solid #7C3AED;
}
.nav-btn-left:hover {
  box-shadow: 0 0 12px rgba(193,122,62,0.3);
}
.nav-btn-right {
  right: 28px;
  color: #3B82F6;
  border: 1.5px solid #7C3AED;
}
.nav-btn-right:hover {
  box-shadow: 0 0 12px rgba(59,130,246,0.3);
}

/* ── Section label (info page) ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #3B82F6;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  margin-top: 40px;
}

/* ── Divider (info page) ── */
.divider {
  width: 100%;
  height: 1px;
  background: #2E2E2E;
  margin: 32px 0;
}
