/* ── EXTENDED BIO TABLE ── */
.bio-table {
  width: 100%;
  font-size: 12px;
  border-collapse: collapse;
}

.bio-table td {
  padding: 4px 6px;
  vertical-align: top;
  border-bottom: 1px dashed rgba(123,85,161,0.3);
}

.bio-table td:first-child {
  white-space: nowrap;
  font-size: 10px;
  opacity: 0.7;
  letter-spacing: 1px;
  width: 110px;
  font-family: 'MS Gothic', 'ms gothic', 'MS PGothic', monospace;
}

.bio-table td:last-child { line-height: 1.8; }
/* ── end bio table ── */

/* ── PROFILE PHOTO SPOT (no border) ── */
.profile-photo-spot {
  width: 100%;
}

.profile-photo-spot img {
  width: 100%;
  height: auto;
  display: block;
}
/* ── end photo spot ── */

/* ── MOOD BOX IMAGE ── */
.mood-box-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
/* ── end mood box image ── */


/* ── FUN FACT ── */
.fun-fact-box {
  text-align: center;
}

.fun-fact-text {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.3px;
  font-style: italic;
}
/* ── end fun fact ── */

/* ── BLINKIES ── */
.blinkies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blinkie-slot {
  width: 88px;
  height: 31px;
  border: 1px dashed rgba(123,85,161,0.5);
  background: #0a0010;
  box-shadow: inset 0 0 4px rgba(123,85,161,0.3);
}
/* ── end blinkies ── */

/* ── CALENDAR ── */
.calendar-frame-wrap {
  width: 158px;
  height: 191px;
  overflow: hidden;
  border: 1px solid var(--purple);
  background: #0a0010;
  box-shadow: inset -1px -1px var(--purple-dark), inset 1px 1px var(--purple-light);
  margin: 0 auto;
  filter: grayscale(1);
}

.calendar-frame {
  width: 215px;
  height: 260px;
  border: none;
  display: block;
  transform: scale(0.735);
  transform-origin: top left;
}
/* ── end calendar ── */

/* ── MY SHRINES ── */
.shrines-box {
  min-height: 90px;
}

.shrines-list {
  list-style: none;
  font-family: 'MS Gothic', 'ms gothic', 'MS PGothic', monospace;
  font-size: 11px;
  line-height: 2.2;
}

.shrines-list li {
  margin-bottom: 6px;
}

.shrines-list li:last-child {
  margin-bottom: 0;
}

.shrines-list li::before {
  content: "- ";
}

.shrines-list a {
  text-decoration: none;
  letter-spacing: 0.5px;
}

.shrines-list a:hover {
  color: #fff !important;
  text-decoration: underline;
}
/* ── end my shrines ── */

/* ── COMMENTS / TESTIMONIALS WALL ── */
.comments-wall {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.comment-entry {
  border: 1px solid rgba(123,85,161,0.4);
  background: #0a0010;
  padding: 8px 10px;
  box-shadow: inset -1px -1px var(--purple-dark), inset 1px 1px var(--purple-light);
}

.comment-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
  font-family: 'MS Gothic', 'ms gothic', 'MS PGothic', monospace;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.comment-name {
  color: var(--purple-light) !important;
  text-shadow: 0 0 5px var(--purple);
}

.comment-date {
  opacity: 0.6;
  font-size: 9px;
}

.comment-body {
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.3px;
}

.comment-form {
  border-top: 1px dashed var(--purple);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-form textarea {
  width: 100%;
  min-height: 60px;
  background: #0a0010;
  border: 1px solid var(--purple);
  color: var(--purple-light);
  font-family: 'Bitter', Georgia, serif;
  font-size: 12px;
  padding: 6px;
  resize: vertical;
}

.comment-form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-submit {
  background: #0d0618;
  border: 1px solid var(--purple);
  color: var(--purple);
  font-family: 'MS Gothic', 'ms gothic', 'MS PGothic', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.comment-submit:hover {
  background: var(--purple);
  color: #000;
}

.comment-form-note {
  font-size: 9px;
  opacity: 0.5;
  letter-spacing: 0.5px;
  font-family: 'MS Gothic', 'ms gothic', 'MS PGothic', monospace;
}
/* ── end comments wall ── */