/* 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-list-disc {
  list-style: disc;
  padding-left: 20px;
}

/* Premium documentation shell */
.docs-premium-shell {
  --docs-bg: rgba(9, 9, 9, 0.76);
  --docs-panel: rgba(255, 255, 255, 0.045);
  --docs-panel-strong: rgba(255, 255, 255, 0.07);
  --docs-border: rgba(255, 255, 255, 0.1);
  --docs-border-strong: rgba(255, 194, 71, 0.28);
  --docs-text: rgba(255, 255, 255, 0.88);
  --docs-muted: rgba(255, 255, 255, 0.64);
  --docs-faint: rgba(255, 255, 255, 0.42);
  --docs-accent: #ffc247;
  --docs-accent-deep: #ff9d00;
  --docs-green: #66d48b;
  --docs-red: #f06f73;
  isolation: isolate;
  max-width: 1180px;
  padding: 48px 32px 0;
}

.docs-premium-shell::before {
  content: "";
  position: fixed;
  inset: 78px 0 auto;
  z-index: -1;
  height: 520px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 194, 71, 0.1), transparent 34%, rgba(102, 212, 139, 0.07) 72%, transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 96px);
  mask-image: linear-gradient(180deg, black, transparent 82%);
}

.docs-premium-shell .docs-header {
  position: relative;
  max-width: 860px;
  margin: 0 auto 56px;
  padding-top: 74px;
  text-align: center;
}

.docs-premium-shell .docs-header::before {
  content: "GhostBro Docs";
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 11px;
  border: 1px solid var(--docs-border-strong);
  border-radius: 6px;
  background: rgba(255, 194, 71, 0.1);
  color: var(--docs-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-premium-shell .docs-title {
  max-width: 920px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.docs-premium-shell .docs-subtitle {
  max-width: 780px;
  margin: 0 auto;
  color: var(--docs-muted);
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.65;
}

.docs-premium-shell .docs-content {
  gap: 66px;
  margin-bottom: 124px;
}

.docs-premium-shell .docs-section {
  scroll-margin-top: 96px;
}

.docs-premium-shell .section-title {
  margin: 0 0 26px;
  color: white;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.docs-premium-shell .docs-grid,
.docs-premium-shell .troubleshooting-categories,
.docs-premium-shell .resource-categories,
.docs-premium-shell .search-suggestions {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 286px), 1fr));
  gap: 16px;
}

.docs-premium-shell .doc-card,
.docs-premium-shell .category-card,
.docs-premium-shell .resource-card,
.docs-premium-shell .suggestion-category,
.docs-premium-shell .quick-start-intro,
.docs-premium-shell .prereq-item,
.docs-premium-shell .step-card,
.docs-premium-shell .use-case-card,
.docs-premium-shell .trouble-item,
.docs-premium-shell .next-step-card,
.docs-premium-shell .support-section,
.docs-premium-shell .category-wrapper {
  border: 1px solid var(--docs-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    var(--docs-bg);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.docs-premium-shell .doc-card,
.docs-premium-shell .category-card,
.docs-premium-shell .resource-card,
.docs-premium-shell .suggestion-category,
.docs-premium-shell .step-card,
.docs-premium-shell .trouble-item,
.docs-premium-shell .next-step-card {
  padding: 24px;
}

.docs-premium-shell .doc-card,
.docs-premium-shell .resource-card,
.docs-premium-shell .step-card,
.docs-premium-shell .use-case-card,
.docs-premium-shell .next-step-card {
  min-height: 100%;
}

.docs-premium-shell .doc-card:hover,
.docs-premium-shell .category-card:hover,
.docs-premium-shell .resource-card:hover,
.docs-premium-shell .prereq-item:hover,
.docs-premium-shell .step-card:hover,
.docs-premium-shell .use-case-card:hover,
.docs-premium-shell .trouble-item:hover,
.docs-premium-shell .next-step-card:hover,
.docs-premium-shell .category-wrapper:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    var(--docs-bg);
  transform: translateY(-3px);
}

.docs-premium-shell .doc-card::before,
.docs-premium-shell .resource-card::before {
  display: none;
}

.docs-premium-shell .doc-card.featured {
  border: 1px solid var(--docs-border-strong);
  background:
    linear-gradient(180deg, rgba(255, 194, 71, 0.13), rgba(255, 255, 255, 0.035)),
    var(--docs-bg);
}

.docs-premium-shell .doc-card.featured::after {
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 194, 71, 0.3);
  border-radius: 6px;
  background: rgba(255, 194, 71, 0.12);
  color: var(--docs-accent);
}

.docs-premium-shell .doc-icon,
.docs-premium-shell .resource-icon,
.docs-premium-shell .highlight-icon,
.docs-premium-shell .next-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 22px;
}

