/* ── Max-width centering frame ── */
.frame {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ── Topbar ── */
.topbar {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(0,0,0,.40);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  margin-top: 14px;
  margin-bottom: 14px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  align-items: center;
}

.brand { display: flex; gap: 10px; align-items: baseline; }
.brand__link {
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}
.brand__link:hover { text-shadow: 0 0 6px var(--accent-soft); }

.topbar__meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── Shell: sidebar + main ── */
.shell {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 14px;
}
@media (max-width: 860px) {
  .shell { grid-template-columns: 1fr; }
  .topbar__inner { align-items: flex-start; }
}

/* ── Main panel ── */
.panel--main {
  position: relative;
  /* overflow hidden keeps stickers clipped to the panel */
  overflow: hidden;
  min-height: 200px;
}

/* ── About grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo { width: 100%; height: auto; border-radius: 10px; }
.about-caption { font-size: 0.88rem; opacity: 0.80; margin-top: 8px; }
.about-card { padding: 12px; border-radius: 10px; border: 1px solid var(--stroke); }
.about-note { margin-top: 18px; opacity: 0.88; font-size: 0.93rem; }

/* ── Footer ── */
.footer {
  border-radius: var(--radius);
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  margin-bottom: 14px;
}
.footer__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
}

/* ── Decorative pixel-art stickers ── */
/* All stickers: pixel-sharp, bottom-right corner of the panel */
.setzer, .beck, .cob, .gurren, .persona {
  position: absolute;
  bottom: 0;
  right: 0;
  image-rendering: pixelated;
  pointer-events: none;
  opacity: 0.92;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.50));
  /* hard cap — never wider than 30% of the panel */
  max-width: 30%;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* per-sticker tweaks for natural composition */
.setzer  { max-height: 170px; right: 16px; bottom: 8px; }
.beck    { max-height: 180px; right: 10px; bottom: 0;   }
.cob     {
  /* cob.jpg is an album cover — treat it as a small framed thumbnail */
  max-height: 140px;
  max-width:  140px;
  right: 16px;
  bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,.55);
  image-rendering: auto; /* photo, not pixel art */
  opacity: 0.88;
}
.gurren  { max-height: 180px; right: 10px; bottom: 0;   }
.persona { max-height: 200px; right: 10px; bottom: 0;   }
