/* ============================================================
   SITHEAN — stamps.css
   Styles for stamps.html — the stamp archive page.
============================================================ */

/* ---- Section header panel ---- */
.sectionPanel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #440066;
  border-left: 4px solid #7a00aa;
  padding: 10px 16px;
  margin: 22px 0 14px 0;
}

.sectionPanel h2 {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #d4c8ff;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #aa66ff;
}

.countBadge {
  display: inline-block;
  background: rgba(122, 0, 170, 0.45);
  border: 1px solid #9900cc;
  color: #cc99ff;
  font-size: 10px;
  letter-spacing: 1.5px;
  padding: 2px 10px;
  text-shadow: 0 0 6px #cc66ff;
}

/* ---- Flavor intro block ---- */
.stampIntro {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid #330044;
  border-left: 3px solid #5500aa;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.stampIntro p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.9;
  color: #9988bb;
}

.stampIntro p + p {
  margin-top: 10px;
}

/* ---- Stamp grid ---- */
.stampsGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
  align-items: flex-start;
}

.stampsGrid img {
  border: 1px solid #330044;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s;
  image-rendering: pixelated;
  display: block;
}

.stampsGrid img:hover {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.25) drop-shadow(0 0 6px #cc66ff) drop-shadow(0 0 12px #9900cc);
  border-color: #9900cc;
}

/* ---- Recently added label ---- */
.recentLabel {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  color: #33ff88;
  background: rgba(0, 60, 30, 0.3);
  border: 1px solid #00aa55;
  padding: 2px 8px;
  margin-bottom: 12px;
  text-shadow: 0 0 6px #33ff88;
}

/* ---- Invite / call-to-action block ---- */
.stampInvite {
  background: rgba(0, 0, 0, 0.42);
  border: 1px dashed #440066;
  padding: 18px 20px;
  margin-top: 22px;
  text-align: center;
}

.stampInvite .inviteGlyph {
  display: block;
  font-size: 28px;
  color: #7a00aa;
  margin-bottom: 10px;
  text-shadow: 0 0 10px #9900cc;
}

.stampInvite p {
  font-size: 12px;
  color: #9988bb;
  margin: 0;
  line-height: 1.8;
}

.stampInvite a {
  color: #cc99ff;
}

.stampInvite a:hover {
  color: #ff66ff;
  text-shadow: 0 0 8px #ff66ff;
}

/* ---- Coming soon block ---- */
.comingSoon {
  text-align: center;
  padding: 36px 20px;
  color: #5a4a7a;
  font-size: 13px;
  letter-spacing: 2px;
  border: 1px dashed #440066;
}

.comingSoon .bigGlyph {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}
