body {
  font-family: "Comic Sans MS", "Times New Roman", cursive;
  background-color: black;
  color: white;
  margin: 0;
  padding: 20px;
}

.page-container {
  position: relative; /* keeps the DVD inside */
}

#dvd-logo {
  position: fixed;  /* fixed to the viewport, not container */
  top: 50px;
  left: 50px;
  width: 80px;
  height: auto;
  pointer-events: none;
  z-index: 9999; /* make sure it's above everything */
}

/* Center page in a wide retro box */
.page-container {
  width: 900px;      /* wider */
  margin: 0 auto;        /* center horizontally */
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border: 6px double #FF00FF; /* neon retro border */
}

h1 {
  color: lime;
  text-shadow: 2px 2px 4px purple;
}

a {
  color: #00FF00;
  text-decoration: underline;
}

a:hover {
  background-color: yellow;
  color: red;
}

blink {
  animation: blinker 0.8s step-start infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

/* Blinkies column (vertical stack) */
.blinkies-row {
  margin: 10px 0;
  display: flex;
  flex-direction: column; /* stack vertically */
  align-items: center;    /* center them horizontally */
  gap: 6px;               /* space between each blinkie */
}

.blinkies-row img {
  max-width: 150px;  /* don’t stretch, only shrink if needed */
  height: auto;      /* keep original proportions */
  border: 1px solid #00FF00;
  background: black;
}

.border-gifs {
  position: fixed;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  z-index: 2000;
}
.border-gifs.left { left: 0; }
.border-gifs.right { right: 0; }
.border-gifs img {
  width: 80px;  /* resize characters */
  height: auto;
}


.page-container {
  position: relative;  /* <- important! gives a reference box */
}


.character-border {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;   /* tighten so it fits the frame */
  pointer-events: none;
}

.character-border.left { left: -20px; }   /* nudge into purple border */
.character-border.right { right: -20px; } /* nudge into purple border */

.character-border img {
  position: absolute;
  width: 150px;/* smaller so they fit the frame */
  height: auto;
}


/* About section block */
.about-block {
  margin: 30px auto;
  padding: 20px;
  max-width: 700px;


  text-align: center;
  color: #FFFFFF;

}

.about-block h2 {
  font-size: 1.8em;
  color: #00FF00;
  margin-bottom: 15px;
  text-decoration: underline;
}




/* Webring banner links */
table a {
  color: #FFFF00;
  text-decoration: none;
  font-weight: bold;
}

table a:hover {
  color: #FF0000;
  background: #FFFF00;
}
