@font-face {
      font-family: 'spazz';
      src: url('headerfont.ttf') format('truetype');
    }
    @font-face {
      font-family: 'hitme';
      src: url('hitme.ttf') format('truetype');
    }
    @font-face {
      font-family: 'crass';
      src: url('Crass.ttf') format('truetype');
    }
    body {
      font-family: 'Courier New', Courier, monospace;
      background: url('images/background.png') repeat, #1a0a0a;
      color: #d1f4b3;
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    header {
      display: flex;
      align-items: center;
      padding: 15px;
      background-color: rgba(255,255,255,0.9);
      border-bottom: 2px dashed #d1f4b3;
    }
.overlay-image {
    position: fixed;       /* stay fixed relative to viewport */
    top: 0;
    left: 0;
    width: 100vw;          /* full viewport width */
    height: 100vh;         /* full viewport height */
    object-fit: cover;     /* cover the area without stretching */
    z-index: 9999;         /* on top of everything */
    opacity: 0.1;          /* semi-transparent */
    pointer-events: none;  /* allow clicks through to underlying content */
}

    header img {
      height: 60px;
      margin-right: 15px;
    }

    header h1 {
      margin: 0;
      font-family: 'hitme', monospace;
      font-size: 2.5em;
      color: #d1f4b3;
      text-shadow: 2px 2px #000, -2px -2px #006600, 1px -1px #55ff00;
    }

    header p {
      margin: 0;
      font-size: 0.8em;
      color: #55ffff;
      text-shadow: 1px 1px #000;
      transform: rotate(1deg);
    }

    nav {
      background-color: #000;
      color: #fff;
      padding: 10px;
      text-align: center;
    }
a:link {
  color: lightgreen;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: lightgreen;
  background-color: transparent;
  text-decoration: none;
}
    nav a:link {
      color: #fff;
    }
        nav a:visited {
      color: #fff;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
      font-family: 'crass', monospace;
      display: inline-block;
      padding: 5px 10px;
      border: 1px dashed #d1f4b3;
      transform: rotate(calc(-3deg + 6deg * random()));
      transition: all 0.2s ease-in-out;
    }

    nav a:hover {
      color: #d1f4b3;
      transform: rotate(calc(-5deg + 10deg * random()));
    }


    
    .main-container {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      margin: 20px;
      gap: 20px;
    }

    .side-images {
      width: 250px;
      display: flex;
      flex-direction: column;
      gap: -15px;
      padding: 10px;
    }

    .side-images img {
      width: 100%;
      object-fit: contain;
      border: 2px dashed #d1f4b3;
      transform: rotate(calc(-15deg + 30deg * random()));
      filter: contrast(1.5) grayscale(0.5);
      margin-bottom: -20px;
    }

    .content {
      padding: 20px;
      width: 900px;
      margin:auto;
      background-color: rgba(0,0,0,0.7);
      border: 2px dashed #d1f4b3;
      transform: rotate(1deg);
    }

    .content-layout {
      display: flex;
      flex-direction: row;
      gap: 30px;
      align-items: flex-start;
    }

    .main-content {
      flex: 3;
    }

    .sidebar {
      flex: 1;
      border-left: 2px dashed #d1f4b3;
      padding-left: 20px;
      font-family: 'Courier New', Courier, monospace;
      background-color: rgba(20,0,0,0.6);
      top: 20px;
      height: fit-content;
      transform: rotate(-1deg);
    }

    .sidebar h3 {
      font-size: 1.1em;
      border-bottom: 1px dashed #d1f4b3;
      padding-bottom: 5px;
      margin-top: 0;
      color: #d1ff33;
      text-shadow: 1px 1px #000;
    }

    .sidebar ul {
      list-style-type: square;
      padding-left: 20px;
      margin-bottom: 20px;
    }

    .sidebar li {
      font-size: 0.9em;
      margin-bottom: 8px;
      line-height: 1.2em;
    }

    .news-item {
      margin-bottom: 30px;
    }

    .news-item h2 {
      font-family: 'spazz', monospace;
      font-size: 1.4em;
      color: #d1f4b3;
      text-shadow: 1px 1px #000;
      margin-bottom: 5px;
      transform: rotate(calc(-2deg + 4deg * random()));
    }

    .news-item .date {
      font-size: 0.9em;
      color: #00aa00;
      margin-bottom: 10px;
      transform: rotate(1deg);
    }

    .featured-list {
      list-style-type: none;
      padding-left: 0;
      margin: 0;
    }

    .featured-release {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 15px;
      transform: rotate(calc(-3deg + 6deg * random()));
    }

    .featured-img {
      width: 60px;
      height: auto;
      object-fit: cover;
      border: 1px dashed #d1f4b3;
    }

    .featured-text a {
      text-decoration: none;
      color: #ddffdd;
      font-size: 0.9em;
      line-height: 1.2em;
      transition: all 0.2s ease-in-out;
    }

    .featured-text a:hover {
      color: #00ff00;
      text-shadow: 1px 1px #d1f4b3;
    }
