/* DEMO-Banner */
.demo-banner {
  background: #8B6914;
  color: #fff;
  text-align: center;
  padding: 0.45rem 1.5rem;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: sticky;
  top: 0;
  z-index: 200;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #181818;
  border-top: 2px solid #2E5A3C;
  z-index: 9999;
}
.cookie-banner-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.cookie-banner-text p {
  font-size: 0.8rem;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 0.2rem;
  font-family: 'Helvetica Neue', Arial, system-ui, sans-serif;
}
.cookie-banner-text p:last-child { margin-bottom: 0; }
.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.78rem;
  padding: 0.45rem 1.1rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.cookie-btn-decline {
  background: transparent;
  border: 1px solid #444;
  color: #888;
}
.cookie-btn-decline:hover { border-color: #888; color: #ccc; }
.cookie-btn-accept {
  background: #2E5A3C;
  color: #fff;
}
.cookie-btn-accept:hover { background: #1E3D2A; }

.page-copyright {
  font-size: 0.72rem;
  color: #555;
  text-align: center;
  padding: 0.6rem 1.5rem;
  background: #0f0f0f;
  line-height: 1.6;
  font-family: 'Helvetica Neue', Arial, system-ui, sans-serif;
}
