/* sites/bukangi/style.css - Official Neobrutalism Design System */
:root {
  --primary: #0284c7;
  --primary-light: #bae6fd;
  --secondary: #ffe600;
  --accent: #ff3366;
  --background: #fdfbf7;
  --surface: #ffffff;
  --surface-alt: #f4f4f0;
  --text: #000000;
  --text-muted: #475569;
  --border: #000000;
  --shadow: #000000;

  --font-display: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  --font-body: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  --font-mono: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;

  --border-width: 2px;
  --shadow-offset: 4px 4px 0px #000000;
  --shadow-offset-sm: 2px 2px 0px #000000;
  --shadow-offset-active: 1px 1px 0px #000000;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-pill: 9999px;
}

html, body, button, input, select, textarea {
  font-family: var(--font-body);
}

html, body {
  overflow-x: clip;
}

body {
  background-color: var(--background);
  color: var(--text);
  margin: 0;
  padding: 0;
  word-break: keep-all;
}

/* 1. Situation Ticker */
.situation-ticker {
  background: #000000;
  color: var(--secondary);
  border-bottom: var(--border-width) solid #000000;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  overflow: hidden;
}
.situation-ticker__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1380px;
  margin: 0 auto;
}
.situation-ticker__badge {
  background: var(--secondary);
  color: #000000;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.situation-ticker__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Layout Outer & Main Container */
.site-outer-layout {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 1440px;
  margin: 0 auto;
  gap: 28px;
  padding: 0 16px;
  position: relative;
}

.site-wrapper {
  max-width: 1040px;
  width: 100%;
  margin: 0;
  padding: 24px 0 64px 0;
  min-width: 0;
}

.main-layout {
  display: block;
}

.main-content {
  min-width: 0;
}

/* Dedicated Desktop Sticky Floating Wing Ad */
.desktop-floating-wing {
  width: 300px;
  flex-shrink: 0;
  position: relative;
}

.floating-ad-sticky-box {
  position: sticky;
  top: 24px;
  width: 300px;
  min-height: 600px;
}

@media (max-width: 1079px) {
  .site-outer-layout {
    display: block;
    padding: 0;
  }
  .site-wrapper {
    padding: 16px;
  }
  .desktop-floating-wing {
    display: none !important;
  }
  .ad-slot--mobile-only {
    display: block !important;
  }
}

@media (min-width: 1080px) {
  .desktop-floating-wing {
    display: block !important;
  }
  .ad-slot--mobile-only {
    display: none !important;
  }
}

/* 2. Hero Header */
.hero-header {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  margin-bottom: 24px;
}
.hero-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}
.brand-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.brand-entity {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  background: #000000;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  color: var(--text);
}
.hero-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #334155;
  max-width: 800px;
  margin-bottom: 24px;
}
.status-summary-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
  border-top: var(--border-width) solid #000000;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-weight: 800;
  font-size: 13px;
  border: var(--border-width) solid #000000;
  box-shadow: var(--shadow-offset-sm);
  border-radius: var(--radius-pill);
}
.status-pill--alert {
  background: var(--secondary);
  color: #000000;
}
.status-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

/* 3. Metrics Section */
.metrics-section {
  margin-bottom: 24px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.metric-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.metric-card__label {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.metric-card__value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}
.metric-card__sub {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* 4. Live Timer Clock */
.live-clock-section {
  margin-bottom: 24px;
}
.clock-card {
  background: #000000;
  color: #ffffff;
  border: var(--border-width) solid #000000;
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.clock-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.clock-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #94a3b8;
}
.live-indicator {
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}
.clock-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.clock-val {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: var(--secondary);
}
.clock-lbl {
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  margin-top: 4px;
}
.clock-sep {
  font-size: 32px;
  font-weight: 900;
  color: #475569;
  line-height: 1;
}

/* 5. Section Headers */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: var(--border-width) solid #000000;
}
.section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  margin: 0;
  color: var(--text);
}
.section-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  background: var(--surface-alt);
  color: #000000;
  border: var(--border-width) solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.section-badge--danger {
  background: var(--accent);
  color: #ffffff;
}

/* 6. Infographic Section */
.infographic-section {
  margin-bottom: 24px;
}
.infographic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 860px) {
  .infographic-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.info-box {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px;
}
.info-box__title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cbd5e1;
}
.sighting-visual-container {
  position: relative;
  width: 100%;
  border: var(--border-width) solid #000000;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f1f5f9;
}
.sighting-visual-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.sighting-visual-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.88);
  color: #ffe600;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
  border: 1.5px solid #ffe600;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  box-shadow: 2px 2px 0px #000000;
}
.map-caption {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  margin-top: 12px;
  background: var(--surface-alt);
  padding: 8px 12px;
  border-left: 3px solid #000000;
}

