@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/Damask+Roll-26605836.webp") repeat;
  background-color: #352b20;
  background-attachment: fixed;
  background-position: center top;
}

.board-wrapper {
  position: relative;
  width: 1000px;   
  height: 800px;  
  margin: 0 auto;
  margin-top: 40px;
  background: url('https://peachyvoid.com/graphics/gildedcorkboarddith.png') no-repeat center;
  background-size: contain;
}

.pin {
  position: absolute;
  width: 140px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pin img {
  width: 80%;
  display: block;
  border: 4px solid #f5e6cc;
}

.sam {
  top: 150px;
  left: 150px;
  transform: rotate(-5deg);
}

.sam span {
  text-shadow: 0 0 6px #926117;
}

.nathanos {
  top: 270px;
  left: 340px;
  transform: rotate(3deg);
}

.nathanos span {
  text-shadow: 0 0 6px rgba(110, 255, 110, 0.541);
}

.tangerine {
  top: 150px;
  left: 540px;
  transform: rotate(-2deg);
}

.tangerine span {
  text-shadow: 0 0 6px rgba(78, 217, 241, 0.664);
}

.supernatural {
  top: 380px;
  left: 640px;
  transform: rotate(7deg);
}

.supernatural span {
  text-shadow: 0 0 6px rgba(48, 110, 48, 0.678);
}

.pin:hover {
  transform: scale(1.05) rotate(0deg);
  z-index: 10;
}

.pin span {
  display: block;
  margin-top: 6px;
  text-align: center;
  font-family: PixelFont; font-size: 18px;
  font-size: 17px;
  color: #000000;
  opacity: 0;
  transition: opacity 0.2s ease, all 0.3s ease;
}

.pin:hover span {
  opacity: 1;
}

.pin::before {
  content: '';
  position: absolute;
  top: -12px;      
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 30px;         
  height: 30px;
  background: url('https://peachyvoid.com/graphics/pushpin.png') no-repeat center;
  background-size: contain;
  pointer-events: none;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}


.back-button {
  position: fixed;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  z-index: 1000;
  transition: background 0.2s ease;
}

.back-button:hover {
  background: rgba(0, 0, 0, 0.8);
}