/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #fff;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  padding: 12px 16px;
}

a { color: #00e; }
a:visited { color: #551a8b; }
a:hover { text-decoration: underline; }

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 12px 0;
}

/* Header */
.site-header {
  padding-bottom: 10px;
  border-bottom: 2px solid #000;
  margin-bottom: 12px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
}

.site-meta {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

.site-meta a { color: #555; }

/* Section headings */
.section-label {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin-bottom: 6px;
  margin-top: 16px;
  padding-bottom: 2px;
  border-bottom: 1px solid #ccc;
}

/* Game list */
.game-list {
  list-style: none;
  padding: 0;
}

.game-list li {
  padding: 4px 0;
  border-bottom: 1px dotted #ddd;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.game-list li:last-child {
  border-bottom: none;
}

.game-list a {
  font-size: 13px;
}

.game-desc {
  font-size: 12px;
  color: #555;
}

.game-tags {
  font-size: 11px;
  color: #888;
}

.section-note {
  font-size: 13px;
  color: #000;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  margin-top: 20px;
  padding-top: 8px;
  border-top: 1px solid #ccc;
  font-size: 12px;
  color: #555;
}

.site-footer a { color: #555; }