/* Biology Spec Table */
.spec-table {
  width: 100%;
  font-size: 14px;
}
.spec-table tr {
  border-bottom: 1px solid #e2e8f0;
}
.spec-table tr:last-child {
  border-bottom: none;
}
.spec-table th {
  text-align: left;
  padding: 10px 8px;
  font-weight: 800;
  color: #334155;
  width: 32%;
  vertical-align: top;
  background: #f8fafc;
}
.spec-table td {
  padding: 10px 8px;
  color: var(--text);
  line-height: 1.5;
  vertical-align: top;
}

/* 7. Timeline Stream */
.timeline-section {
  margin-bottom: 24px;
}
.timeline-stream {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline-item {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.timeline-item__badge {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 900;
  background: #f1f5f9;
  color: #000000;
  border: var(--border-width) solid #000000;
  box-shadow: 2px 2px 0px #000000;
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: fit-content;
}
.timeline-item__badge-sub {
  font-size: 11px;
  font-weight: 800;
  margin-top: 2px;
  display: block;
  text-align: center;
}
.timeline-item__badge--active {
  background: var(--secondary);
}
.timeline-item__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.timeline-item__title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.timeline-item__desc {
  font-size: 15px;
  line-height: 1.65;
  color: #334155;
  margin: 0;
}

/* 8. Media Analysis Section */
.media-section {
  margin-bottom: 24px;
}
.media-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.media-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px;
}
.media-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e2e8f0;
}
.media-card__outlet {
  font-weight: 800;
  color: var(--primary);
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #bae6fd;
}
.media-card__date {
  font-variant-numeric: tabular-nums;
}
.media-card__title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 10px 0;
  color: var(--text);
}
.media-card__summary {
  font-size: 14px;
  line-height: 1.65;
  color: #334155;
  margin: 0;
}
.media-card__action {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed #cbd5e1;
  display: flex;
  justify-content: flex-end;
}
.link-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: #000000;
  background: var(--surface-alt);
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.link-chip:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px #000000;
  background: var(--secondary);
}

/* 9. Online Community Pulse & Memes Section */
.community-section {
  margin-bottom: 24px;
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 680px) {
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.community-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.community-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.community-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  background: var(--surface-alt);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}
.community-badge--hot {
  background: var(--secondary);
  color: #000000;
}
.community-topic {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
}
.community-quote {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 14px 0;
  background: #f8fafc;
  padding: 12px 14px;
  border-left: 3px solid #000000;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.community-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px dashed #cbd5e1;
  padding-top: 8px;
}
.community-stats {
  font-weight: 700;
  color: #0284c7;
}
.community-card__action {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

/* 9.5. Transit & Location Guide Section */
.transit-section {
  margin-bottom: 24px;
}
.map-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 18px;
}
.map-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.map-address-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.map-address-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  background: var(--secondary);
  color: #000000;
  border: 1.5px solid #000000;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  box-shadow: 1.5px 1.5px 0px #000000;
}
.map-address-text {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
}
.map-action-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.map-iframe-container {
  width: 100%;
  height: 380px;
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #f1f5f9;
}
.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.transit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .transit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.transit-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.transit-card--highlight {
  grid-column: 1 / -1;
  background: #fffdf5;
  border: 2.5px solid #000000;
  box-shadow: 4px 4px 0px #000000;
}
.transit-card--full {
  grid-column: 1 / -1;
}
.transit-card__top {
  margin-bottom: 14px;
}
.transit-badge-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.transit-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border: 1.5px solid #000000;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  box-shadow: 1.5px 1.5px 0px #000000;
}
.transit-badge--fast {
  background: var(--secondary);
  color: #000000;
}
.transit-badge--metro {
  background: #ffedd5;
  color: #c2410c;
  border-color: #000000;
}
.transit-badge--bus {
  background: #e0f2fe;
  color: #0369a1;
  border-color: #000000;
}
.transit-badge--drive {
  background: #f1f5f9;
  color: #334155;
  border-color: #000000;
}
.transit-time-pill {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  color: #475569;
}
.transit-title {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}
.transit-summary {
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
  margin: 0;
}