.docs-premium-shell .doc-title,
.docs-premium-shell .resource-title,
.docs-premium-shell .category-title,
.docs-premium-shell .prereq-title,
.docs-premium-shell .step-title,
.docs-premium-shell .use-case-title,
.docs-premium-shell .trouble-question,
.docs-premium-shell .next-step-title,
.docs-premium-shell .shortcut-description strong,
.docs-premium-shell .shortcut-name,
.docs-premium-shell .category-header-title {
  color: white;
  font-weight: 750;
  letter-spacing: 0;
}

.docs-premium-shell .doc-description,
.docs-premium-shell .resource-description,
.docs-premium-shell .intro-text,
.docs-premium-shell .highlight-text,
.docs-premium-shell .prereq-description,
.docs-premium-shell .step-description,
.docs-premium-shell .use-case-description,
.docs-premium-shell .trouble-answer,
.docs-premium-shell .next-step-description,
.docs-premium-shell .support-text,
.docs-premium-shell .shortcut-detail,
.docs-premium-shell .shortcut-description-text {
  color: var(--docs-muted);
  line-height: 1.65;
}

.docs-premium-shell .doc-meta {
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
}

.docs-premium-shell .doc-time,
.docs-premium-shell .doc-difficulty,
.docs-premium-shell .dtc-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--docs-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.docs-premium-shell .doc-difficulty.beginner {
  border-color: rgba(102, 212, 139, 0.24);
  background: rgba(102, 212, 139, 0.09);
  color: var(--docs-green);
}

.docs-premium-shell .doc-difficulty.intermediate {
  border-color: rgba(255, 194, 71, 0.24);
  background: rgba(255, 194, 71, 0.09);
  color: var(--docs-accent);
}

.docs-premium-shell .doc-difficulty.advanced {
  border-color: rgba(240, 111, 115, 0.24);
  background: rgba(240, 111, 115, 0.09);
  color: var(--docs-red);
}

.docs-premium-shell .doc-link,
.docs-premium-shell .resource-link,
.docs-premium-shell .suggestion-link,
.docs-premium-shell .issue-link,
.docs-premium-shell .next-step-link,
.docs-premium-shell .support-link {
  border: 1px solid rgba(255, 194, 71, 0.22);
  border-radius: 8px;
  background: rgba(255, 194, 71, 0.08);
  color: var(--docs-accent);
  font-weight: 750;
  text-decoration: none;
}

.docs-premium-shell .doc-link,
.docs-premium-shell .next-step-link,
.docs-premium-shell .support-link {
  min-height: 40px;
  padding: 0 14px;
}

.docs-premium-shell .resource-link,
.docs-premium-shell .suggestion-link,
.docs-premium-shell .issue-link {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
}

.docs-premium-shell .doc-link:hover,
.docs-premium-shell .resource-link:hover,
.docs-premium-shell .suggestion-link:hover,
.docs-premium-shell .issue-link:hover,
.docs-premium-shell .next-step-link:hover,
.docs-premium-shell .support-link:hover {
  border-color: rgba(255, 194, 71, 0.38);
  background: rgba(255, 194, 71, 0.13);
  color: white;
  transform: translateY(-1px);
}

