/* --- Body & Background --- */
body {
  margin: 0;
  padding: 0;
  font: 17px 'lato', courier, tahoma;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px #bbb;
  cursor: url('https://peachyvoid.com/cur934.cur'), auto;
  cursor: ur[](https://cur.cursors-4u.net/cursors/cur-10/cur938.ani), ur[](https://cur.cursors-4u.net/cursors/cur-10/cur938.gif), auto !important;
  background: url("https://peachyvoid.com/credits/stars.gif") repeat;
  background-color: #352b20;
}

a:hover { cursor: pointer; }

/* --- Page wrapper --- */
.page-wrapper {
  display: flex;
  min-height: 100vh;
  overflow: auto;
  justify-content: center;
}

/* --- Content wrapper (lace) --- */
.content {
  flex: 1;
  padding: 60px;
  max-width: 2200px;
  position: relative;
  z-index: 0;
}

/* Lace header */
.content::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background: ur[](https://peachyvoid.com/lace.png) repeat-x center top;
  background-size: 659px auto;
  background-position: center -14px;
  z-index: 9999;
  pointer-events: none;
}

#header1 {
  text-align: center;
  margin-bottom: 20px;
}

/* --- Boxes container --- */
.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 Styling */
.windows-box {
  background-color: #ebebeb;
  border: 2px solid #000000;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  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 #000000;
  padding: 2px 4px;
  color: #000000;
  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;
  background-color: #000000;
  border: 1px solid #dadada;
  border-right: 1px solid #808080;
  border-bottom: 1px solid #808080;
  text-align: center;
  line-height: 12px;
  color: #ffffff;
  font-size: 10px;
  cursor: default;
}

.button.minimize { background-color: #986aa7; }
.button.maximize { background-color: #854bac; }
.button.close { background-color: #8d2a60; }

.windows-box .content-area {
  flex: 1;
  padding: 10px;
  background-color: #706a6c;
  overflow: auto;
}

/* Specific styles */
.sidebar-left.windows-box { width: 230px; }
.main.windows-box { width: 580px; }
.new-box.windows-box { width: 580px; }
.sidebar-right.windows-box { width: 230px; }

.main-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Navigation */
.nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-top: 10px;
}

.nav-links a {
  display: block;
  color: #e2d3c3;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.nav-links a:hover { color: #8c5f97; }

a { color: #ffffff; text-decoration: none; }
a:hover { color: #8c5f97; text-decoration: underline; }

/* GIF Grid */
.content-gifs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  justify-items: center;
  align-items: center;
}

.content-gifs img {
  max-width: 85px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Floating image */
.floating-image {
  position: fixed;
  top: 75px;
  right: 625px;
  z-index: 1000;
  width: 150px;
  border: 2px solid #000000;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  padding: 5px;
  object-fit: contain;
}

/* Date and time */
.date-time {
  position: fixed;
  top: 260px;
  right: 60px;
  z-index: 1001;
  font-size: 12px;
  color: #000000;
  background-color: #ebebeb;
  padding: 5px;
  border: 1px solid #808080;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
}

/* Responsive */
@media (max-width: 1200px) {
  .floating-image { display: none; }
  .date-time { display: none; }
}