.site-header {
  background-color: #523939;
  color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  margin: 0;
  padding: 0 1rem;
  z-index: 1000;
  box-sizing: border-box;
}

.header-spacer {
  flex-grow: 0.05; /* creates a small, flexible gap */
  min-width: 16px; /* ensures there's always at least a small gap */
  max-width: 64px; /* prevents the gap from getting too large */
}

.site-header .title {
  font-size: 1.5rem;
  margin: 0;
  color: #E6E6FA;
  font-family: 'Orbitron', sans-serif;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
     0    0   8px #8A2BE2;
}

.nav-button {
  display: flex;
  align-items: center;
  height: 56px;
  margin-right: 16px;
  text-decoration: none;
  color: #E6E6FA;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.2s;
}

.nav-icon {
  width: 32px;
  height: 32px;
  margin-right: 8px;
  object-fit: contain;
  transition: transform 0.2s;
}

.nav-button:hover .nav-icon {
  transform: scale(1.1);
}

.nav-button:hover .nav-text {
  color: #FFD700;
}

.nav-text {
  font-size: 1rem;
  color: #E6E6FA;
  margin: 0;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

body {
  position: relative;
  margin: 0;
  padding: 0;
  background-image: url('../images/structure/mothmode.png');
  background-repeat: repeat;
  background-position: center;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

.blog-backdrop {
  background: rgba(30,30,40,0.85);
  border: 2px solid #444;
  border-radius: 16px;
  box-shadow: 0 2px 24px #1118;
  max-width: 700px;
  margin: 76px auto 40px auto;
  padding: 32px;
}