/* Custom styles for Claude MCP Setup Guide */

.mcpGuidePage .wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 18px 40px;
}

.introSection {
  margin-bottom: 28px;
}

.introSection p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

.guideSection {
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}

.guideSection h2 {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

/* Steps styling */
.stepsList {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.stepItem {
  display: flex;
  gap: 16px;
}

.stepNumber {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  background: rgba(138, 180, 255, 0.15);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: bold;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepContent {
  flex: 1;
}

.stepContent h3 {
  font-size: 16px;
  margin: 0 0 6px 0;
  color: var(--text);
}

.stepContent p {
  margin: 0 0 10px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* OS Switcher styling */
.osTabs {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.osTabBtn {
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.osTabBtn.active {
  background: rgba(138, 180, 255, 0.12);
  border-color: var(--accent);
  color: var(--text);
}

.osInstructions {
  display: none;
}

.osInstructions.active {
  display: block;
}

.pathContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--mono);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 13px;
  margin: 10px 0;
  word-break: break-all;
}

.copyBtn.mini {
  position: static;
  transform: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 8px;
  font-size: 11px;
  flex-shrink: 0;
}

/* Code block & Copy styles */
.codeContainer {
  position: relative;
  background: #090c10;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.codeContainer pre {
  margin: 0;
  overflow-x: auto;
}

.codeContainer code {
  font-family: var(--mono);
  font-size: 13px;
  color: #e6eaf2;
  line-height: 1.4;
}

.copyBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.copyBtn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
}

.copyBtn.copied {
  background: rgba(120, 255, 120, 0.15);
  border-color: #78dba9;
  color: #78dba9;
}

/* Alert styles */
.alertNote {
  background: rgba(255, 211, 122, 0.05);
  border-left: 4px solid var(--warn);
  padding: 12px 16px;
  border-radius: 0 12px 12px 0;
  margin: 16px 0;
}

.alertNote p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.alertNote strong {
  color: var(--warn);
}

/* Prompt sections styling */
.promptFilterRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.promptFilterBtn {
  background: var(--chip);
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
}

.promptFilterBtn:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.promptFilterBtn.active {
  background: var(--accent);
  color: #0f1115;
  border-color: var(--accent);
  font-weight: 600;
}

.promptsGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.promptCard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  position: relative;
  transition: all 0.2s ease;
}

.promptCard:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(138, 180, 255, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.promptMeta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.promptCategory {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: var(--accent);
}

.promptText {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  padding-right: 80px;
}

.promptCard .copyBtn {
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
}

/* QA section */
.qaList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qaItem h3 {
  font-size: 15px;
  margin: 0 0 6px 0;
  color: var(--text);
}

.qaItem p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

/* Toast notifications */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #0c1320;
  border: 1px solid #78dba9;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toastIcon {
  color: #78dba9;
  font-size: 16px;
}

.guideImg {
  display: block;
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-top: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  object-fit: contain;
}

.promoImg {
  margin: 20px auto;
  max-height: 550px;
}

.accessibilityNotice {
  background: rgba(138, 180, 255, 0.08);
  border-left: 4px solid var(--accent);
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}

.accessibilityNotice p {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}

.complianceNotice {
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}

.complianceNotice p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.complianceNotice a {
  color: #8ab4ff;
  text-decoration: underline;
}

.complianceNotice a:hover {
  color: #b0c4de;
}

.accessibilityTip {
  background: rgba(16, 185, 129, 0.08);
  border-left: 4px solid #10b981;
  padding: 14px 18px;
  border-radius: 0 12px 12px 0;
  margin-top: 16px;
  margin-bottom: 8px;
}

.accessibilityTip p {
  margin: 0;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

/* Tools Directory styling */
.toolsCategories {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

.toolCategoryBlock {
  border-bottom: 1px dashed var(--line);
  padding-bottom: 16px;
}

.toolCategoryBlock:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.toolCategoryBlock h3 {
  font-size: 16px;
  color: var(--accent);
  margin-top: 0;
  margin-bottom: 12px;
}

.toolsList {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toolsList li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.toolsList li code {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 13px;
  margin-right: 6px;
}





