
/* === NOBUNAGA — Dark Terminal Theme === */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #0f0f0f;
  color: #e0e0e0;
  font-family: 'IBM Plex Mono', 'Courier New', monospace;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid #222;
  margin-bottom: 2rem;
}
.logo {
  color: #1cbc1c;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-links { display: flex; gap: 1.5rem; }
.nav-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #1cbc1c; }

/* Hero */
.ascii-art {
  font-size: 0.6rem;
  color: #1cbc1c;
  text-align: center;
  margin-bottom: 1.5rem;
  overflow-x: auto;
  white-space: pre;
}
.tagline {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
.subtitle {
  color: #888;
  text-align: center;
  margin-bottom: 2rem;
}
.cta-btn {
  display: block;
  width: fit-content;
  margin: 0 auto 3rem;
  padding: 0.8rem 2rem;
  background: #1cbc1c;
  color: #0f0f0f;
  text-decoration: none;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-btn:hover { background: #2ee22e; }

/* Green accent */
.green { color: #1cbc1c; }
a.green { text-decoration: none; }
a.green:hover { text-decoration: underline; }

/* Articles list */
.articles { margin-bottom: 3rem; }
.articles h2 {
  font-size: 1.1rem;
  color: #888;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #222;
}
.article-list { display: flex; flex-direction: column; }
.article-row {
  display: flex;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #1a1a1a;
  text-decoration: none;
  color: #e0e0e0;
  transition: background 0.2s;
  align-items: baseline;
}
.article-row:hover {
  background: #1a1a1a;
  padding-left: 0.5rem;
}
.article-date {
  color: #555;
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 6rem;
}
.article-title {
  color: #1cbc1c;
  font-size: 0.95rem;
}

/* Ad placeholder */
.ad-slot {
  margin: 2rem 0;
  text-align: center;
  min-height: 90px;
  border: 1px dashed #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-placeholder {
  color: #555;
  text-decoration: none;
  font-size: 0.8rem;
}

/* Hunt page */
.hunt-card {
  border: 1px solid #1cbc1c;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.hunt-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #1cbc1c;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hunt-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1a1a1a;
}
.hunt-row .label { color: #888; }
.hunt-row .value { color: #e0e0e0; text-align: right; }
.verify-box {
  margin-top: 1rem;
  padding: 1rem;
  background: #1a1a1a;
  border-left: 3px solid #1cbc1c;
  font-size: 0.9rem;
}

/* Steps */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.5rem 0; }
.step { padding: 1rem; border-left: 3px solid #1cbc1c; }
.step-num { color: #1cbc1c; font-size: 2rem; font-weight: 700; }
.step h3 { margin: 0.5rem 0; font-size: 1rem; }
.step p { color: #aaa; font-size: 0.9rem; }

/* Wallet grid */
.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.wallet-card {
  display: block;
  padding: 1rem;
  border: 1px solid #333;
  text-decoration: none;
  color: #e0e0e0;
  transition: border-color 0.2s;
}
.wallet-card:hover { border-color: #1cbc1c; }
.wallet-name { display: block; font-weight: 700; color: #1cbc1c; }
.wallet-desc { display: block; font-size: 0.8rem; color: #888; margin-top: 0.3rem; }
.dev-note {
  color: #888;
  font-size: 0.85rem;
  margin-top: 1rem;
}
.dev-note code {
  background: #1a1a1a;
  padding: 0.2rem 0.5rem;
  color: #1cbc1c;
}

/* FAQ */
details {
  border-bottom: 1px solid #222;
  padding: 1rem 0;
}
summary {
  cursor: pointer;
  font-weight: 700;
  color: #e0e0e0;
  list-style: none;
}
summary::before {
  content: '▸ ';
  color: #1cbc1c;
}
details[open] summary::before {
  content: '▾ ';
}
details p {
  margin-top: 0.8rem;
  color: #aaa;
  font-size: 0.9rem;
}

/* Article page */
.article-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222;
}
.article-header h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.article-header .meta {
  color: #555;
  font-size: 0.85rem;
}
.article-body h2 {
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
  color: #1cbc1c;
}
.article-body p {
  margin-bottom: 1rem;
  color: #ccc;
}
.article-body ul, .article-body ol {
  margin: 1rem 0 1rem 1.5rem;
  color: #ccc;
}
.article-body li {
  margin-bottom: 0.5rem;
}
.article-body blockquote {
  border-left: 3px solid #1cbc1c;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: #aaa;
  background: #1a1a1a;
}
.article-body code {
  background: #1a1a1a;
  padding: 0.2rem 0.5rem;
  color: #1cbc1c;
  font-size: 0.9rem;
}
.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: #1cbc1c;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }

/* Footer */
footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #222;
  text-align: center;
  color: #555;
  font-size: 0.85rem;
}
footer p { margin-bottom: 0.5rem; }
.copy { font-size: 0.75rem; margin-top: 1rem; }

/* Responsive */
@media (max-width: 600px) {
  .container { padding: 1rem; }
  .tagline { font-size: 1.1rem; }
  .ascii-art { font-size: 0.4rem; }
  .article-row { flex-direction: column; gap: 0.2rem; }
  .article-date { width: auto; }
  .hunt-row { flex-direction: column; gap: 0.2rem; }
  .hunt-row .value { text-align: left; }
  nav { flex-direction: column; gap: 0.5rem; }
}
