@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Fredoka', sans-serif;
  background: url('https://zavieracomplains.neocities.org/watchmeshine.png') repeat;
  background-size: 25%;
  color: #4b2e10;
  text-align: center;
  cursor: url('https://www.cursors-4u.com/cursor/2023/03/04/sparkle-glitter.cur'), auto;
}
/* Base link styling */
a {
  font-family: 'Fredoka', sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
  color: #ff5678;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-bottom: 2px dashed #ffae43;
  background-color: #fff7d1;
  border-radius: 6px;
  box-shadow: 2px 2px 0 #ffc966;
  transition: all 0.3s ease;
}

/* Hover effect */
a:hover {
  color: #d4426b;
  background-color: #ffe9c5;
  border-bottom: 2px dashed #d4426b;
  box-shadow: 4px 4px 0 #ffae43;
  transform: translateY(-2px);
}

/* Visited links */
a:visited {
  color: #6b4b9c;
  border-bottom: 2px dashed #a86c3a;
}

/* Optional sparkle cursor */
body {
  cursor: url('https://www.cursors-4u.com/cursor/2023/03/04/sparkle-glitter.cur'), auto;
}

.shelf-wrapper {
  max-width: 800px;
  position: relative;
  margin: 2rem auto;
  padding: 2rem;
  background-color: rgba(255, 250, 230, 0.85);
  border: 6px double #ffae43;
  box-shadow: 0 0 12px #ffc966;
  border-radius: 12px;
  position: relative;
  z-index: 2;
}
.corner-image {
  position: absolute;
  bottom: -36px;
  right: -36px;
  z-index: 5;
}

.corner-image img {
  height: auto;
  border-radius: 12px;
}


header h1 {
  font-size: 2rem;
  color: #ff5678;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px #ffe9c5;
}

.subtitle {
  font-size: 0.9rem;
  color: #a86c3a;
  margin-bottom: 2rem;
}

.shelf-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.shelf-buttons a img {
  border: 4px dashed #ffae43;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #ffc966;
  transition: transform 0.3s ease;
}

.shelf-buttons a img:hover {
  transform: translateY(-6px);
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #6b4b9c;
  font-family: monospace;
}

/* Optional sparkle overlay */
.sparkle-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('https://zavieracomplains.neocities.org/sparkle.gif') repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}
