/* === Base Reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === Shared Typography === */
body {
  font-family: sans-serif;
  text-align: center;
  padding-top: 50px;
  min-height: 100vh;
  color: #e8edf0;
}

/* === GOMAB.net Theme === */
body.gomab {
  background-image: linear-gradient(to bottom, #08090b, #08090b, #1b1c1d, #2b2b2d, #3b3c3e, #626467, #8d8f92, #b9bdc0, #e8edf0);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* === PBS1914.net Theme === */
body.pbs {
  background-image: linear-gradient(to top, #e8edf0, #a6bccf, #6c8bb0, #3b5b90, #0e2d6d, #0e2d6d);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* === Shared Image Styling === */
img {
  max-width: 80%;
  height: auto;
  border: 2px solid #ccc;
  pointer-events: none;
}

/* === PBS Text Shadow Class === */
.text-shadowed {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}


