/* ═══════════════════════════════════════════════════════════════
   W3NN COMMAND HUB — Contributing Guide Styles
   ═══════════════════════════════════════════════════════════════ */

/* ─── CONTAINER ─── */
.contributing-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px 100px;
  z-index: 2;
  position: relative;
}

/* ─── GRID LAYOUT ─── */
.contributing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ─── CARDS ─── */
.contrib-card {
  background: rgba(10, 15, 30, 0.45);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.contrib-card:hover {
  transform: translateY(-2px);
  border-color: rgba(157, 111, 255, 0.3);
  background: rgba(15, 22, 45, 0.55);
  box-shadow: 0 10px 30px rgba(157, 111, 255, 0.1);
}

.contrib-card--wide {
  grid-column: 1 / -1;
}

body.theme-minecraft .contrib-card {
  background: #3c3c3c;
  border: 3px solid #000;
  border-radius: 0;
  box-shadow: inset -2px -2px 0px #222, inset 2px 2px 0px #666;
}

body.theme-minecraft .contrib-card:hover {
  background: #4a4a4a;
  transform: none;
  box-shadow: none;
}

/* ─── CARD HEADER ─── */
.card-header {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
}

body.theme-minecraft .card-header {
  border-bottom: 2px solid #000;
}

.card-title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--diamond);
  letter-spacing: 0.02em;
}

body.theme-minecraft .card-title {
  font-family: 'MinecraftRegular', monospace;
  color: #ffff55;
  font-size: 14px;
}

/* ─── LISTS & TEXT ─── */
.guide-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guide-list li {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
}

body.theme-minecraft .guide-list li {
  font-family: 'MinecraftRegular', monospace;
  color: #dddddd;
  font-size: 11px;
}

.guide-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--arcane);
  font-size: 12px;
}

body.theme-minecraft .guide-list li::before {
  content: "▶";
  color: #55ff55;
  font-size: 9px;
  top: 1px;
}

/* ─── CODE BLOCKS ─── */
.code-box {
  background: rgba(5, 7, 15, 0.6);
  border: 1px solid var(--border-light);
  border-radius: var(--r-sm);
  padding: 14px;
  overflow-x: auto;
}

body.theme-minecraft .code-box {
  background: #141414;
  border: 2px solid #000;
  border-radius: 0;
}

.code-box pre {
  margin: 0;
}

.code-box code {
  font-family: var(--font-mono);
  font-size: 13px;
  color: #a6b0cf;
  line-height: 1.5;
}

body.theme-minecraft .code-box code {
  font-family: 'MinecraftRegular', monospace;
  color: #55ffff;
  font-size: 11px;
}
