/* ----------- Global darkmode Win95 theme -------------- */
body.darkmode {
  background: #232629 url('https://www.transparenttextures.com/patterns/square-bg.png');
  /* subtle grid for nostalgia */
  color: #e8f6fe;
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Windows 95 Window */
.window {
  background: #282C34;
  border: 4px solid #6fd3fb;
  border-radius: 0px;
  box-shadow: 5px 5px 0 #1b222b, 13px 13px 0 #016083;
  max-width: 800px;
  margin: 70px auto 32px auto;
  position: relative;
}

.window-titlebar {
  background: linear-gradient(90deg, #2196f3 70%, #1367a2 100%);
  color: #fff;
  padding: 0.45em 1.2em;
  font-family: "Press Start 2P", Arial, monospace;
  font-size: 1.11em;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #336ba3;
}

.win-controls {
  display: flex;
}
.win-btn {
  width: 18px; height: 18px;
  background: #f1f3f9;
  margin-left: 4px;
  border: 2px outset #c6d2e1;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  padding: 0;
  transition: filter 0.12s;
}
.win-btn:active {
  border-style: inset;
}

.win-btn.min:before {
  content: '';
  display: block;
  background: #35588e;
  width: 10px; height: 3px;
  position: absolute;
  left: 3px; top: 11px;
}
.win-btn.max:before {
  content: '';
  display: block;
  border: 2px solid #3997db;
  background: #ade5ff;
  width: 10px; height: 10px;
  position: absolute;
  left: 2px; top: 2px;
}
.win-btn.close {
  background: #db3939;
  border-color: #b22727;
  box-shadow: 0 0 4px #f87272;
}
.win-btn.close:before {
  content: "×";
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-weight: bold;
  font-size: 12px;
  position: absolute;
  left: 2px; top: 0px;
}

.window-content {
  padding: 2.2em 2.8em 2.5em 2.8em;
}

/* Subtitle for sections */
.window-subtitle {
  font-family: "Press Start 2P", Arial, monospace;
  font-size: 1.09em;
  color: #8eeeec;
  margin: 1.2em 0 0.6em 0;
  letter-spacing: 2px;
}

.music-widget.window-bar {
  position: fixed;
  top: 24px;
  left: 35px;
  background: #201f36;
  border: 2.2px outset #30d3fb;
  z-index: 3000;
  display: flex;
  align-items: center;
  padding: 0.45em 1.4em 0.45em 1em;
  border-radius: 7px;
  box-shadow: 2px 2px 0 #172330;
}
.music-label {
  font-family: "Press Start 2P", Arial, monospace;
  color: #b6fffd;
  font-size: 0.93em;
  margin-right: 14px;
}

.speaker-btn {
  background: #e9f3fa;
  border: 2px outset #c6d2e1;
  border-radius: 2px;
  font-size: 1.15em;
  cursor: pointer;
  transition: filter 0.15s, box-shadow 0.18s;
  padding: 1.5px 7px 0 7px;
  margin-left: 3px;
}
.speaker-btn:active {
  border-style: inset;
  color: #1a86d2;
}

/* ----- Gallery Window Frame ----- */
.gallery-section {
  text-align: center;
  margin-bottom: 2em;
}

.img-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px inset #d9f5fe;
  background: linear-gradient(165deg,#192e45 30%, #243354 90%);
  box-shadow: 7px 7px 0 #0678a5;
  padding: 1.3em;
  margin: 2em 1em 1.1em 1em;
  border-radius: 0.6em;
  transition: box-shadow 0.25s, border 0.22s;
}
.img-frame:hover {
  box-shadow: 0 0 0 #fff,0 0 60px #30d3fb inset, 7px 7px 0 #0678a5;
  border-color: #93deeb;
}

/* 2000s: big, slightly pixelated image in a frame */
.gallery-img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 0.4em;
    box-shadow: 0 0 0 #fff,0 0 60px #30d3fb inset, 7px 7px 0 #0678a5;
    }


    html, body {
        overflow-y: hidden;
    }
    /* Make all text unselectable */
    * {
        user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        -moz-user-select: none;
    }