.nrw-root {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: #0f1115;
  color: #e6e6e6;
}
.nrw-root .nrw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #2a2f3a;
  margin-bottom: 12px;
}
.nrw-root .nrw-title {
  font-weight: 700;
  font-size: 18px;
  color: #e6f2ff;
  margin: 0;
}
.nrw-root .nrw-meta {
  font-size: 12px;
}
.nrw-root .nrw-rss {
  color: #8fb6ff;
  text-decoration: none;
}
.nrw-root .nrw-rss:hover {
  text-decoration: underline;
}
.nrw-root .nrw-status {
  padding: 8px 0;
  font-size: 13px;
  color: #9aa3b2;
  text-align: center;
}
.nrw-root .nrw-error {
  padding: 16px;
  background: #1a1f2a;
  border: 1px solid #3a4252;
  border-radius: 8px;
  color: #e6e6e6;
  font-size: 13px;
  line-height: 1.5;
  margin: 12px 0;
}
.nrw-root .nrw-error-title {
  font-weight: 700;
  color: #ff6b6b;
  margin-bottom: 8px;
}
.nrw-root .nrw-error-hint {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #2a2f3a;
  font-size: 12px;
  color: #9aa3b2;
}
.nrw-root .nrw-error-code {
  font-family: monospace;
  background: #0f1115;
  padding: 2px 6px;
  border-radius: 4px;
  color: #8fb6ff;
}
.nrw-root .nrw-list {
  margin: 0;
  padding: 0;
}
.nrw-root .nrw-card {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #2a2f3a;
  align-items: flex-start;
}
.nrw-root .nrw-card:last-child {
  border-bottom: none;
}
.nrw-root .nrw-thumb {
  width: 120px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #2a2f3a;
  background: #111623;
}
.nrw-root .nrw-content {
  flex: 1;
  min-width: 0;
}
.nrw-root .nrw-titlelink {
  display: block;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  color: #e6f2ff;
  text-decoration: none;
  margin-bottom: 6px;
}
.nrw-root .nrw-titlelink:hover {
  color: #8fb6ff;
  text-decoration: underline;
}
.nrw-root .nrw-metaRow {
  font-size: 11px;
  color: #9aa3b2;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nrw-root .nrw-date {
  color: #9aa3b2;
}
.nrw-root .nrw-badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #2a2f3a;
  color: #cfe2ff;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #3a4252;
}
.nrw-root .nrw-snippet {
  margin-top: 6px;
  line-height: 1.35;
  font-size: 12px;
  color: #cfe2ff;
  margin-bottom: 6px;
}
.nrw-root .nrw-more {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: #8fb6ff;
  text-decoration: none;
  white-space: nowrap;
}
.nrw-root .nrw-more:hover {
  text-decoration: underline;
}
.nrw-root .nrw-filters{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:10px 0 12px 0;
  border-bottom:1px solid #2a2f3a;
  margin-bottom:12px;
}
.nrw-root .nrw-filter{
  appearance:none;
  border:1px solid #2a2f3a;
  background:#111623;
  color:#cfe2ff;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  cursor:pointer;
  line-height:1;
  user-select:none;
}
.nrw-root .nrw-filter:hover{
  border-color:#3a4252;
  color:#e6f2ff;
}
.nrw-root .nrw-filter.is-active{
  background:#2a2f3a;
  border-color:#3a4252;
  color:#e6f2ff;
}
