
body {
  background-color: black;
  background-image: url('glitchbg.jpg');
  background-repeat: repeat;
  background-size: auto;
  background-attachment: fixed; 
  font-family: 'Cinzel', 'Courier New', monospace;
  color: #fff;
  margin: 0;
  padding: 10px;
}

a {
  color: #0084ff;
  text-decoration: none;
  background: black;
}

#main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#main-content h1 {
  color: #ffffff;
  font-family: 'Cinzel', 'Courier New', monospace;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 14px 0;
  line-height: 1.5;
}

#main-content h2 {
  color: #ffffff;
  font-family: 'Cinzel', 'Courier New', monospace;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 0 14px 0;
  line-height: 1.5;
}

#main-content p {
  color: white;
  margin: 0 0 8px 0;
  font-size: 18px;
  line-height: 1.7;
}

#wrapper {
    width: 720px;
    margin: 0 auto;
  }

#columns {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

.box {
  background: #000;
  border: 3px solid #52c2fa;
  width: 100%;
  padding: 20px 24px;
  font-family: 'Cinzel', 'Courier New', monospace;
  font-size: 18px;
  color: #cccccc;
  line-height: 1.7;
  box-sizing: border-box;
  border-radius: 6px;
}


.box-title {
  color: white;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  border-bottom: 1px solid #52c2fa;
  padding-bottom: 4px;
  text-align: center;    
}

.box-title.centered {
  text-align: center;
}

.games-scroll {
  display: flex;          
  flex-direction: row;
  overflow-x: scroll;     
  overflow-y: hidden;
  gap: 4px;
  padding: 6px 0;

  
  scrollbar-color: #52c2fa #000;
  scrollbar-width: thin;
}

.games-scroll img {
  height: 120px;          
  width: auto;            
  flex-shrink: 0;         
  image-rendering: pixelated;
}

.music-scroll {
  display: flex;          
  flex-direction: row;
  overflow-x: scroll;     
  overflow-y: hidden;
  gap: 4px;
  padding: 6px 0;

  
  scrollbar-color: #52c2fa #000;
  scrollbar-width: thin;
}

.music-scroll img {
  height: 120px;          
  width: auto;            
  flex-shrink: 0;         
  image-rendering: pixelated;
}