/* なんJゲーム部風 — index.css */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: Helvetica, Verdana, "Hiragino Sans", "Meiryo", sans-serif;
  background: #f0f4f8;
  color: #333;
  font-size: 14px;
  line-height: 1.7;
}
.site-header {
  background: #0088e7;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  padding: 14px 20px;
}
.site-header h1 { font-size: 22px; font-weight: bold; color: #fff; }
.site-header p  { font-size: 12px; color: #b0d8f7; margin-top: 2px; }
.container { max-width: 900px; margin: 0 auto; padding: 14px 10px; }
.updated { text-align: right; font-size: 0.78rem; color: #888; padding: 4px 0 8px; }
.thread-list { list-style: none; background: #fff; border: 1px solid #ddd; border-radius: 2px; }
.thread-item { border-bottom: 1px solid #efefef; }
.thread-item:last-child { border-bottom: none; }
.thread-item > a {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 20px 22px; text-decoration: none; color: #333;
}
.thread-item > a:hover { background: #edf8ff; }
.thread-title {
  width: 100%; font-size: 16px; font-weight: bold; line-height: 1.9;
  border-left: 4px solid #0088e7; padding-left: 8px;
}
.thread-date { font-size: 10.5px; color: #888; white-space: nowrap; align-self: flex-end; margin-top: 4px; }
.thread-tags { padding: 2px 14px 8px; }
.thread-tag {
  display: inline-block; padding: 2px 8px;
  background: #edf8ff; color: #0088e7; border: 1px solid #6fb9ed;
  border-radius: 3px; font-size: 0.78rem; text-decoration: none;
  margin-right: 4px; margin-bottom: 2px;
}
.thread-tag:hover { background: #0088e7; color: #fff; border-color: #0088e7; }
.tag-cloud { margin-top: 24px; border-top: 3px solid #0088e7; padding-top: 14px; }
.tag-cloud-label {
  font-size: 14px; font-weight: bold; color: #333;
  border-left: 5px solid #0088e7; padding-left: 8px; margin-bottom: 10px;
}
.tag-cloud-item {
  display: inline-block; padding: 3px 10px;
  background: #fff; border: 1px solid #ddd; border-radius: 3px;
  font-size: 0.82rem; text-decoration: none; color: #333; margin: 2px;
}
.tag-cloud-item:hover { background: #edf8ff; border-color: #6fb9ed; }
.tag-count { font-size: 0.75rem; color: #888; margin-left: 3px; }
.no-articles { padding: 24px; text-align: center; color: #888; }
.pagination {
  display: flex; justify-content: space-between; align-items: stretch;
  padding: 16px 0; margin-top: 12px; gap: 10px;
}
.page-card {
  display: flex; flex-direction: column; justify-content: center;
  flex: 1; padding: 10px 16px; border: 1px solid #0088e7;
  border-radius: 6px; background: #edf8ff; text-decoration: none; color: #333;
}
.page-card:hover { background: #0088e7; color: #fff; }
.page-empty { flex: 1; }
.page-direction { font-size: 0.85rem; font-weight: bold; }
.page-label { font-size: 0.72rem; color: #999; margin-top: 3px; }
.page-next { text-align: right; }
.page-info { flex: 0 0 auto; align-self: center; color: #888; font-size: 0.82rem; white-space: nowrap; }