/* ========== GLOBAL BASE FIX ========== */
html {
  scroll-padding-top: 80px;
  background: #000;
}

body {
  margin: 0;
  padding-top: 80px;
  font-family: "Segoe UI", "Liberation Sans", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("/images/backgrounds/future-btc-home.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* ========== NAV BAR ========== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #0b0b0b;
  border-bottom: 1px solid #222;
  z-index: 1000;

  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.top-bar a {
  color: #f7931a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: 14px;
  white-space: nowrap;
  margin-right: 10px;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.top-bar a:hover,
.top-bar a:focus {
  color: #fff;
  text-decoration: underline;
}

/* ========== MOBILE ========== */
@media (max-width: 600px) {
  html {
    scroll-padding-top: 96px;
  }

  body {
    padding-top: 96px;
  }

  .top-bar {
    height: auto;
    padding: 10px 14px;
  }
}
