/* ===== Retro 2000s Glitter Shrine CSS ===== */

/* Background + Font */
body {
  background: url("https://sadgrl.online/images/tile/stars.gif") repeat;
  font-family: "Comic Sans MS", cursive, sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  cursor: url("https://cur.cursors-4u.net/cursors/cur-9/cur817.cur"), auto;
}

/* Main Container */
.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  border: 4px dotted #ff66cc;
  border-radius: 12px;
  box-shadow: 0 0 20px #ff99ff;
}

/* Headings */
h1, h2, h3 {
  font-family: "Papyrus", "Comic Sans MS", cursive;
  color: #ffccff;
  text-align: center;
  text-shadow: 2px 2px 5px #ff00ff;
  margin: 10px 0;
}

/* Links */
a {
  color: #66ffff;
  text-decoration: underline wavy #ff66ff;
  transition: 0.2s;
}
a:hover {
  color: #ff66cc;
  text-shadow: 0 0 8px #fff, 0 0 12px #ff66ff;
}

/* Navigation */
nav {
  text-align: center;
  margin: 15px 0;
}
nav a {
  margin: 0 8px;
  padding: 4px 10px;
  background: #000;
  border: 2px solid #ff66cc;
  border-radius: 6px;
}
nav a:hover {
  background: #330033;
}

/* Shrine Boxes */
.shrine {
  margin: 20px 0;
  padding: 10px;
  border: 3px ridge #ff99ff;
  background: url("https://sadgrl.online/images/tile/glitter.gif");
  color: #fff;
}

/* Glitter Dividers */
.divider {
  text-align: center;
  margin: 20px 0;
}
.divider img {
  max-width: 100%;
  height: auto;
}
.spin {
  display: inline-block;
  animation: spin 6s linear infinite;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Buttons (88x31 style) */
a img {
  border: 2px solid #ff66cc;
  border-radius: 4px;
  box-shadow: 0 0 6px #ff66ff;
  margin: 5px;
  transition: transform 0.3s ease;
}
a img:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 0 12px #ff99ff;
}

/* Footer */
footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.8em;
  color: #ffccff;
}
