/* Reset box-sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Reset html and body */
html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Body styles */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  color: #0f0;
  font-family: monospace, sans-serif;
}
/* Scrollable main content wrapper */
.page-wrapper {
  height: 100vh;         /* full viewport height */
  width: 100vw;
  overflow-y: auto;      /* vertical scroll on the page content */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  background-color: #000;
  color: #0f0;
  font-family: monospace, sans-serif;
  #banner, #navbar {
    width: 100%;
    align-self: stretch; /* forces full width despite parent's align-items:center */
  }
}

/* Your merch container scrolls internally if needed */
.merch-container {
  width: 95vw;
  max-width: 1200px;
  height: 500px;          /* fixed height */
  padding: 15px;
  box-sizing: border-box;
  background: linear-gradient(145deg, #d7d7d7, #a9a9a9);
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(200, 200, 200, 0.6);
  overflow-y: auto;       /* scroll inside merch container */
}

.merch-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Headings */
h1 {
  font-size: 2em;
  margin-bottom: 0.25em;
}

h2 {
  margin-top: 2em;
}

/* Terminal style */
.terminal {
  background: #111;
  padding: 1em;
  border: 1px solid #0f0;
  border-radius: 5px;
  margin-top: 2em;
}

/* Misc classes */
.enigmatic {
  margin-top: 2em;
  font-style: italic;
  color: #9ca3af;
}

.soon {
  font-style: italic;
  color: #999;
}

/* Links */
a {
  color: #0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

