/* ====== tiled star/sparkle bg via inline svg data url ====== */
body {
  margin: 0;
  padding: 16px;
  font-family: "Comic Sans MS", "Comic Sans", "Chalkboard SE", "Bradley Hand", "Comic Neue", cursive;
  color: #fff;
  background-color: #1a0033;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'><g fill='%23ff00cc'><circle cx='5' cy='5' r='1.2'/><circle cx='30' cy='12' r='0.8'/></g><g fill='%2300ffff'><circle cx='15' cy='25' r='0.8'/><circle cx='35' cy='35' r='1.2'/></g><g fill='%23ffff00'><circle cx='25' cy='32' r='0.6'/><circle cx='8' cy='18' r='0.6'/></g></svg>");
  background-attachment: fixed;
  overflow-x: hidden;
}

/* ====== wordmark ====== */
.wordmark {
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(48px, 9vw, 110px);
  text-align: center;
  letter-spacing: -2px;
  margin: 8px 0 0;
  background: linear-gradient(180deg,
    #fff 0%, #ffccff 25%, #ff00cc 50%, #9933ff 75%, #00ffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 2px #000;
  filter: drop-shadow(3px 3px 0 #000) drop-shadow(-1px -1px 0 #00ffff);
  transform: rotate(-2deg);
}
.wordmark a { color: inherit; text-decoration: none; }

.tagline {
  text-align: center;
  font-size: 18px;
  color: #ffff00;
  text-shadow: 2px 2px 0 #ff00cc, 4px 4px 0 #000;
  margin: 4px 0 8px;
}

/* ====== marquee ====== */
marquee {
  background: repeating-linear-gradient(
    90deg, #ff00cc 0 20px, #00ffff 20px 40px, #ffff00 40px 60px, #00ff00 60px 80px);
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 6px 0;
  border: 3px ridge #fff;
  margin-bottom: 10px;
  text-shadow: 1px 1px 0 #fff;
}

/* ====== nav ====== */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}
nav a {
  display: inline-block;
  background: linear-gradient(180deg, #ffccff 0%, #ff66cc 60%, #cc3399 100%);
  color: #2b0040;
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: 22px;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 10px 22px;
  border: 3px outset #ffffff;
  text-shadow: 1px 1px 0 #ffe6f5;
  box-shadow: 4px 4px 0 #000;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out;
}
nav a:hover, nav a:focus-visible {
  background: linear-gradient(180deg, #ccffff 0%, #00ccff 60%, #0099cc 100%);
  color: #001a33;
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
  border-style: inset;
  outline: none;
}

/* ====== hero (cats GIF + COMING SOON overlay) ====== */
.hero {
  background: #000;
  border: 4px ridge #ff00cc;
  text-align: center;
  padding: 12px;
  margin: 0 auto 18px;
  max-width: 900px;
  position: relative;
}
.hero-gif {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}
.hero-gif img {
  display: block;
  width: 100%;
  height: auto;
  border: 4px ridge #ffff00;
}
.hero-coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-4deg);
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: clamp(40px, 10vw, 96px);
  letter-spacing: 3px;
  line-height: 1;
  background: linear-gradient(180deg,
    #fff 0%, #ffccff 25%, #ff00cc 50%, #9933ff 75%, #00ffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 3px #000;
  filter: drop-shadow(4px 4px 0 #000) drop-shadow(0 0 14px #ff00cc);
  pointer-events: none;
  white-space: nowrap;
  animation: csbob 2.4s ease-in-out infinite;
}
@keyframes csbob {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) scale(1); }
  50%      { transform: translate(-50%, -52%) rotate(-4deg) scale(1.06); }
}
.hero h2 {
  font-family: "Impact", sans-serif;
  color: #00ffff;
  text-shadow: 2px 2px 0 #ff00cc, 4px 4px 0 #000;
  letter-spacing: 1px;
  margin: 10px 0 4px;
}
.hero p { color: #fff; margin: 4px 0 0; }

/* ====== shop page ====== */
.shop-title {
  text-align: center;
  font-family: "Impact", sans-serif;
  font-size: 36px;
  color: #00ffff;
  text-shadow: 3px 3px 0 #ff00cc, 6px 6px 0 #000;
  margin: 20px 0 10px;
}
.shop-intro {
  text-align: center;
  color: #ffff00;
  font-size: 16px;
  margin: 0 0 18px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}
.product {
  background: #ffccff;
  color: #000;
  border: 4px ridge #00ffff;
  padding: 8px;
  text-align: center;
  transition: transform 0.1s;
}
.product:hover {
  transform: rotate(-1deg) scale(1.03);
  border-color: #ffff00;
}
.product .img {
  width: 100%;
  aspect-ratio: 1/1;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Impact", sans-serif;
  font-size: 14px;
  border: 2px inset #fff;
  margin-bottom: 6px;
}
.product .name {
  font-weight: bold;
  color: #6600cc;
  margin: 2px 0;
}
.product .price {
  color: #ff0066;
  font-size: 22px;
  font-family: "Impact", sans-serif;
  margin: 2px 0;
}
.product .one-of-one {
  font-size: 11px;
  color: #009900;
  font-weight: bold;
}
.buy {
  display: inline-block;
  background: #ffff00;
  color: #000;
  text-decoration: none;
  padding: 6px 14px;
  margin-top: 6px;
  border: 3px outset #ff00cc;
  font-weight: bold;
  font-family: "Impact", sans-serif;
  letter-spacing: 1px;
}
.buy:hover {
  background: #ff00cc;
  color: #ffff00;
  border-style: inset;
}
.sold {
  background: #555;
  color: #aaa;
  border-color: #333;
  pointer-events: none;
  text-decoration: line-through;
}

/* ====== footer ====== */
footer {
  margin: 60px -16px 0;
  width: calc(100% + 32px);
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%);
  border-top: 4px ridge #ff00cc;
  padding: 36px 16px 28px;
  color: #ffe6f5;
  box-sizing: border-box;
  text-align: center;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-brand {
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #fff 0%, #ffccff 40%, #ff00cc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1.5px #000;
  margin: 0 0 14px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}
.footer-socials a {
  display: inline-block;
  background: linear-gradient(180deg, #ffccff 0%, #ff66cc 60%, #cc3399 100%);
  color: #2b0040;
  font-family: "Impact", "Haettenschweiler", sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 8px 20px;
  border: 3px outset #ffffff;
  text-shadow: 1px 1px 0 #ffe6f5;
  box-shadow: 3px 3px 0 #000;
  transition: transform 0.08s ease-out, box-shadow 0.08s ease-out;
}
.footer-socials a:hover, .footer-socials a:focus-visible {
  background: linear-gradient(180deg, #ccffff 0%, #00ccff 60%, #0099cc 100%);
  color: #001a33;
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #000;
  border-style: inset;
  outline: none;
}
.footer-meta {
  color: #ffccff;
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.footer-meta a {
  color: #00ffff;
  text-decoration: none;
}
.footer-meta a:hover { text-decoration: underline; }

/* ====== mp3 player (MySpace-y: dark, restrained, one accent) ====== */
.ss-player {
  position: fixed;
  bottom: 14px;
  right: 14px;
  z-index: 9999;
  width: 240px;
  background: #0d0014;
  border: 1px solid #ff00cc;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  color: #e6d4f0;
  font-family: "Tahoma", "Verdana", "Segoe UI", sans-serif;
  font-size: 11px;
}
.ss-player-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a0226;
  color: #ff66cc;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-bottom: 1px solid #3a1052;
}
.ss-min {
  background: transparent;
  color: #ff66cc;
  border: 1px solid #3a1052;
  font-family: inherit;
  font-weight: bold;
  width: 18px;
  height: 18px;
  line-height: 16px;
  padding: 0;
  cursor: pointer;
}
.ss-min:hover { background: #3a1052; color: #fff; }
.ss-player-body { padding: 10px; }
.ss-marquee {
  background: #07000a;
  border: 1px solid #3a1052;
  color: #e6d4f0;
  font-size: 11px;
  padding: 3px 0;
  margin-bottom: 8px;
}
.ss-marquee b { color: #ff66cc; font-weight: 600; }
.ss-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
}
.ss-play, .ss-stop {
  background: #1a0226;
  color: #e6d4f0;
  font-family: inherit;
  font-size: 11px;
  font-weight: bold;
  border: 1px solid #ff00cc;
  padding: 3px 10px;
  cursor: pointer;
}
.ss-play:hover, .ss-stop:hover { background: #2b0040; color: #fff; }
.ss-player.ss-playing .ss-play { background: #ff00cc; color: #07000a; }
.ss-vol-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #b08bc4;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: auto;
}
.ss-vol {
  width: 70px;
  accent-color: #ff00cc;
  cursor: pointer;
}
.ss-credit {
  font-size: 10px;
  color: #8a6a9f;
  text-align: center;
  margin: 0;
}
.ss-credit a { color: #ff66cc; text-decoration: none; }
.ss-credit a:hover { text-decoration: underline; }
.ss-player.ss-minimized .ss-player-body { display: none; }
.ss-player.ss-minimized { width: auto; }
.ss-player.ss-minimized .ss-player-bar { border-bottom: none; }
@media (max-width: 480px) {
  .ss-player {
    width: calc(100% - 24px);
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
}

/* ====== sparkle (decorative) ====== */
.sparkle::before, .sparkle::after {
  content: "✦";
  color: #ffff00;
  margin: 0 6px;
  display: inline-block;
  animation: spin 2s linear infinite;
  text-shadow: 0 0 6px #ff00cc;
}
@keyframes spin { to { transform: rotate(360deg); } }
