body {
  font-family: sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  background: #1a1a1a;
  color: #e0e0e0;
}

h1 { font-size: 2rem; color: #fff; }
p  { line-height: 1.6; color: #aaa; }
a  { color: #4da6ff; }

.media-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 16px;
}
.media-row > img {
  flex: 1;
  min-width: 0;
  border-radius: 8px;
  max-height: 400px;
  object-fit: contain;
}

/* Inline video */
.side-video {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #444;
  transition: border-color 0.2s;
  display: block;
  position: relative;
  margin-bottom: 12px;
  break-inside: avoid;
}
.side-video:hover {
  border-color: #4da6ff;
}
.side-video video {
  width: 100%;
  display: block;
  pointer-events: none;
}
.mute-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px;
  text-align: center;
  font-size: 0.75rem;
  color: #fff;
  background: rgba(0,0,0,0.6);
  transition: opacity 0.2s;
}
.side-video.unmuted .mute-hint {
  opacity: 0;
}

.gallery {
  columns: 3 200px;
  column-gap: 12px;
  margin-top: 16px;
}
.gallery img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #444;
  transition: border-color 0.2s;
  margin-bottom: 12px;
  display: block;
}
.gallery img:hover {
  border-color: #4da6ff;
}

.stats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
}

.stats img {
  width: 24px;
  height: 24px;
}

.stats .label {
  font-weight: 600;
  color: #ccc;
}

.stats .count {
  font-weight: 700;
  color: #4da6ff;
}
