/* ==========================
   GENERAL BODY & FONT
   ========================== */
body {
  background: #000;
  color: #00ffcc;
  font-family: "Courier New", Courier, monospace;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center; /* center everything horizontally */
  margin: 0;
}

/* ==========================
   ASCII BANNER
   ========================== */
.banner {
  text-align: center;
  margin-bottom: 20px;
}

.banner pre {
  margin: 0;
  font-size: 14px;
  line-height: 1.1;
  text-shadow:
    0 0 5px rgba(0,255,204,0.4),
    0 0 10px rgba(0,255,204,0.2);
}

/* ==========================
   NAVIGATION MENU
   ========================== */
nav {
  text-align: center;
  margin-bottom: 40px;
}

nav a {
  margin: 0 14px;
  color: #00ffcc;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 14px;
}

nav a:hover {
  text-decoration: underline;
}

/* ==========================
   ARTISTS & SHOP CONSOLE
   ========================== */
.roster,
.shop-console {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 700px; /* keeps console/roster readable */
}

.item,
.artist {
  margin-bottom: 40px;
  padding-left: 10px;
  border-left: 2px solid rgba(0,255,204,0.3);
  width: 100%;
}

.item-name,
.artist-name {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}

.item-price {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

.item-info,
.artist-meta,
.artist-desc {
  font-size: 12px;
  margin-top: 4px;
  opacity: 0.7;
  line-height: 1.3;
  padding-left: 4px;
}

.artist-desc {
  margin-top: 8px;
  font-size: 13px;
}

/* ==========================
   PAYPAL BUTTONS
   ========================== */
.paypal-button {
  margin-top: 10px;
}

.paypal-button form {
  display: flex;
  justify-content: center;
}

/* ==========================
   BUTTON HOVER
   ========================== */
button {
  margin-top: 6px;
  background: black;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  padding: 6px 12px;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 1px;
}

button:hover {
  background: #00ffcc;
  color: black;
}
