#knowledge-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
  font-size: 12px;
}

#knowledge-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100%;
  background: rgba(8,12,20,0.95);
  backdrop-filter: blur(14px);
  transition: right 0.5s ease;
}

#knowledge-panel.open {
  right: 0;
}

.kp-header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.kp-title {
  color: #d9ae5a;
}

.kp-close {
  cursor: pointer;
}

.kp-content {
  padding: 16px;
  overflow-y: auto;
  height: calc(100% - 60px);
}

.kp-section {
  margin-bottom: 20px;
}

.kp-section h3 {
  color: #38cfb2;
  margin-bottom: 6px;
}

.kp-section p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}