.docs-premium-shell .quick-start-intro,
.docs-premium-shell .support-section {
  padding: clamp(24px, 4vw, 36px);
}

.docs-premium-shell .feature-highlights,
.docs-premium-shell .prerequisites-list,
.docs-premium-shell .steps-container,
.docs-premium-shell .use-cases-grid,
.docs-premium-shell .next-steps,
.docs-premium-shell .troubleshooting-quick {
  gap: 16px;
}

.docs-premium-shell .feature-highlights {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}

.docs-premium-shell .highlight-item {
  justify-content: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  padding: 14px;
}

.docs-premium-shell .highlight-icon {
  width: 32px;
  height: 32px;
  margin: 0;
  font-size: 17px;
}

.docs-premium-shell .prereq-number,
.docs-premium-shell .step-number {
  border: 1px solid var(--docs-border-strong);
  border-radius: 8px;
  background: rgba(255, 194, 71, 0.11);
  color: var(--docs-accent);
  box-shadow: none;
}

.docs-premium-shell .step-header,
.docs-premium-shell .resource-header {
  align-items: flex-start;
}

.docs-premium-shell .step-tips,
.docs-premium-shell .shortcuts-table {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.docs-premium-shell .tips-list li,
.docs-premium-shell .alert-list li,
.docs-premium-shell .issue-list li {
  color: var(--docs-muted);
}

.docs-premium-shell code,
.docs-premium-shell kbd {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--docs-accent);
}

.docs-premium-shell .shortcut-row,
.docs-premium-shell .shortcut-item {
  border-color: rgba(255, 255, 255, 0.07);
}

.docs-premium-shell .shortcut-row:hover,
.docs-premium-shell .shortcut-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.docs-premium-shell .kbd-enhanced,
.docs-premium-shell .shortcut-key kbd {
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.28);
}

.docs-premium-shell .search-input,
.docs-premium-shell .search-input-enhanced {
  border-radius: 8px;
  border-color: var(--docs-border);
  background: rgba(9, 9, 9, 0.74);
}

.docs-premium-shell .category-header {
  padding: 18px 22px;
}

.docs-premium-shell .category-content.expanded {
  padding-bottom: 18px;
}

@media (max-width: 768px) {
  .docs-premium-shell {
    padding: 34px 18px 0;
  }

  .docs-premium-shell .docs-header {
    padding-top: 52px;
    margin-bottom: 42px;
  }

  .docs-premium-shell .docs-content {
    gap: 48px;
  }

  .docs-premium-shell .doc-card,
  .docs-premium-shell .category-card,
  .docs-premium-shell .resource-card,
  .docs-premium-shell .suggestion-category,
  .docs-premium-shell .step-card,
  .docs-premium-shell .trouble-item,
  .docs-premium-shell .next-step-card {
    padding: 20px;
  }
}

/* ── Don't Trust, Check — Page Specific Styles ── */

/* Diagram */
.dtc-diagram {
  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 24px;
  margin: 24px 0;
  text-align: center;
  overflow-x: auto;
}

.dtc-diagram-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  font-size: 14px;
}

.dtc-diagram-node {
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 600;
  white-space: nowrap;
  min-width: 140px;
}

.dtc-diagram-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.dtc-node-renderer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
}

.dtc-node-main {
  background: rgba(255, 171, 29, 0.12);
  border: 1px solid rgba(255, 171, 29, 0.3);
  color: #ffab1d;
}

