/* Documentation Page Specific Styles */

/* Main Documentation Layout */
.docs-main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 40px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.docs-header {
  text-align: center;
  margin-bottom: 80px;
  padding-top: 60px;
}

.docs-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.docs-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  line-height: 1.4;
}

.docs-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-bottom: 120px;
}

.docs-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.docs-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section Title Shared Styling */
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-align: left;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Documentation Grid */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
}

/* Documentation Cards */
.doc-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.doc-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.doc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.4s ease;
}

.doc-card:hover::before {
  left: 100%;
}

.doc-card.featured {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.doc-card.featured::after {
  content: 'Featured';
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ffab1d 0%, #e69512 100%);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doc-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.doc-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.doc-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 16px 0;
  flex-grow: 1;
}

.doc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
}

.doc-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.doc-difficulty {
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doc-difficulty.beginner {
  background: rgba(255, 171, 29, 0.2);
  color: #ffab1d;
}

.doc-difficulty.intermediate {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.doc-difficulty.advanced {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.doc-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.doc-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(2px);
}

/* Troubleshooting Section */
.troubleshooting-content {
  display: flex;
  justify-content: center;
}

.troubleshooting-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 900px;
}

.category-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.category-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.category-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
}

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

.issue-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.issue-link:hover {
  color: white;
  transform: translateX(4px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Developer Resources Section */
.developer-content {
  display: flex;
  justify-content: center;
}

.resource-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1000px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
  transition: left 0.4s ease;
}

.resource-card:hover::before {
  left: 100%;
}

.resource-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.resource-icon {
  font-size: 24px;
}

.resource-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.resource-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.resource-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.resource-link:hover {
  color: white;
  transform: translateX(4px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Quick Search Section */
.search-content {
  display: flex;
  justify-content: center;
}

.search-container {
  width: 100%;
  max-width: 800px;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.search-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.suggestion-category {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.suggestion-title {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 16px 0;
}

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

.suggestion-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.suggestion-link:hover {
  color: white;
  transform: translateX(2px);
}

/* Redesigned Shortcuts Page Styles */

/* Search Section */
.shortcuts-search-container {
  position: sticky;
  top: 20px;
  z-index: 100;
  margin-bottom: 40px;
  padding: 0 4px;
}

.search-input-group {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-input-enhanced {
  width: 100%;
  padding: 14px 44px 14px 48px;
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: white;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.search-input-enhanced:focus {
  outline: none;
  border-color: rgba(255, 171, 29, 0.5);
  background: rgba(20, 20, 20, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 171, 29, 0.15), 0 12px 40px rgba(0, 0, 0, 0.4);
}

.search-icon-left {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  pointer-events: none;
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  opacity: 0.8;
}

.clear-search-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

/* Category Sections */
.category-wrapper {
  margin-bottom: 24px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.category-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.category-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.category-header-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
  font-weight: 600;
  color: white;
}

.category-icon {
  font-size: 24px;
  opacity: 0.9;
}

.toggle-icon {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  transition: transform 0.3s ease;
}

.category-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.category-content.expanded {
  max-height: 2000px;
  padding-bottom: 24px;
}

/* Enhanced Shortcut Row */
.shortcut-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 32px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.shortcut-item:last-child {
  border-bottom: none;
}

.shortcut-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.shortcut-keys-container {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 140px;
  padding-top: 4px;
}

.kbd-enhanced {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.kbd-plus {
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  font-weight: 300;
  margin: 0 2px;
}

.shortcut-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.shortcut-name {
  font-size: 16px;
  font-weight: 600;
  color: #f8fafc;
}

.shortcut-description-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Empty State */
.no-results-state {
  text-align: center;
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.no-results-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.no-results-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

/* Accessibility & Utils */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .shortcut-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px;
  }

  .shortcut-keys-container {
    min-width: auto;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .docs-main {
    padding: 24px 24px 0;
  }

  .docs-header {
    margin-bottom: 60px;
    padding-top: 40px;
  }

  .docs-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .docs-subtitle {
    font-size: 16px;
  }

  .docs-content {
    gap: 60px;
    margin-bottom: 80px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .docs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .doc-card {
    padding: 20px;
  }

  .doc-icon {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .doc-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .doc-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .doc-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }

  .troubleshooting-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card {
    padding: 20px;
  }

  .category-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .resource-categories {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resource-card {
    padding: 20px;
  }

  .resource-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .resource-icon {
    font-size: 20px;
  }

  .resource-title {
    font-size: 18px;
  }

  .resource-description {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .search-suggestions {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .suggestion-category {
    padding: 20px;
  }

  .search-input {
    padding: 14px 16px 14px 44px;
    font-size: 15px;
  }

  .search-icon {
    left: 14px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .docs-main {
    padding: 16px 16px 0;
  }

  .docs-header {
    margin-bottom: 40px;
    padding-top: 24px;
  }

  .docs-content {
    gap: 40px;
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .doc-card {
    padding: 16px;
  }

  .doc-card.featured::after {
    top: 12px;
    right: 12px;
    font-size: 9px;
    padding: 3px 6px;
  }

  .doc-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .doc-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .doc-description {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .doc-link {
    padding: 6px 12px;
    font-size: 12px;
  }

  .category-card,
  .resource-card,
  .suggestion-category {
    padding: 16px;
  }

  .category-title,
  .suggestion-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .resource-title {
    font-size: 16px;
  }

  .resource-header {
    gap: 8px;
    margin-bottom: 10px;
  }

  .resource-icon {
    font-size: 18px;
  }

  .search-input {
    padding: 12px 14px 12px 40px;
    font-size: 14px;
  }

  .search-icon {
    left: 12px;
    font-size: 13px;
  }
}

/* Quick Start Guide Specific Styles */

/* Quick Start Intro */
.quick-start-intro {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.intro-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.feature-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-icon {
  font-size: 20px;
}

.highlight-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Prerequisites List */
.prerequisites-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.prereq-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

.prereq-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffab1d 0%, #ffab1d 100%);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.prereq-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 8px 0;
}

.prereq-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

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

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.step-number {
  flex-shrink: 0;
  min-width: 48px;
  width: auto;
  padding: 0 12px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffab1d 0%, #ffab1d 100%);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  color: white;
}

.step-title {
  font-size: 20px;
  font-weight: 600;
  color: white;
  margin: 0;
}

.step-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.step-tips {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 16px;
  border-left: 3px solid #ffab1d;
}

.tips-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffab1d;
  margin: 0 0 12px 0;
}

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

.tips-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tips-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ffab1d;
  font-weight: bold;
}

/* Use Cases Grid */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  text-align: center;
}

.use-case-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.use-case-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.use-case-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}

.use-case-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0;
}

/* Shortcuts Table */
.shortcuts-table {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
}

.shortcut-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.shortcut-row:first-child {
  padding-top: 0;
}

.shortcut-key {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.shortcut-key .kbd-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
  font-weight: 400;
  user-select: none;
  margin: 0 2px;
}

kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.shortcut-description {
  flex: 1;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.shortcut-description strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
}

.shortcut-detail {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

/* Troubleshooting Quick */
.troubleshooting-quick {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trouble-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

.trouble-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.trouble-item.critical {
  background: rgba(239, 68, 68, 0.08);
  border: 2px solid rgba(239, 68, 68, 0.3);
  padding: 24px;
}

.trouble-item.critical:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.4);
}

.trouble-question {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}

.trouble-answer {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

.trouble-item.critical .trouble-answer {
  color: rgba(255, 255, 255, 0.85);
}

.trouble-item.critical .trouble-answer strong {
  color: #fca5a5;
}

.trouble-item.critical .trouble-answer em {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

/* Permissions Alert */
.permissions-alert {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(239, 68, 68, 0.4);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {

  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.4);
  }

  50% {
    border-color: rgba(239, 68, 68, 0.6);
  }
}

.alert-icon {
  font-size: 48px;
  flex-shrink: 0;
  animation: shake 0.5s ease-in-out;
  animation-delay: 0.5s;
}

@keyframes shake {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-5deg);
  }

  75% {
    transform: rotate(5deg);
  }
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-size: 22px;
  font-weight: 700;
  color: #fca5a5;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.alert-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.alert-description strong {
  color: #fca5a5;
  font-weight: 600;
}

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

.alert-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 32px;
  position: relative;
  line-height: 1.5;
}

.alert-list li::before {
  content: attr(data-icon);
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* Next Steps */
.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.next-step-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.next-step-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.next-step-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.next-step-title {
  font-size: 18px;
  font-weight: 600;
  color: white;
  margin: 0 0 12px 0;
}

.next-step-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.next-step-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ffab1d 0%, #ffab1d 100%);
  border: none;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.next-step-link:hover {
  background: linear-gradient(135deg, #ffab1d 0%, #e69a1a 100%);
  transform: translateX(4px);
}

/* Support Section */
.support-section {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.support-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.support-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.support-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.support-icon {
  font-size: 20px;
}

.support-label {
  color: white;
}

/* Responsive Design for Quick Start Guide */
@media (max-width: 768px) {
  .quick-start-intro {
    padding: 24px;
  }

  .intro-text {
    font-size: 15px;
  }

  .feature-highlights {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .highlight-item {
    padding: 10px 14px;
  }

  .prereq-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .prereq-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-card {
    padding: 20px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 14px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-case-card {
    padding: 20px;
  }

  .use-case-icon {
    font-size: 36px;
  }

  .use-case-title {
    font-size: 16px;
  }

  .use-case-description {
    font-size: 13px;
  }

  .shortcuts-table {
    padding: 20px;
  }

  .shortcut-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .shortcut-key {
    width: 100%;
  }

  .shortcut-description {
    width: 100%;
  }

  /* Installation Page Specific Styles */

  /* System Requirements */
  .system-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
  }

  .requirement-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
  }

  .requirement-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
  }

  .requirement-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .requirement-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
  }

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

  .requirement-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
  }

  .requirement-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffab1d;
    font-weight: bold;
  }

  /* Platform Installation */
  .platform-installation {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .installation-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .install-step {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
  }

  .install-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
  }

  .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffab1d 0%, #ffab1d 100%);
    border-radius: 12px;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
  }

  .step-content {
    flex-grow: 1;
  }

  .step-title {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
  }

  .step-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 16px 0;
  }

  .step-code {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    overflow-x: auto;
  }

  .step-code code,
  .step-code pre {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #ffab1d;
    line-height: 1.5;
    margin: 0;
  }

  .step-code pre {
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  .step-tips {
    background: rgba(34, 197, 94, 0.1);
    border-radius: 8px;
    padding: 16px;
    border-left: 3px solid #ffab1d;
    margin-top: 16px;
  }

  .step-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .step-checklist li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
  }

  .step-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffab1d;
    font-weight: bold;
  }

  .step-warning {
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    padding: 16px;
    border-left: 3px solid #f59e0b;
    margin-top: 16px;
  }

  .warning-title {
    font-size: 14px;
    font-weight: 600;
    color: #f59e0b;
    margin: 0 0 8px 0;
  }

  .warning-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
  }

  /* Troubleshooting Box */
  .troubleshooting-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-top: 32px;
  }

  .troubleshooting-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
  }

  .troubleshooting-item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .troubleshooting-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .trouble-q {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin: 0 0 8px 0;
  }

  .trouble-a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
  }

  /* Verification Steps */
  .verification-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .verify-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
    text-align: center;
  }

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

  .verify-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
  }

  .verify-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0 0 12px 0;
  }

  .verify-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
  }

  /* Responsive Design for Installation Page */
  @media (max-width: 768px) {
    .system-requirements {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .requirement-card {
      padding: 20px;
    }

    .requirement-icon {
      font-size: 28px;
      margin-bottom: 12px;
    }

    .requirement-title {
      font-size: 16px;
    }

    .requirement-list li {
      font-size: 13px;
    }

    .install-step {
      padding: 20px;
    }

    .step-number {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }

    .step-title {
      font-size: 18px;
    }

    .step-description {
      font-size: 14px;
    }

    .step-code {
      padding: 12px;
      font-size: 12px;
    }

    .step-tips {
      padding: 12px;
    }

    .troubleshooting-box {
      padding: 20px;
      margin-top: 24px;
    }

    .troubleshooting-title {
      font-size: 16px;
    }

    .trouble-q {
      font-size: 14px;
    }

    .trouble-a {
      font-size: 13px;
    }

    .verification-steps {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .verify-card {
      padding: 20px;
    }

    .verify-icon {
      font-size: 36px;
    }

    .verify-title {
      font-size: 16px;
    }

    .verify-description {
      font-size: 13px;
    }
  }

  @media (max-width: 480px) {
    .system-requirements {
      gap: 12px;
    }

    .requirement-card {
      padding: 16px;
    }

    .requirement-icon {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .requirement-title {
      font-size: 15px;
    }

    .requirement-list li {
      font-size: 12px;
    }

    .install-step {
      padding: 16px;
    }

    .step-number {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    .step-title {
      font-size: 16px;
    }

    .step-description {
      font-size: 13px;
    }

    .step-code {
      padding: 10px;
      font-size: 11px;
    }

    .step-tips {
      padding: 10px;
    }

    .troubleshooting-box {
      padding: 16px;
    }

    .troubleshooting-title {
      font-size: 15px;
    }

    .trouble-q {
      font-size: 13px;
    }

    .trouble-a {
      font-size: 12px;
    }

    .verification-steps {
      gap: 12px;
    }

    .verify-card {
      padding: 16px;
    }

    .verify-icon {
      font-size: 32px;
    }

    .verify-title {
      font-size: 15px;
    }

    .verify-description {
      font-size: 12px;
    }
  }

  kbd {
    min-width: 36px;
    height: 32px;
    font-size: 12px;
    padding: 0 10px;
  }

  .trouble-item {
    padding: 16px;
  }

  .trouble-question {
    font-size: 15px;
  }

  .trouble-answer {
    font-size: 13px;
  }

  .next-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .next-step-card {
    padding: 20px;
  }

  .next-step-icon {
    font-size: 28px;
  }

  .next-step-title {
    font-size: 16px;
  }

  .next-step-description {
    font-size: 13px;
  }

  .support-section {
    padding: 24px;
  }

  .support-text {
    font-size: 15px;
  }

  .support-links {
    flex-direction: column;
    gap: 12px;
  }

  .support-link {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}

@media (max-width: 480px) {
  .quick-start-intro {
    padding: 20px;
  }

  .intro-text {
    font-size: 14px;
  }

  .highlight-item {
    padding: 8px 12px;
    gap: 10px;
  }

  .highlight-icon {
    font-size: 18px;
  }

  .highlight-text {
    font-size: 13px;
  }

  .prereq-item {
    padding: 16px;
  }

  .prereq-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .prereq-title {
    font-size: 16px;
  }

  .prereq-description {
    font-size: 13px;
  }

  .step-card {
    padding: 16px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-title {
    font-size: 16px;
  }

  .step-description {
    font-size: 13px;
  }

  .step-tips {
    padding: 12px;
  }

  .tips-title {
    font-size: 13px;
  }

  .tips-list li {
    font-size: 13px;
  }

  .use-case-card {
    padding: 16px;
  }

  .use-case-icon {
    font-size: 32px;
  }

  .use-case-title {
    font-size: 15px;
  }

  .use-case-description {
    font-size: 12px;
  }

  .shortcuts-table {
    padding: 16px;
  }

  kbd {
    min-width: 32px;
    height: 28px;
    font-size: 11px;
    padding: 0 8px;
  }

  .shortcut-key {
    width: 100%;
  }

  .shortcut-description {
    font-size: 13px;
    width: 100%;
  }

  .trouble-item {
    padding: 14px;
  }

  .trouble-question {
    font-size: 14px;
  }

  .trouble-answer {
    font-size: 12px;
  }

  .next-step-card {
    padding: 16px;
  }

  .next-step-icon {
    font-size: 24px;
  }

  .next-step-title {
    font-size: 15px;
  }

  .next-step-description {
    font-size: 12px;
  }

  .next-step-link {
    padding: 8px 16px;
    font-size: 13px;
  }

  .support-section {
    padding: 20px;
  }

  .support-text {
    font-size: 14px;
  }

  .support-link {
    padding: 12px 16px;
    font-size: 13px;
  }

  .support-icon {
    font-size: 18px;
  }

  /* Responsive styles for new platform-specific elements */
  .permissions-alert {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .alert-icon {
    font-size: 40px;
  }

  .alert-title {
    font-size: 18px;
  }

  .alert-description {
    font-size: 14px;
  }

  .alert-list li {
    font-size: 13px;
  }

  .trouble-item.critical {
    padding: 20px;
  }
}

/* Documentation Refactoring Utilities */
.docs-list-decimal {
  list-style: decimal;
  padding-left: 20px;
}

.docs-mb-8 {
  margin-bottom: 8px;
}

.docs-mb-12 {
  margin-bottom: 12px;
}

.docs-mb-16 {
  margin-bottom: 16px;
}

.docs-mt-24 {
  margin-top: 24px;
}

.docs-fs-14 {
  font-size: 14px;
}

.docs-fs-16 {
  font-size: 16px;
}

.docs-text-auth {
  color: #ffab1d;
}

.docs-card-auth {
  border-left: 3px solid #ffab1d;
}

.docs-grid-panels {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
