/* Base layout / retro defaults */
body {
  margin: 0;
  padding: 0 0 60px 0; /* space for bottom audio bar */
  background-color: #FF9900;
}

.body-yellow {
  background-color: #FFFF00;
}

/* Shared text alignment helpers (existing auto-style classes) */
.auto-style2 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: medium;
}

.auto-style3 {
  font-size: medium;
  font-family: Tahoma;
}

.auto-style4 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: x-large;
  font-weight: bold;
  text-decoration: underline;
}

.auto-style5 {
  text-align: center;
}

.auto-style6 {
  text-align: center;
  font-family: Tahoma;
}

.auto-style7 {
  font-family: Tahoma;
}

.auto-style8 {
  text-align: center;
  font-family: "ABC Bilder";
  margin-top: 19px;
}

.auto-style9 {
  text-align: left;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: xx-small;
  margin-top: 19px;
}

.auto-style10 {
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  margin-top: 19px;
}

.auto-style11 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: medium;
}

.auto-style12 {
  font-family: "Home Sweet Home Outline";
}

.auto-style13 {
  text-align: left;
  font-family: "Times New Roman", Times, serif;
}

.auto-style14 {
  text-align: left;
  font-family: Tahoma;
  margin-top: 0px;
}

.auto-style15 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: x-small;
}

.auto-style16 {
  font-family: "Courier New", Courier, monospace;
}

.auto-style17 {
  line-height: normal;
  font-family: "Comic Sans MS";
  color: maroon;
}

.auto-style18 {
  text-decoration: none;
}

.auto-style19 {
  color: maroon;
}

.auto-style20 {
  color: maroon;
  font-family: "Comic Sans MS";
}

.auto-style21 {
  font-family: "Comic Sans MS";
}

/* Additional auto styles from other pages */
.auto-style11-small {
  font-size: medium;
}

.auto-style12-right {
  text-align: right;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: medium;
}

.auto-style16-right {
  text-align: right;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.auto-style18-header {
  text-align: left;
  font-family: "Bauhaus 93";
  font-size: xx-large;
  color: #FF00FF;
}

.auto-style15-box {
  border-style: solid;
  border-width: 1px;
  padding: 1px 4px;
  text-align: left;
}

.auto-style19-box {
  border-style: solid;
  border-width: 1px;
  padding: 1px 4px;
  text-align: left;
  font-family: Tahoma;
}

.auto-style1 {
  color: #7D2412;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.auto-style11-medium {
  font-size: medium;
}

.auto-style9-underline {
  text-decoration: underline;
}

.auto-style12-links {
  text-align: right;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: medium;
}

.auto-style14-right {
  text-align: right;
  font-family: Tahoma;
}

.auto-style15-underline {
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
}

.auto-style16-margin {
  margin-left: 324px;
}

.auto-style19-margin {
  margin-left: 365px;
}

.auto-style17-center-small {
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: x-small;
}

.auto-style16-highlight {
  font-family: "Higlight round";
  font-size: medium;
}

.auto-style18-highlight {
  font-family: "Higlight round";
}

/* Audio bar / player at bottom */
.audio-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  padding: 6px 10px;
  background: #000000;
  color: #FFFFFF;
  border-top: 2px solid #FFFF00;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.audio-bar span {
  white-space: nowrap;
}

.audio-bar audio {
  max-width: 260px;
}

/* Simple retro link styling */
a {
  color: #0000FF;
}

a:visited {
  color: #800080;
}

a:hover {
  color: #FF0000;
}

/* Spinning retro main title (3D spin) */
h1 {
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 1.6em;
  font-weight: bold;
  text-decoration: underline;
  color: #000000;
  display: block;
  margin: 20px auto 10px auto;
  animation: spin-title-3d 20s linear infinite;
  transform-origin: 50% 50%;
  transform-style: preserve-3d;
}

@keyframes spin-title-3d {
  from {
    transform: perspective(600px) rotateX(10deg) rotateY(0deg);
  }
  to {
    transform: perspective(600px) rotateX(10deg) rotateY(360deg);
  }
}

/* Retro bordered content boxes for sections */
.section-box {
  border: 3px ridge #000000;
  background-color: #FFCC66;
  padding: 8px 12px;
  margin: 10px auto;
  max-width: 780px;
}

.section-box h2,
.section-box h3,
.section-box p,
.section-box img,
.section-box a {
  text-align: center;
}

.section-box img {
  display: block;
  margin: 6px auto;
}
