/* ============================================
   PLATFORM GUIDE STYLES
   ============================================ */

/* Section wrapper */
.guide-section {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

/* Header with icon */
.guide-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #1f2937;
}

.guide-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

/* Cards */
.guide-card {
  background: #0D121C;
  border: 1px solid #1f2937;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s ease;
}

.guide-card:hover {
  border-color: #374151;
}

.guide-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.guide-text {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Preview boxes */
.guide-preview {
  background: #080c14;
  border: 1px solid #1f2937;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.guide-preview-label {
  background: #111827;
  color: #6b7280;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-bottom: 1px solid #1f2937;
}

/* Role cards */
.guide-role-card {
  background: #111827;
  border: 1px solid #374151;
  border-radius: 10px;
  padding: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.guide-role-card:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
}

/* Lists */
.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.guide-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

/* Steps */
.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guide-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.guide-step:hover {
  border-color: #3b82f6;
}

.guide-step-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

/* Feature blocks */
.guide-feature-block {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #111827;
  border-radius: 8px;
  border: 1px solid #1f2937;
}

.guide-feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

/* Platform cards */
.guide-platform-card {
  background: #111827;
  border: 1px solid #1f2937;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.guide-platform-card:hover {
  transform: translateY(-2px);
  border-color: #3b82f6;
}

/* Callouts */
.guide-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: #d1d5db;
  margin-top: 1rem;
}

.guide-info-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(234, 179, 8, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 8px;
  font-size: 0.8rem;
  color: #d1d5db;
}

/* Badges */
.guide-badge-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.guide-badge-beta {
  background: #2563eb;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 4px;
}

.guide-badge-role {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Active nav state */
.guide-nav-btn.active {
  background: #1A2332;
  border-left: 3px solid #3b82f6;
}

/* Responsive */
@media (max-width: 767px) {
  .guide-section {
    padding-bottom: 2rem;
  }

  .guide-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .guide-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .guide-icon-wrap i {
    font-size: 1.25rem !important;
  }

  .guide-card {
    padding: 1rem;
  }

  .guide-card-title {
    font-size: 1rem;
  }

  .guide-step {
    padding: 0.5rem 0.75rem;
  }

  .guide-feature-block {
    padding: 0.5rem;
  }

  .guide-callout {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 479px) {
  .guide-role-card,
  .guide-platform-card {
    padding: 1rem;
  }

  .guide-preview {
    margin: 0 -0.5rem;
    border-radius: 6px;
  }
<<<<<<< HEAD
}
=======
}
>>>>>>> d9de07d4736104fbefc3ce640a2942171ae25829