.dtc-node-api {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.dtc-node-devtools {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  min-width: auto;
}

.dtc-diagram-arrow {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 8px;
  flex-shrink: 0;
}

.dtc-diagram-footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.dtc-diagram-caption {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.dtc-diagram-caption strong {
  color: #f87171;
}

/* Tables */
.dtc-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.dtc-table-wrapper.dtc-table-danger {
  border-color: rgba(248, 113, 113, 0.3);
}

.dtc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.dtc-table th {
  background: rgba(255, 255, 255, 0.05);
  color: #ffab1d;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dtc-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.dtc-table tr:last-child td {
  border-bottom: none;
}

.dtc-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.dtc-table td strong {
  color: white;
}

.dtc-table td code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.9em;
  color: #ffab1d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.dtc-thead-danger th {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
}

.dtc-check-green {
  color: #4ade80;
  font-size: 18px;
}

.dtc-check-red {
  color: #f87171;
  font-size: 18px;
}

/* Code blocks */
.dtc-code-block {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px 24px;
  overflow-x: auto;
  margin: 16px 0 24px;
}

.dtc-code-block pre {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.dtc-code-block code {
  font-family: inherit;
  color: inherit;
}

/* Callouts */
.dtc-callout {
  border-radius: 12px;
  padding: 20px 24px;
  margin: 20px 0;
  display: flex;
  gap: 14px;
}

.dtc-callout-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.dtc-callout-body {
  flex: 1;
}

.dtc-callout-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 14px;
}

.dtc-callout-body strong {
  color: white;
}

.dtc-callout-body code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 0.9em;
  color: #ffab1d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.dtc-callout-warning {
  background: rgba(255, 171, 29, 0.08);
  border: 1px solid rgba(255, 171, 29, 0.2);
}

.dtc-callout-tip {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
}

.dtc-callout-info {
  background: rgba(96, 165, 250, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
}

/* Badge */
.dtc-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  vertical-align: middle;
  margin-left: 8px;
}

.dtc-badge-green {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

/* Provider Grid */
.dtc-provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.dtc-provider-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

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

.dtc-provider-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.dtc-provider-info {
  flex: 1;
}

.dtc-provider-name {
  font-weight: 600;
  font-size: 14px;
  color: white;
}

.dtc-provider-domain {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Summary Grid */
.dtc-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  margin: 20px 0;
}

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

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

.dtc-summary-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: block;
}

.dtc-summary-label {
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 6px;
}

.dtc-summary-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.dtc-summary-card-strike .dtc-summary-label {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.5);
}

.dtc-summary-card-strike .dtc-summary-desc {
  color: #f87171;
}

/* Don't Trust, Check — professional audit layout */
.dtc-page {
  max-width: 1180px;
}

.dtc-page .docs-subtitle {
  max-width: 760px;
  margin: 0 auto;
}

.dtc-page .docs-content {
  gap: 72px;
}

.dtc-hero {
  padding-top: 64px;
  margin-bottom: 76px;
  text-align: center;
}

.dtc-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 40px;
  text-align: left;
}

.dtc-hero-copy,
.dtc-terminal,
.dtc-step-card,
.dtc-inspection-card,
.dtc-verdict-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.dtc-hero-copy {
  padding: clamp(26px, 4vw, 42px);
}

.dtc-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 10px;
  border: 1px solid rgba(255, 171, 29, 0.28);
  border-radius: 6px;
  background: rgba(255, 171, 29, 0.1);
  color: #ffc247;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dtc-hero-copy h2 {
  max-width: 640px;
  margin: 0 0 16px;
  color: white;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

.dtc-hero-copy p,
.dtc-section-summary,
.dtc-step-card p,
.dtc-inspection-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}

.dtc-hero-copy p {
  max-width: 620px;
  margin: 0;
}

.dtc-terminal {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #090909;
}

.dtc-terminal-bar {
  display: flex;
  gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dtc-terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.dtc-terminal pre {
  flex: 1;
  margin: 0;
  padding: 24px;
  overflow: auto;
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
}

.dtc-section-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.dtc-section-heading .section-title {
  margin-bottom: 10px;
}

.dtc-section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 171, 29, 0.28);
  border-radius: 8px;
  background: rgba(255, 171, 29, 0.09);
  color: #ffc247;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.dtc-section-summary {
  max-width: 780px;
  margin: 0;
}

