@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

* { touch-action: manipulation; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #fdfdfd;
  font-family: 'DotGothic16', sans-serif;
  color: #222;
}

.hub {
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 32px 20px 60px;
}

.hub h1 {
  font-size: 24px;
  color: #0d9488;
  text-align: center;
  margin: 0 0 6px;
}

.hub .tagline {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin: 0 0 28px;
}

.site-header {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 2px;
  color: #0d9488;
  text-decoration: none;
  padding: 8px 0;
  margin-bottom: 14px;
  border-bottom: 2px solid #0d9488;
}
.site-header:active { background: #f0faf9; }

.category-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.category-card {
  display: block;
  text-decoration: none;
  color: #222;
  background: #fff;
  border: 2px solid #0d9488;
  border-radius: 14px;
  padding: 18px 18px;
}

.category-card .card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.category-card .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #0d9488;
}

.category-card .name {
  font-size: 17px;
  font-weight: bold;
  color: #0d9488;
}

.category-card .desc {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
}

.en {
  font-size: 10px;
  color: #888;
  letter-spacing: 1px;
  margin-left: 6px;
}

.category-card.disabled {
  border-color: #ddd;
  color: #bbb;
  background: #f5f5f5;
  pointer-events: none;
}

.category-card.disabled .name,
.category-card.disabled .icon,
.category-card.disabled .desc,
.category-card.disabled .en {
  color: #bbb;
}

.subcat-section { margin-bottom: 26px; }

.subcat-section h2 {
  font-size: 14px;
  color: #333;
  border-left: 5px solid #0d9488;
  padding-left: 10px;
  margin: 0 0 10px;
}

.game-pill-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.game-pill {
  display: block;
  text-decoration: none;
  border: 2px solid #0d9488;
  color: #0d9488;
  background: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 13px;
  text-align: left;
}

.game-pill.disabled {
  border-color: #ddd;
  color: #bbb;
  background: #f5f5f5;
}

.site-footer {
  text-align: center;
  font-size: 11px;
  color: #bbb;
  margin-top: 40px;
  letter-spacing: 2px;
}
