/* ============================================================
   SITHEAN — buttons.css
   Styles for buttons.html — the 88x31 button wall page.
============================================================ */

/* ---- Intro block ---- */
.btnIntro {
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid #330044;
  border-left: 3px solid #5500aa;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.btnIntro p {
  font-size: 12px;
  line-height: 1.9;
  color: #9988bb;
  margin: 0;
}

.btnIntro p + p {
  margin-top: 10px;
}

/* ---- 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;
}

/* ---- Button wall grid ---- */
.btnWall {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
  align-items: flex-start;
}

.btnWall img,
.btnWall a img {
  width: 88px;
  height: 31px;
  object-fit: contain;
  border: 1px solid #330044;
  transition: transform 0.15s ease, filter 0.15s ease, border-color 0.15s;
  image-rendering: pixelated;
  display: block;
}

.btnWall img:hover,
.btnWall a:hover img {
  transform: translateY(-3px) scale(1.07);
  filter: brightness(1.3) drop-shadow(0 0 5px #cc66ff) drop-shadow(0 0 10px #9900cc);
  border-color: #9900cc;
}

/* ---- "Add my button" panel ---- */
.addButtonPanel {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #440066;
  border-top: 3px solid #33ff88;
  padding: 18px 20px;
  margin-top: 26px;
}

.addButtonPanel h2 {
  border: none;
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #33ff88;
  letter-spacing: 2px;
  text-shadow: 0 0 8px #33ff88;
}

.addButtonPanel p {
  font-size: 12px;
  color: #9988bb;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Preview of Zane's own button */
.myButtonPreview {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.myButtonPreview img {
  width: 88px;
  height: 31px;
  object-fit: contain;
  border: 1px solid #5500aa;
  image-rendering: pixelated;
  display: block;
}

/* Embed code block */
.embedCode {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #5500aa;
  padding: 12px 16px;
  font-family: 'OCR A Std', monospace;
  font-size: 11px;
  color: #cc99ff;
  letter-spacing: 0.5px;
  word-break: break-all;
  line-height: 1.7;
  position: relative;
}

.embedCode::before {
  content: 'EMBED CODE';
  display: block;
  font-size: 9px;
  color: #5500aa;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

/* ---- 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;
}