.dtc-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dtc-step-card,
.dtc-inspection-card,
.dtc-verdict-card {
  padding: 24px;
  min-width: 0;
}

.dtc-step-card {
  position: relative;
  overflow: hidden;
}

.dtc-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffc247, #ff9d00);
  color: #080808;
  font-size: 13px;
  font-weight: 800;
}

.dtc-step-card h3,
.dtc-inspection-card h3,
.dtc-verdict-card h3 {
  margin: 0 0 10px;
  color: white;
  font-size: 20px;
  line-height: 1.25;
}

.dtc-step-card p,
.dtc-inspection-card p {
  margin: 0 0 16px;
}

.dtc-step-card code,
.dtc-inspection-card code,
.dtc-verdict-card code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 2px 6px;
  color: #ffc247;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}

.dtc-page .dtc-code-block {
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
}

.dtc-page .dtc-code-block pre {
  white-space: pre;
}

.dtc-video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.dtc-video-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 171, 29, 0.24);
  border-radius: 8px;
  background: rgba(255, 171, 29, 0.08);
  color: #ffc247;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.dtc-video-link:hover {
  border-color: rgba(255, 171, 29, 0.4);
  background: rgba(255, 171, 29, 0.13);
  color: #ffd37a;
}

.dtc-inspection-layout,
.dtc-verdict-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.dtc-page .dtc-provider-grid {
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 18px 0 0;
}

.dtc-page .dtc-provider-card {
  display: block;
  padding: 14px 16px;
  border-radius: 8px;
  min-width: 0;
}

.dtc-page .dtc-provider-domain {
  overflow-wrap: anywhere;
}

.dtc-verdict-card {
  border-color: rgba(255, 255, 255, 0.09);
}

.dtc-verdict-card-good {
  background: rgba(74, 222, 128, 0.055);
  border-color: rgba(74, 222, 128, 0.16);
}

.dtc-verdict-card-bad {
  background: rgba(248, 113, 113, 0.055);
  border-color: rgba(248, 113, 113, 0.16);
}

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

.dtc-check-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.dtc-check-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc247;
  transform: translateY(-50%);
}

.dtc-verdict-card-good .dtc-check-list li::before {
  background: #4ade80;
}

.dtc-verdict-card-bad .dtc-check-list li::before {
  background: #f87171;
}

.dtc-alternative-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dtc-alternative-list li {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 700;
}

.dtc-page .dtc-table-wrapper {
  border-radius: 8px;
}

/* Responsive — Don't Trust, Check */
@media (max-width: 768px) {
  .dtc-hero {
    padding-top: 42px;
    margin-bottom: 56px;
  }

  .dtc-hero-panel,
  .dtc-step-grid,
  .dtc-inspection-layout,
  .dtc-verdict-grid {
    grid-template-columns: 1fr;
  }

  .dtc-section-heading {
    grid-template-columns: 1fr;
  }

  .dtc-alternative-list {
    grid-template-columns: 1fr;
  }

  .dtc-diagram-flow {
    flex-direction: column;
    gap: 8px;
  }

  .dtc-diagram-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
  }

  .dtc-provider-grid {
    grid-template-columns: 1fr;
  }

  .dtc-summary-grid {
    grid-template-columns: 1fr;
  }

  .dtc-callout {
    padding: 16px;
  }

  .dtc-code-block {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .dtc-diagram-node {
    min-width: 120px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .dtc-provider-card {
    padding: 12px 16px;
  }

  .dtc-summary-card {
    padding: 16px;
  }

  .dtc-table td,
  .dtc-table th {
    padding: 10px 12px;
    font-size: 13px;
  }
}

.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));
}
