/* ================================================================
   about.css — About page styles
   Linked from about.html
================================================================ */

/* ── section panels ─────────────────────────────────── */
.aPanel {
  background: rgba(0,0,0,0.45);
  border: 1px solid #440066;
  border-top: 2px solid #7a00aa;
  margin-bottom: 20px;
}
.aPanelHead {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-bottom: 1px solid #330044;
  background: rgba(60,0,80,0.3);
}
.aPanelHead .aPanelGlyph {
  color: #9944cc;
  font-size: 10px;
}
.aPanelHead .aPanelLabel {
  font-size: 9px;
  color: #9966cc;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}
.aPanelBody {
  padding: 14px 16px;
}

/* ── ident / stat rows ──────────────────────────────── */
.identTable {
  width: 100%;
  border-collapse: collapse;
}
.identTable tr + tr td {
  border-top: 1px solid #1e002e;
}
.identTable td {
  padding: 6px 0;
  vertical-align: top;
}
.identTable td.identKey {
  font-size: 9px;
  color: #6644aa;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 18px;
  width: 1%;
}
.identTable td.identVal {
  font-size: 12px;
  color: #c4b8e8;
  line-height: 1.6;
}
.identTable td.identVal em {
  color: #9977cc;
  font-style: normal;
}

/* ── favorites grid ─────────────────────────────────── */
.favGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.favCard {
  background: rgba(0,0,0,0.4);
  border: 1px solid #3a0055;
  border-top: 2px solid #6600aa;
  padding: 11px 13px;
  transition: border-color 0.2s, background 0.2s;
}
.favCard:hover {
  border-color: #8800cc;
  background: rgba(30,0,45,0.6);
}
.favCat {
  font-size: 8px;
  color: #9966cc;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a0040;
}
.favCard ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.favCard ul li {
  font-size: 11px;
  color: #c4b8e8;
  padding-left: 12px;
  position: relative;
  line-height: 1.4;
}
.favCard ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: #8833cc;
}
.favCard ul li .sub {
  font-size: 9px;
  color: #6644aa;
  margin-left: 5px;
}

/* ── screenshot panel ───────────────────────────────── */
.screenshotPanel {
  border: 1px solid #330044;
  background: #000;
  position: relative;
  margin-bottom: 20px;
}
.screenshotPanel img {
  width: 100%;
  display: block;
  opacity: 0.92;
}
.screenshotPanel .screenshotBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background: rgba(40,0,55,0.9);
  border-top: 1px solid #330044;
}
.screenshotPanel .screenshotBar span {
  font-size: 8px;
  color: #6644aa;
  letter-spacing: 1.5px;
}
.screenshotPanel .screenshotBar .screenshotDot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7a00aa;
  box-shadow: 0 0 4px #9922cc;
}

/* ── log entry (prose) ──────────────────────────────── */
.logEntry {
  font-size: 12px;
  color: #a899cc;
  line-height: 1.9;
  border-left: 2px solid #440066;
  padding-left: 14px;
  margin: 0;
}
.logEntry + .logEntry {
  margin-top: 12px;
}

/* ── status / right now ─────────────────────────────── */
.statusLine {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.statusDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #33ff88;
  box-shadow: 0 0 6px #33ff88;
  flex-shrink: 0;
  animation: sDotPulse 2s ease-in-out infinite;
}
@keyframes sDotPulse {
  0%,100% { opacity: 1; box-shadow: 0 0 6px #33ff88; }
  50%      { opacity: 0.4; box-shadow: 0 0 2px #33ff88; }
}
.statusDotLabel {
  font-size: 9px;
  color: #33ff88;
  letter-spacing: 2px;
}
.tagRow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.aPanelBody--flush { padding: 0; }
