/* Guide Page Styles */

.guide-page {
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.guide-hero {
  text-align: center;
  padding: 3rem 0 4rem;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  color: #60a5fa;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #a1a1aa;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Table of Contents */
.guide-toc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 3rem;
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.toc-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.toc-header i {
  color: #60a5fa;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toc-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--sub);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.9rem;
}

.toc-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  transform: translateX(4px);
}

.toc-link.active {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  font-weight: 600;
}

/* Guide Content */
.guide-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.guide-section {
  scroll-margin-top: 120px;
}

/* Section Header */
.section-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.section-icon-wrapper {
  flex-shrink: 0;
}

.section-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.75rem;
  color: #ffffff;
}

.section-icon.connection {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.section-icon.fetching {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
  border: 2px solid rgba(168, 85, 247, 0.4);
}

.section-icon.ai {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
  border: 2px solid rgba(34, 197, 94, 0.4);
}

.section-icon.sentiment {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
  border: 2px solid rgba(251, 191, 36, 0.4);
}

.section-icon.questions {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
  border: 2px solid rgba(236, 72, 153, 0.4);
}

.section-icon.priority {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
  border: 2px solid rgba(239, 68, 68, 0.4);
}

.section-icon.categories {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.1));
  border: 2px solid rgba(14, 165, 233, 0.4);
}

.section-icon.replies {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border: 2px solid rgba(139, 92, 246, 0.4);
}

.section-icon.summary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
  border: 2px solid rgba(59, 130, 246, 0.4);
}

.section-icon.content-ideas {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.1));
  border: 2px solid rgba(251, 191, 36, 0.4);
}

.section-title-wrapper {
  flex: 1;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.125rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.5;
}

/* Section Body */
.section-body {
  color: var(--sub);
  line-height: 1.7;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.section-description.center {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.feature-text {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-card {
  position: relative;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.process-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.2));
  border: 2px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #60a5fa;
}

.process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.process-description {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.subsection {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

.subsection-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.subsection-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.1rem;
}

.subsection-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.enhanced-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.enhanced-list li {
  padding: 0.75rem 0 0.75rem 1.5rem;
  position: relative;
  color: var(--sub);
  line-height: 1.6;
}

.enhanced-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #60a5fa;
  font-weight: 600;
}

.enhanced-list li strong {
  color: var(--text);
}

/* Info Boxes */
.info-box {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  align-items: flex-start;
}

.info-box-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
}

.info-box-content {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
}

.info-box.security {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: var(--text);
}

.info-box.security .info-box-icon {
  color: #60a5fa;
}

.info-box.tip {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--text);
}

.info-box.tip .info-box-icon {
  color: #fbbf24;
}

.info-box.highlight {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: var(--text);
}

.info-box.highlight .info-box-icon {
  color: #60a5fa;
}

.info-box.warning {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: var(--text);
}

.info-box.warning .info-box-icon {
  color: #f87171;
}

.info-box strong {
  color: var(--text);
  font-weight: 600;
}

/* Sentiment Grid */
.sentiment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.sentiment-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.sentiment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.sentiment-card.positive {
  border-color: rgba(34, 197, 94, 0.3);
}

.sentiment-card.positive:hover {
  background: rgba(34, 197, 94, 0.05);
}

.sentiment-card.neutral {
  border-color: rgba(107, 114, 128, 0.3);
}

.sentiment-card.neutral:hover {
  background: rgba(107, 114, 128, 0.05);
}

.sentiment-card.negative {
  border-color: rgba(239, 68, 68, 0.3);
}

.sentiment-card.negative:hover {
  background: rgba(239, 68, 68, 0.05);
}

.sentiment-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sentiment-card.positive .sentiment-icon {
  color: #4ade80;
}

.sentiment-card.neutral .sentiment-icon {
  color: #9ca3af;
}

.sentiment-card.negative .sentiment-icon {
  color: #f87171;
}

.sentiment-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.sentiment-description {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.sentiment-example {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 1rem;
}

.sentiment-example i {
  font-size: 1.5rem;
  color: var(--sub);
  opacity: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}

.sentiment-example p {
  font-size: 0.9rem;
  color: var(--sub);
  margin: 0;
  font-style: italic;
}

/* Question Types */
.question-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.question-type-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.question-type-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.question-type-icon {
  font-size: 2.5rem;
  color: #ec4899;
  margin-bottom: 1rem;
}

.question-type-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.question-type-examples {
  font-size: 0.9rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

/* Priority List */
.priority-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.priority-item {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.priority-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}

.priority-badge {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.priority-item.high .priority-badge {
  background: rgba(239, 68, 68, 0.2);
  border: 2px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.priority-item.medium .priority-badge {
  background: rgba(251, 191, 36, 0.2);
  border: 2px solid rgba(251, 191, 36, 0.4);
  color: #fcd34d;
}

.priority-item.low .priority-badge {
  background: rgba(107, 114, 128, 0.2);
  border: 2px solid rgba(107, 114, 128, 0.4);
  color: #9ca3af;
}

.priority-content {
  flex: 1;
}

.priority-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.priority-description {
  font-size: 1rem;
  color: var(--sub);
  margin: 0 0 1rem;
}

.priority-examples {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.priority-examples li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--sub);
}

.priority-examples li i {
  color: #60a5fa;
  font-size: 0.875rem;
}

/* Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.category-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-align: center;
  transition: all 0.2s ease;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.category-icon {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 0.75rem;
}

.category-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.category-description {
  font-size: 0.875rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.5;
}

.topics-info {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  margin: 2rem 0;
}

.topics-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.topics-header i {
  color: #fbbf24;
  font-size: 1.25rem;
}

.topics-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.topics-description {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

/* Reply Features */
.reply-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.reply-feature-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.reply-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  color: #a78bfa;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.reply-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
}

.reply-feature-text {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0 0 1rem;
  line-height: 1.6;
}

.reply-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reply-feature-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.6;
}

.reply-feature-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a78bfa;
  font-weight: 600;
}

