
@font-face {
  font-family: PixelFont;
  src: url("https://peachyvoid.com/fonts/Jersey10-Regular.ttf");
}

body {
  margin: 0;
  padding: 0;
  font: 17px 'lato', courier, tahoma;
  color: #000000;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px #bbb;
  background: url("https://peachyvoid.com/backgrounds/strby2.gif") repeat;
  background-color: #352b20;
  background-attachment: fixed;
  background-position: center top;
}


.page-wrapper {
  display: flex;
  min-height: 100vh;
  overflow: auto;
  justify-content: center;
}


.content {
  flex: 1;
  padding: 60px;
  max-width: 2200px;
  position: relative;
  z-index: 0;
}

#header1 {
  font-family: PixelFont;
  text-align: center;
  font-size: 40px;
  margin: 0;
  line-height: 0.2;
  color: #a4ddfd;
  text-shadow:
    0 0 5px #000000,
    0 0 10px #c2293dd2,
    0 0 20px #fff7fb,
    0 0 40px #faa3ce;
}



.boxes {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.windows-box {
  background-color: #ebebeb;
  border: 2px solid #000;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  border-right: 2px solid #808080;
  border-bottom: 2px solid #808080;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  font-family: 'MS Sans Serif', Arial, sans-serif;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.windows-box .title-bar {
  height: 20px;
  background: linear-gradient(to bottom, #f5f5f5, #a9a9a9);
  border-bottom: 1px solid #000;
  padding: 2px 4px;
  color: #000;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.windows-box .buttons {
  display: flex;
  gap: 2px;
}

.windows-box .button {
  width: 16px;
  height: 14px;
  border: 1px solid #dadada;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  text-align: center;
  line-height: 12px;
  color: #000000;
  font-size: 10px;
  cursor: default;
}

.button.minimize { background-color: #54a6bb; }
.button.maximize { background-color: #4b78ac; }
.button.close { background-color: #920000; }


.main.windows-box {
  width: 580px;
  height: 800px;
}

.content-area {
  flex: 1;
  padding: 10px;
  background-color: #c0e6ff;
  display: flex;
  flex-direction: column;
  overflow: auto;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}

.content-inner {
  flex: 1;
  position: relative;
  width: 100%;
  min-height: 0;
  font-family: PixelFont; font-size: 18px;
  padding: 10px;
  box-sizing: border-box;
}

.responsive-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}


.sidebar-left.windows-box { width: 230px; }
.sidebar-right.windows-box { width: 230px; }


.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 10px;
}

.nav-links a {
  display: block;
  color: #cc7197;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover {
  color: #8c5f97;
}

a { color: #e74452; text-decoration: none; font-family: PixelFont; font-size: large;}
a:hover { color: #8c5f97; text-decoration: underline; }


.content-gifs {
  display: grid;
  justify-items: center;
  align-items: center;
  padding-left: 26px;
}

.content-stamps {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 0px;
}

.content-stamps img:hover {
  transform: scale(1.1); 
}

.content-stamps img:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px #b3a5d8);
}

.content-gifs img:hover {
  transform: scale(1.1); 
}

.content-gifs img:hover {
  transform: scale(1.3);
  filter: drop-shadow(0 0 6px #b3a5d8);
}


.divider {
  height: 60px;
  background-image: url("https://peachyvoid.com/graphics/strbrydvdr.webp");
  background-repeat: no-repeat;
  background-position: center;
  margin: 20px 0;

}

.graphics-category {
    display: none;
}

.graphics-category.active {
    display: block;
}




@media (max-width: 1200px) {
  .floating-image { display: none; }
  .date-time { display: none; }
}