/* Step Flow */
.step-flow {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.step-node {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 2px 2px 0px #000000;
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  color: #b45309;
  margin-bottom: 4px;
}
.step-name {
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}
.step-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
  color: #000000;
  padding: 0 4px;
}
@media (max-width: 640px) {
  .step-flow {
    flex-direction: column;
  }
  .step-connector {
    transform: rotate(90deg);
    padding: 2px 0;
  }
}
.transit-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feature-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  background: #ffffff;
  border: 1.5px solid #000000;
  box-shadow: 1px 1px 0px #000000;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  color: #0f172a;
}

/* Transit Detail List */
.transit-detail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.transit-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
}
.subway-pill {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #000000;
  box-shadow: 1.5px 1.5px 0px #000000;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.subway-pill--line1 {
  background: #f97316;
  color: #ffffff;
}
.bus-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  border: 1.5px solid #000000;
  box-shadow: 1.5px 1.5px 0px #000000;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}
.bus-badge--blue {
  background: #0284c7;
  color: #ffffff;
}
.bus-badge--green {
  background: #16a34a;
  color: #ffffff;
}
.bus-number {
  color: #0284c7;
  font-weight: 800;
}
.transit-detail-content strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}
.transit-detail-content p {
  font-size: 12px;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}

/* Parking Info */
.parking-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 10px 0;
}
@media (min-width: 640px) {
  .parking-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.parking-box {
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
}
.parking-name {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  display: block;
  margin-bottom: 2px;
}
.parking-meta {
  font-size: 11px;
  font-weight: 700;
  color: #0284c7;
  margin-bottom: 4px;
}
.parking-desc {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}
.parking-alert {
  font-size: 12px;
  color: #92400e;
  background: #fef3c7;
  border: 1.5px solid #f59e0b;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  line-height: 1.5;
}
.parking-alert strong {
  color: #78350f;
}

/* Onsite Notice Card */
.onsite-notice-card {
  background: #0f172a;
  color: #ffffff;
  border: var(--border-width) solid #000000;
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 20px;
}
.onsite-notice-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}
.notice-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 900;
  background: var(--secondary);
  color: #000000;
  border: 1.5px solid var(--secondary);
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}
.notice-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}
.notice-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .notice-columns {
    grid-template-columns: repeat(3, 1fr);
  }
}
.notice-item {
  background: #1e293b;
  border: 1.5px solid #334155;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.notice-item strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #facc15;
  margin-bottom: 6px;
}
.notice-item p {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
  margin: 0;
}

/* 10. Wiki Ecological Glossary Section */
.wiki-glossary-section {
  margin-bottom: 24px;
}
.wiki-glossary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 680px) {
  .wiki-glossary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.wiki-term-card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: 2px 2px 0px #000000;
  border-radius: var(--radius-md);
  padding: 16px;
}
.wiki-term-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 6px;
}
.wiki-term-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

/* 9. FAQ Section */
.faq-section {
  margin-bottom: 24px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  background: var(--surface);
  user-select: none;
  list-style: none;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__icon {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  margin-left: 12px;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 16px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #334155;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* 10. Buttons & Interactive Controls */
.btn-neo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  background: var(--secondary);
  color: #000000;
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset-sm);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}
.btn-neo:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-offset-active);
}
.btn-neo--sm {
  padding: 6px 12px;
  font-size: 13px;
}

/* 11. Neobrutalist Ad Container (Zero CLS) */
.ad-container-neo {
  background: #ffffff;
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 12px;
  margin: 32px 0;
  text-align: center;
}
.ad-container-neo--sidebar {
  margin: 0;
  min-height: 600px;
  width: 100%;
  box-sizing: border-box;
}

/* Hot Topics Briefing Box (In-Content) */
.topic-briefing-box {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}
.topic-briefing-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid #000000;
  padding-bottom: 12px;
}
.topic-briefing-badge {
  background: var(--secondary);
  color: #000000;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 900;
  border: 1px solid #000000;
  border-radius: var(--radius-sm);
}
.topic-briefing-title {
  font-size: 17px;
  font-weight: 900;
  margin: 0;
  color: var(--text);
}
.topic-briefing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.topic-briefing-item {
  background: var(--surface-alt);
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13px;
  line-height: 1.5;
}
.topic-briefing-item strong {
  display: block;
  color: var(--primary);
  font-size: 12px;
  margin-bottom: 4px;
}

/* 12. Footer */
.site-footer {
  background: #000000;
  color: #ffffff;
  border: var(--border-width) solid #000000;
  box-shadow: var(--shadow-offset);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  margin-top: 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #334155;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
  }
}
.footer-logo {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}
.footer-meta {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.8;
}
.footer-link {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-copyright {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #64748b;
  text-align: center;
}
