/* ========== Base ========== */
.adict-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px 14px 30px;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
}

.adict-muted { color: #666; }
.adict-title { font-size: 22px; margin: 0 0 10px; }

/* ========== Card ========== */
.adict-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  overflow: hidden;
}

.adict-card__body {
  padding: 16px;
}

/* ========== Note ========== */
.adict-note {
  max-width: 760px;
  margin: 0 auto 12px;
  padding: 12px 14px;
  background: #f6fbff;
  border: 1px solid #d7ecff;
  border-radius: 12px;
  color: #1f4f7a;
}

/* ========== Filters ========== */
.adict-filters {
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 14px;
  padding: 12px;
}

.adict-filters__label {
  font-weight: 700;
  font-size: 13px;
  color: #555;
  margin-bottom: 8px;
}

/* Chips */
.adict-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.adict-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  color: #333;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  line-height: 1;
}

.adict-chip.is-active {
  background: #e9f3ff;
  border-color: #b8d8ff;
  color: #0b4a8b;
}

/* Danger buttons */
.adict-danger {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.adict-danger__btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #dcdcdc;
  background: #fafafa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}

.adict-danger__btn.is-active {
  background: #333;
  color: #fff;
  border-color: #333;
}

/* Search */
.adict-search {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.adict-search__input {
  flex: 1;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 16px;
  outline: none;
}

.adict-search__btn {
  border: 1px solid #dcdcdc;
  background: #f3f3f3;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
}

/* ========== Results ========== */
.adict-results {
  display: grid;
  gap: 10px;
}

.adict-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #efefef;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
}

.adict-item__kana {
  font-size: 13px;
  color: #666;
  margin-bottom: 4px;
}

.adict-item__title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}

.adict-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.adict-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f5f6f7;
  border: 1px solid #e6e6e6;
  font-size: 13px;
  color: #333;
}

.adict-item__danger {
  font-weight: 800;
  color: #444;
}

.adict-item__danger .adict-danger-num {
  font-size: 22px;
  margin-left: 6px;
}

.adict-item__danger.is-high {
  color: #c62828;
}

.adict-empty {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 14px;
  padding: 14px;
  color: #666;
}

/* Pagination */
.adict-pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
}

.adict-page {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  background: #fff;
  font-weight: 700;
}

.adict-page.is-active {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ========== Single detail ========== */
.adict-detail {
  max-width: 760px;
  margin: 0 auto;
  padding: 14px;
}

.adict-section {
  margin-top: 14px;
}

.adict-section__title {
  font-size: 14px;
  color: #666;
  font-weight: 800;
  margin-bottom: 8px;
}

.adict-detail__title {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 6px;
}

.adict-detail__kana {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.adict-danger-big {
  text-align: center;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.1;
  margin-top: 8px;
  color: #333;
}

.adict-danger-big.is-high {
  color: #c62828;
}

.adict-btn {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #dcdcdc;
  background: #f3f3f3;
  text-decoration: none;
  color: #333;
  font-weight: 700;
}