body {
  background: transparent;
  margin: 0;
  position: relative;
  z-index: 1;
}

.bg-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border: none;
  z-index: 0;
  pointer-events: none;
}



.win95-popup {
  width: 80%;
  max-width: 1280px;
  margin: 2rem auto;
  border: 2px solid #000;
  background-color: #c0c0c0;
  box-shadow: 4px 4px #808080;
  font-family: "MS Sans Serif", Tahoma, sans-serif;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


.win95-header {
  background-color: #00e;
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 1rem;
}


.win95-title {
  flex-grow: 1;
  text-align: left;
}


.win95-content {
  padding: 1rem;
  background-color: #dfdfdf;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.video-container iframe {
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  display: block;
}

.popup-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.content-wrapper {
  position: relative;
  z-index: 1;
}
.win95-textbox .win95-content {
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.lore-image {
  width: 150px;
  height: auto;
  border: 1px solid #000;
}

.lore-text {
  max-width: 700px;
  font-size: 1rem;
}

.lore-text p {
  text-indent: 2em;
}
.photo-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.photo-box {
  width: fit-content;
  flex-shrink: 0;
}

.bg-tint {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(128, 0, 128, 0.8); /* semi-transparent purple */
  z-index: 0;
  pointer-events: none;
}
/* About page header (match Music/Contact header size) */
.about-stack {
  width: 20.7em;   /* same width as other page headers */
  margin: 0 auto;  /* center on page */
  display: block;
}
.about-header-box {
  width: 100%;     /* override .win95-popup width so it matches stack */
  margin-bottom: 1rem; /* breathing room below header */
}
.about-header-content {
  padding: 0; /* remove all padding so the GIF touches the edges */
}
.about-header-gif {
  width: 100%;
  height: auto;
  display: block;
}

/* Uniform width for About photos (preserve aspect ratio) */
:root { --about-photo-width: 20em; }
.photo-row img.about-photo {
  width: var(--about-photo-width) !important;
  height: auto !important;   /* keep original aspect ratio */
  display: block;
  max-width: none;
}

/* Keep a little breathing room inside each photo box */
.photo-box .win95-content { padding: 0.5rem; box-sizing: border-box; }