* {
  box-sizing: border-box;
  cursor: url(https://cur.cursors-4u.net/cursors/cur-3/cur258.cur), auto !important;
}

body {
  margin: 0;
  background: #000;
  color: #000;
  font-family: serif;
  list-style-image: none;
  background-image: url(https://dixmor.neocities.org/blue-seamless.png);
}

@font-face {
  font-family: Trixie;
  src: url('https://dixmor.neocities.org/Trixie.otf');
}

.page {
  width: 1300px;
  margin: 80px auto;
  padding: 12px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2px;
}

.sidebar {
  background: #fff;
  padding: 14px;
  border: 5px inset #053792;
  height: fit-content;
  text-align: center;
}

.sidebar-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.sidebar h1 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.sidebar a.sidebarlinks {
  display: block;
  padding: 6px 8px;
  margin: 6px 0;
  font-family: serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  background: #e6e6e6;
  border: 2px outset #aaa;
  cursor: pointer;
}

.sidebar a.sidebarlinks:hover {
  background: #dcdcdc;
  border-style: inset;
}


.sidebar a.sidebarlinks.is-active {
  background:#1200ff;
  color: #fff;
  border: 2px inset #000;
}

.city {
  display: none;
}

.city.is-active {
  display: block;
}

.content {
  background: #fff;
  padding: 20px;
  display: grid;
  gap: 48px;
  border: 5px solid #053792;
}

.group {
  text-align: center;
}

.group h2 {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-align: center;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(425px, 1fr));
  gap: 18px;

}

.masonry-item {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  border-radius: 10px;
}

.masonry-item img {
  width: 100%;
  height: auto;

}

.masonry-item figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}


#bully .masonry {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  display: grid;
}

#bully .masonry-item {
  padding: 4px;
}

#bully .masonry-item img {
  min-width: 95%;
}

#bullworth .masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

#bullworth .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}

#bullworth h2 {
  text-align: center; /* keeps header centered */
}

.caption {
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
}

#manhunt h2 {
  font-family: 'Trixie';
}

#manhunt .masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 12px;
}

#manhunt .masonry-item {
  padding: 3px;
}

#manhunt .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  min-width: 94%;
}


#misc2 .masonry {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

#misc2 .masonry-item {
  padding: 3px;
}

#misc2 .masonry-item img {
  min-width: 96%;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  z-index: 9999;
  background-color: #45a3e2;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

#backToTop:hover {
  background-color: #005fa3;
}