.reply-feature-list li strong {
  color: var(--text);
}

/* Posting Section */
.posting-section {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.posting-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.posting-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 10px;
  color: #4ade80;
  font-size: 1.25rem;
}

.posting-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.posting-description {
  font-size: 1rem;
  color: var(--sub);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.posting-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.posting-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}

.posting-feature i {
  color: #4ade80;
  font-size: 1.125rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.posting-feature div {
  font-size: 0.95rem;
  color: var(--sub);
  line-height: 1.5;
}

.posting-feature strong {
  color: var(--text);
}

/* Workflow Flow */
.workflow-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

.workflow-step {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-width: 160px;
  max-width: 200px;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
}

.workflow-step:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.workflow-step.final {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border-color: rgba(34, 197, 94, 0.3);
}

.workflow-step.final:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.2);
}

.workflow-step-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
  border: 2px solid rgba(59, 130, 246, 0.4);
  border-radius: 50%;
  font-size: 2rem;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.workflow-step.final .workflow-step-icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(34, 197, 94, 0.2));
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.workflow-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  letter-spacing: 0.02em;
  text-align: center;
}

.workflow-step-desc {
  font-size: 0.9rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.workflow-arrow {
  font-size: 1.75rem;
  color: rgba(59, 130, 246, 0.6);
  flex-shrink: 0;
  padding: 0 0.5rem;
  animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(4px);
  }
}

.workflow-note {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin-top: 2rem;
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: center;
  justify-content: center;
}

.workflow-note i {
  font-size: 1.5rem;
  color: rgba(59, 130, 246, 0.9);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .guide-toc {
    position: static;
    max-height: none;
  }
  
  .two-column-layout {
    grid-template-columns: 1fr;
  }
  
  .reply-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .guide-page {
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .guide-hero {
    padding: 2rem 0 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .guide-content {
    gap: 3rem;
    width: 100%;
    box-sizing: border-box;
  }

  .section-body {
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .section-header {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .section-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-intro {
    font-size: 1rem;
  }

  .section-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-card {
    padding: 1.5rem;
  }

  .sentiment-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .sentiment-card {
    padding: 1.5rem;
  }

  .question-types {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .question-type-card {
    padding: 1.25rem;
  }

  .priority-item {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }

  .priority-badge {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    font-size: 0.875rem;
  }

  .priority-title {
    font-size: 1.25rem;
  }

  .priority-description {
    font-size: 0.9375rem;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .category-card {
    padding: 1.25rem;
  }

  .feature-list {
    gap: 1.25rem;
  }

  .feature-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .two-column-layout {
    gap: 1.5rem;
  }

  .subsection {
    padding: 1.25rem;
  }

  .info-box {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
  }

  .workflow-flow {
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .workflow-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
    font-size: 1.5rem;
  }

  .workflow-step {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    padding: 1.25rem;
    min-width: 0;
    box-sizing: border-box;
  }

  .workflow-step-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .workflow-step-title {
    font-size: 1.125rem;
    word-wrap: break-word;
  }

  .workflow-step-desc {
    font-size: 0.875rem;
    word-wrap: break-word;
  }

  .workflow-note {
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .workflow-note i {
    font-size: 1.25rem;
  }

  .reply-features {
    gap: 1.5rem;
  }

  .reply-feature-card {
    padding: 1.5rem;
  }

  .reply-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .reply-feature-title {
    font-size: 1.125rem;
  }

  .reply-feature-text {
    font-size: 0.9rem;
  }

  .posting-section {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }

  .posting-header {
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }

  .posting-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .posting-title {
    font-size: 1.25rem;
  }

  .posting-description {
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
  }

  .posting-features {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
  }

  .posting-feature {
    padding: 0.875rem;
  }

  .topics-info {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
}

/* Content Ideas Section Styles */
.idea-components {
  margin: 2rem 0;
}

.idea-components-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.idea-components-header i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.idea-components-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.idea-components-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.idea-component-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.idea-component-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.idea-component-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.idea-component-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.idea-component-description {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

.idea-workflow {
  margin: 2rem 0;
}

.idea-workflow-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.idea-workflow-header i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.idea-workflow-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.idea-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.idea-feature-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.idea-feature-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.2);
  transform: translateX(4px);
}

.idea-feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  color: #fbbf24;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.idea-feature-content {
  flex: 1;
}

.idea-feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.idea-feature-text {
  font-size: 0.95rem;
  color: var(--sub);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .idea-components-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .idea-component-card {
    padding: 1.25rem;
  }

  .idea-components-title,
  .idea-workflow-title {
    font-size: 1.25rem;
  }

  .idea-features {
    gap: 1.25rem;
  }

  .idea-feature-item {
    padding: 1.25rem;
    gap: 1rem;
  }

  .idea-feature-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .idea-feature-title {
    font-size: 1rem;
  }

  .idea-feature-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

