:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --text-primary: #1a1a2e;
  --text-secondary: #6c7293;
  --text-light: #8892b0;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --accent-color: #667eea;
  --success-color: #10b981;
  --warning-color: #f59e0b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Announcement Banner */
.announcement-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
  z-index: 999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-top: 70px;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.announcement-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.announcement-text {
  color: white;
  font-size: 0.95rem;
}

.announcement-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.announcement-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* Font Awesome Icon Styles */
.fa, .fas, .far, .fab {
  display: inline-block;
  margin-right: 0.5rem;
}

.feature-icon i,
.pillar-icon i,
.value-icon i,
.edition-overview-icon i,
.preview-icon i {
  color: #667eea;
  font-size: 1rem; /* Default size */
}

.feature-icon,
.pillar-icon,
.value-icon,
.edition-overview-icon,
.preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-image {
  height: 70px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-color);
}

.btn-primary, .btn-secondary {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: var(--primary-gradient);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23a)"/><circle cx="800" cy="300" r="200" fill="url(%23a)"/><circle cx="400" cy="700" r="250" fill="url(%23a)"/></svg>') no-repeat center center;
  background-size: cover;
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #a8edea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #a8edea;
  min-width: 4.5rem;
  text-align: center;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  line-height: 1.2;
  margin-top: 0.25rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pipeline-visual {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pipeline-step {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.pipeline-arrow {
  font-size: 1.5rem;
  opacity: 0.7;
}

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Features Section */
.features {
  background: var(--bg-secondary);
}

.editions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.edition-card {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
}

.edition-card.advanced {
  border: 2px solid var(--accent-color);
  transform: scale(1.05);
}

.edition-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.edition-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.edition-badge {
  padding: 0.375rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.edition-badge {
  background: var(--bg-secondary);
  color: var(--text-secondary);
}

.edition-badge.premium {
  background: var(--primary-gradient);
  color: white;
}

.edition-badge.enterprise {
  background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
  color: white;
}

.edition-features {
  list-style: none;
}

.edition-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Providers Section */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.provider-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.provider-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
}

.provider-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.provider-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.provider-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Architecture Section */
.architecture {
  background: var(--bg-secondary);
}

.pipeline-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pipeline-stage {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.pipeline-stage:hover {
  transform: translateY(-3px);
}

.stage-number {
  background: var(--primary-gradient);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.pipeline-stage h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pipeline-stage p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.pipeline-connector {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Documentation Section */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.doc-section {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  border-left: 4px solid var(--accent-color);
}

.doc-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.doc-section ul {
  list-style: none;
}

.doc-section li {
  margin-bottom: 0.5rem;
}

.doc-section a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.doc-section a:hover {
  color: var(--accent-color);
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-section h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #a8edea;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #8892b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 2rem;
  text-align: center;
  color: #8892b0;
}

/* Installation Section Styles */
.installation {
  background: var(--bg-secondary);
}

.installation-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.tab-button {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.tab-button:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.tab-button.active {
  background: var(--accent-color);
  color: white;
  border-color: var(--accent-color);
}

.tab-content {
  display: none;
  margin-top: 3rem;
}

.tab-content.active {
  display: block;
}

.installation-hero h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.installation-hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.installation-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.step-card {
  display: flex;
  gap: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-color);
}

.step-number {
  background: var(--accent-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.code-block {
  position: relative;
  background: #2d3748;
  border-radius: 8px;
  margin: 1rem 0;
  overflow: hidden;
}

.code-block pre {
  margin: 0;
  padding: 1.5rem;
  overflow-x: auto;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.copy-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.copy-button:hover {
  background: rgba(255, 255, 255, 0.2);
}

.copy-button.copied {
  background: var(--success-color);
  border-color: var(--success-color);
}

.step-note {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid var(--success-color);
  border-radius: 4px;
}

.step-note p {
  margin: 0;
  color: var(--success-color);
  font-weight: 500;
}

.success-banner {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(34, 197, 94, 0.1));
  border: 1px solid var(--success-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.success-banner h4 {
  color: var(--success-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-banner p {
  color: var(--text-secondary);
  margin: 0;
}

.requirements-section {
  margin: 2rem 0;
}

.requirements-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1rem 0;
}

.requirements-grid.advanced {
  border-left: 4px solid var(--accent-color);
  padding-left: 1rem;
}

.requirement-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.req-label {
  font-weight: 500;
  color: var(--text-primary);
}

.req-value {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.installation-method {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.installation-method h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.config-example {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--warning-color);
}

.config-example h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.checklist-section {
  margin: 2rem 0;
}

.checklist-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--bg-card);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.checkbox-item:hover {
  background: rgba(102, 126, 234, 0.1);
}

.checkbox-item input[type="checkbox"] {
  margin: 0;
  transform: scale(1.2);
}

.advanced-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem 0;
}

.advanced-step {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.advanced-step h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testing-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testing-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.test-group {
  margin: 2rem 0;
}

.test-group h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.expected-result {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  border-left: 3px solid var(--success-color);
  border-radius: 4px;
}

.expected-result.blocked {
  background: rgba(239, 68, 68, 0.1);
  border-left-color: #ef4444;
}

.expected-result strong {
  color: var(--success-color);
  font-weight: 600;
}

.expected-result.blocked strong {
  color: #ef4444;
}

.expected-result code {
  background: rgba(0, 0, 0, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-size: 0.9rem;
}

/* Plugin Pipeline Section Styles */
.plugin-pipeline {
  background: var(--bg-primary);
  padding: 80px 0;
}

.plugin-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

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

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.benefit-card ul {
  list-style: none;
  padding: 0;
}

.benefit-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
}

.benefit-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Plugin Architecture */
.plugin-architecture {
  margin: 4rem 0;
}

.plugin-architecture h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.architecture-diagram {
  background: var(--bg-secondary);
  border-radius: 16px;
  padding: 3rem;
  margin: 2rem 0;
}

.plugin-layer {
  text-align: center;
  margin-bottom: 3rem;
}

.plugin-layer h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.plugin-components {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.component {
  background: var(--bg-card);
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-weight: 500;
  color: var(--text-primary);
}

.plugin-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.plugin-category {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.plugin-category.oss {
  border-top: 4px solid var(--success-color);
}

.plugin-category.enterprise {
  border-top: 4px solid var(--accent-color);
}

.plugin-category.custom {
  border-top: 4px solid var(--warning-color);
}

.plugin-category h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.plugin-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plugin-item {
  background: var(--bg-secondary);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: background-color 0.3s ease;
}

.plugin-item:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--accent-color);
}

/* Plugin Types Grid */
.plugin-types-section {
  margin: 4rem 0;
}

.plugin-types-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.plugin-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.plugin-type-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.plugin-type-card:hover {
  transform: translateY(-3px);
}

.plugin-type-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.plugin-type-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.plugin-type-card ul {
  list-style: none;
  padding: 0;
}

.plugin-type-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.plugin-type-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Plugin Lifecycle */
.plugin-lifecycle {
  margin: 4rem 0;
}

.plugin-lifecycle h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.lifecycle-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.lifecycle-step {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.lifecycle-step:hover {
  transform: translateY(-3px);
}

.lifecycle-step .step-number {
  background: var(--accent-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.lifecycle-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.lifecycle-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lifecycle-arrow {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Code Example Tabs */
.plugin-code-example {
  margin: 4rem 0;
}

.plugin-code-example h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.code-example-tabs {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.code-tab-buttons {
  display: flex;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.code-tab-button {
  flex: 1;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.code-tab-button:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--accent-color);
}

.code-tab-button.active {
  background: var(--bg-card);
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}

.code-tab-content {
  display: none;
  padding: 2rem;
}

.code-tab-content.active {
  display: block;
}

/* Plugin Commands */
.plugin-commands {
  margin: 4rem 0;
}

.plugin-commands h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.commands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.command-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.command-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Plugin Resources */
.plugin-resources {
  margin: 4rem 0;
}

.plugin-resources h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.resource-card ul {
  list-style: none;
  padding: 0;
}

.resource-card li {
  margin-bottom: 0.5rem;
}

.resource-card a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.resource-card a:hover {
  color: var(--accent-color);
}

/* Configuration Section Styles */
.configuration {
  background: var(--bg-secondary);
  padding: 80px 0;
}

.config-overview {
  margin: 3rem 0;
}

.config-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.config-intro p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.config-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.config-feature {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.config-feature:hover {
  transform: translateY(-3px);
}

.config-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.config-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.config-feature p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Configuration Structure */
.config-structure {
  margin: 4rem 0;
}

.config-structure h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.file-structure {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Configuration Tabs */
.config-sections {
  margin: 4rem 0;
}

.config-sections h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.config-tabs {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.config-tab-buttons {
  display: flex;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.config-tab-button {
  flex: 1;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.config-tab-button:hover {
  background: rgba(102, 126, 234, 0.1);
  color: var(--accent-color);
}

.config-tab-button.active {
  background: var(--bg-card);
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  font-weight: 600;
}

.config-tab-content {
  display: none;
  padding: 2rem;
}

.config-tab-content.active {
  display: block;
}

.config-tab-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Environment Configuration */
.environment-config {
  margin: 4rem 0;
}

.environment-config h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.env-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.env-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Environment Variables */
.environment-variables {
  margin: 4rem 0;
}

.environment-variables h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.env-vars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.env-var-category {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.env-var-category h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.env-var-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.env-var {
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.env-var code {
  background: rgba(102, 126, 234, 0.1);
  color: var(--accent-color);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Monaco', 'Consolas', monospace;
  font-weight: 600;
  font-size: 0.85rem;
}

/* Configuration Hierarchy */
.configuration-hierarchy {
  margin: 4rem 0;
}

.configuration-hierarchy h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.hierarchy-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hierarchy-step {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 160px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hierarchy-step:hover {
  transform: translateY(-3px);
}

.hierarchy-number {
  background: var(--accent-color);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.hierarchy-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.hierarchy-step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.hierarchy-arrow {
  font-size: 1.5rem;
  color: var(--accent-color);
  font-weight: bold;
}

/* Best Practices */
.config-best-practices {
  margin: 4rem 0;
}

.config-best-practices h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.practice-card {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.practice-card:hover {
  transform: translateY(-3px);
}

.practice-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.practice-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.practice-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.practice-card li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.practice-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Troubleshooting */
.config-troubleshooting {
  margin: 4rem 0;
}

.config-troubleshooting h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
}

.troubleshoot-section {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.troubleshoot-section h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }
  
  .editions-grid {
    grid-template-columns: 1fr;
  }
  
  .edition-card.advanced {
    transform: none;
  }
  
  .pipeline-flow {
    flex-direction: column;
  }
  
  .pipeline-connector {
    transform: rotate(90deg);
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav-container {
    padding: 0 1rem;
  }
  
  section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .step-card {
    flex-direction: column;
    gap: 1rem;
  }
  
  .step-number {
    align-self: flex-start;
  }
  
  .installation-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab-button {
    min-width: 200px;
    text-align: center;
  }
  
  .code-block pre {
    font-size: 0.8rem;
    padding: 1rem;
  }
  
  .copy-button {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .pipeline-visual {
    padding: 1rem;
  }
  
  .pipeline-step {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }
}

/* ============================================
   Deployment Architecture Styles
   ============================================ */

/* Main Documentation Tabs */
.docs-main-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.docs-main-tab-button {
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(102, 126, 234, 0.2);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.docs-main-tab-button:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.docs-main-tab-button.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Main Documentation Tab Content */
.docs-main-tab-content {
    display: none;
    margin-top: 3rem;
}

.docs-main-tab-content.active {
    display: block;
}

/* Documentation content containers with proper alignment */
.getting-started-content,
.user-guide-content,
.plugin-pipeline,
.configuration-content,
.deployment-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Deployment Tabs (Sub-tabs under Deployment) */
.deployment-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.deployment-tab-button {
    background: rgba(102, 126, 234, 0.1);
    color: var(--text-primary);
    border: 2px solid rgba(102, 126, 234, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.deployment-tab-button:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
}

.deployment-tab-button.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

/* Tab Content */
.deployment-tab-content {
    display: none;
    margin-top: 2rem;
}

.deployment-tab-content.active {
    display: block;
}

/* Architecture Diagram */
.architecture-diagram {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(102, 126, 234, 0.1));
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.arch-layer {
    margin-bottom: 2rem;
}

.arch-layer:last-child {
    margin-bottom: 0;
}

.arch-layer h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.arch-components {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.arch-component {
    background: var(--bg-card);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.arch-component.primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.arch-component:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Deployment Patterns */
.deployment-patterns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pattern-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.pattern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pattern-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pattern-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pattern-card ul {
    list-style: none;
    padding: 0;
}

.pattern-card li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pattern-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Single Server Deployment */
.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flow-item {
    background: var(--bg-card);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    color: var(--text-primary);
    min-width: 120px;
    text-align: center;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

/* Deployment Steps */
.deployment-step {
    margin: 2rem 0;
}

.deployment-step h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Command List */
.command-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.command-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.command-item code {
    background: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.command-item span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Kubernetes Architecture */
.k8s-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.k8s-layer {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.k8s-layer:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.k8s-layer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.k8s-layer span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Manifest Sections */
.manifest-section {
    margin: 2rem 0;
}

.manifest-section h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Multi-Cloud Architecture */
.cloud-regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.cloud-region {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.cloud-region.aws::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #ff9900;
}

.cloud-region.azure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0078d4;
}

.cloud-region.gcp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #4285f4;
}

.cloud-region h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.cloud-region ul {
    list-style: none;
    padding: 0;
}

.cloud-region li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
}

.global-services {
    margin-top: 2rem;
    text-align: center;
}

.global-services h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.global-service-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.global-service-list span {
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.monitoring-layer {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.monitoring-layer:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.monitoring-layer h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.monitoring-layer span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

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

.metric-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.metric-card code {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    display: block;
    word-break: break-all;
}

/* Alert Rules */
.alert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.alert-rule {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-left: 4px solid #ef4444;
}

.alert-rule strong {
    color: #ef4444;
    font-weight: 600;
}

.alert-rule p {
    margin: 0.5rem 0 0 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Security Architecture */
.security-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.security-step {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.security-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.security-step h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-step ul {
    list-style: none;
    padding: 0;
}

.security-step li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.security-step li::before {
    content: "🔒";
    position: absolute;
    left: 0;
}

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

.backup-component {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.backup-component:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.backup-component h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.backup-component p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Deployment Section */
@media (max-width: 1024px) {
    .deployment-patterns {
        grid-template-columns: 1fr;
    }
    
    .cloud-regions {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .docs-main-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .docs-main-tab-button {
        min-width: 250px;
        text-align: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .deployment-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .deployment-tab-button {
        min-width: 200px;
        text-align: center;
    }
    
    .arch-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .command-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .security-flow {
        grid-template-columns: 1fr;
    }
    
    .monitoring-layers {
        grid-template-columns: 1fr;
    }
    
    .backup-flow {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .arch-components {
        flex-direction: column;
    }
    
    .arch-component {
        text-align: center;
    }
    
    .global-service-list {
        flex-direction: column;
        align-items: center;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* Provider Integration Section Styles */
.providers {
    padding: 4rem 0;
    background: #f8f9fa;
}

.providers .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.highlight-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.highlight-card p {
    color: #666;
    font-size: 0.95rem;
}

.provider-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.provider-tab-button {
    padding: 0.75rem 1.5rem;
    background: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #666;
    min-width: 150px;
}

.provider-tab-button:hover {
    background: var(--accent-color);
    color: white;
}

.provider-tab-button.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(29, 78, 216, 0.3);
}

.provider-tab-content {
    display: none;
}

.provider-tab-content.active {
    display: block;
}

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

.provider-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.provider-logo {
    font-size: 2rem;
}

.provider-item h3 {
    color: var(--primary-color);
    margin: 0;
}

.provider-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge.streaming {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.badge.multimodal {
    background: rgba(147, 51, 234, 0.1);
    color: #7c3aed;
}

.badge.enterprise {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}

.badge.cost-effective {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.config-toggle {
    background: none;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.config-toggle:hover {
    background: var(--accent-color);
    color: white;
}

.config-example {
    margin-top: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: none;
}

.config-example.show {
    display: block;
}

.config-example pre {
    margin: 0;
    padding: 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    overflow-x: auto;
}

.framework-architecture {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.arch-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.arch-step {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    color: var(--primary-color);
    text-align: center;
    min-width: 120px;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--accent-color);
    font-weight: bold;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 1.5rem;
}

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

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 1rem;
}

.performance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.performance-table th,
.performance-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.performance-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.performance-table tr:hover {
    background: #f8f9fa;
}

.cost-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.cost-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cost-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cost-label {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design for Provider Section */
@media (max-width: 768px) {
    .providers {
        padding: 2rem 0;
    }
    
    .providers .container {
        padding: 0 1rem;
    }
    
    .provider-tabs {
        flex-direction: column;
    }
    
    .provider-tab-button {
        min-width: 100%;
        text-align: center;
    }
    
    .provider-grid {
        grid-template-columns: 1fr;
    }
    
    .arch-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .performance-table {
        font-size: 0.9rem;
    }
    
    .performance-table th,
    .performance-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .providers .container {
        padding: 0 0.5rem;
    }
    
    .provider-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* YAML Configuration Tab Styles */
.yaml-configuration-guide {
    max-width: 1200px;
    margin: 0 auto;
}

.config-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.approach-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-left: 4px solid var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    min-width: 4.5rem;
    text-align: center;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.stat-example {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.decision-tree {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

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

.decision-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.approach-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.approach-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

.time-badge {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.approach-1 .approach-number { background: #10b981; }
.approach-2 .approach-number { background: #f59e0b; }
.approach-3 .approach-number { background: #ef4444; }

.approach-1 .time-badge { background: #10b981; }
.approach-2 .time-badge { background: #f59e0b; }
.approach-3 .time-badge { background: #ef4444; }

.examples {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.config-examples {
    margin: 2rem 0;
}

.config-example-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--success-color);
}

.config-example-card h5 {
    color: var(--success-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.complete-config,
.env-vars {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Admin API Styles */
.admin-api-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.admin-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.capability-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-color);
}

.capability-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.capability-item h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.access-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.access-card {
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.access-card.allowed {
    background: white;
    border-left: 4px solid #10b981;
}

.access-card.denied {
    background: white;
    border-left: 4px solid #ef4444;
}

.access-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.access-card.allowed h5 {
    color: #10b981;
}

.access-card.denied h5 {
    color: #ef4444;
}

.alternatives {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.requirement-list {
    margin: 1rem 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.req-check {
    font-size: 1.2rem;
}

.auth-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.auth-method {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.code-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.code-example {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.code-example h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.endpoint-categories {
    margin: 2rem 0;
}

.endpoint-category {
    background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.endpoint-category h5 {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
}

.endpoint-table {
    display: table;
    width: 100%;
}

.endpoint-row {
    display: table-row;
}

.endpoint-row.header {
    background: #f8f9fa;
    font-weight: bold;
}

.endpoint-col {
    display: table-cell;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.endpoint-row:last-child .endpoint-col {
    border-bottom: none;
}

.method {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.method.get {
    background: #10b981;
    color: white;
}

.method.post {
    background: #3b82f6;
    color: white;
}

.use-case {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.use-case h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.security-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #f59e0b;
}

.security-section h5 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.security-example {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.security-example h5 {
    color: #92400e;
    margin-bottom: 1rem;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.next-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--success-color);
    text-align: center;
}

.next-step h5 {
    color: var(--success-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Plugins Section Styles */
.plugins {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.plugins .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.plugin-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.plugins .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plugins .section-header h2 {
    text-align: center;
}

.plugins .section-header p {
    text-align: center;
}

.plugin-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M12 15.5A3.5 3.5 0 0 1 8.5 12A3.5 3.5 0 0 1 12 8.5a3.5 3.5 0 0 1 3.5 3.5a3.5 3.5 0 0 1-3.5 3.5m7.43-2.53c.04-.32.07-.64.07-.97c0-.33-.03-.66-.07-1l2.11-1.63c.19-.15.24-.42.12-.64l-2-3.46c-.12-.22-.39-.31-.61-.22l-2.49 1c-.52-.39-1.06-.73-1.69-.98l-.37-2.65A.506.506 0 0 0 14 2h-4c-.25 0-.46.18-.5.42l-.37 2.65c-.63.25-1.17.59-1.69.98l-2.49-1c-.22-.09-.49 0-.61.22l-2 3.46c-.13.22-.07.49.12.64L4.57 11c-.04.34-.07.67-.07 1c0 .33.03.65.07.97l-2.11 1.66c-.19.15-.25.42-.12.64l2 3.46c.12.22.39.3.61.22l2.49-1.01c.52.4 1.06.74 1.69.99l.37 2.65c.04.24.25.42.5.42h4c.25 0 .46-.18.5-.42l.37-2.65c.63-.26 1.17-.59 1.69-.99l2.49 1.01c.22.08.49 0 .61-.22l2-3.46c.12-.22.07-.49-.12-.64l-2.11-1.66Z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.plugin-ecosystem {
    margin: 3rem 0;
}

.plugin-ecosystem h3,
.plugin-use-cases h3,
.plugin-architecture h3,
.custom-plugin-dev h3,
.plugin-examples h3,
.plugin-getting-started h3,
.plugin-best-practices h3 {
    text-align: left;
}

.plugin-ecosystem p,
.plugin-use-cases p,
.plugin-architecture p,
.custom-plugin-dev p,
.plugin-examples p,
.plugin-getting-started p,
.plugin-best-practices p {
    text-align: left;
}

.plugin-category {
    background: white;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.plugin-category h4 {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.2rem;
}

.plugin-table {
    display: table;
    width: 100%;
}

.plugin-row {
    display: table-row;
}

.plugin-row.header {
    background: #f8f9fa;
    font-weight: bold;
}

.plugin-col {
    display: table-cell;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    text-align: left;
}

.plugin-row:last-child .plugin-col {
    border-bottom: none;
}

.edition {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.edition.both {
    background: #10b981;
    color: white;
}

.edition.advanced {
    background: #f59e0b;
    color: white;
}

.plugin-col ul {
    margin: 0;
    padding-left: 1.2rem;
}

.plugin-col li {
    margin-bottom: 0.5rem;
}

.plugin-use-cases {
    margin: 3rem 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.use-case-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.use-case-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.use-case-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.use-case-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.use-case-card li {
    margin-bottom: 0.75rem;
}

.plugin-architecture {
    margin: 3rem 0;
}

.architecture-overview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.architecture-overview h4 {
    text-align: left;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.lifecycle-diagram {
    margin: 2rem 0;
    text-align: left;
}

.lifecycle-step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.lifecycle-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.lifecycle-step h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.lifecycle-step ul {
    margin: 0;
    padding-left: 1.2rem;
}

.lifecycle-step li {
    margin-bottom: 0.5rem;
    text-align: left;
}

.lifecycle-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1.5rem 0;
    font-weight: bold;
}

.custom-plugin-dev {
    margin: 3rem 0;
}

.dev-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.dev-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--success-color);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.dev-step h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
}

.plugin-examples {
    margin: 3rem 0;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.example-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.example-card h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.plugin-getting-started {
    margin: 3rem 0;
}

.getting-started-steps {
    margin: 2rem 0;
}

.gs-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.gs-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.gs-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plugin-best-practices {
    margin: 3rem 0;
}

.best-practices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.practice-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--warning-color);
}

.practice-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.practice-card h4 {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

.practice-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.practice-card li {
    margin-bottom: 0.5rem;
}

/* Wag-Tail Introduction Styles */
.wagtail-intro {
    margin-bottom: 4rem;
}

.wagtail-intro h1,
.wagtail-intro h2,
.wagtail-intro h3,
.wagtail-intro h4,
.wagtail-intro h5,
.wagtail-intro h6,
.wagtail-intro p,
.wagtail-intro div,
.wagtail-intro li {
    text-align: left !important;
}

.wagtail-intro .section-header {
    text-align: left !important;
    margin-bottom: 3rem;
    padding-left: 0;
    margin-left: 0;
}

.wagtail-intro .section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left !important;
    padding-left: 0;
    margin-left: 0;
}

.wagtail-intro .section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left !important;
    padding-left: 0;
    margin-left: 0;
    max-width: none;
}

.quick-start {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.quick-start h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.quick-start-note {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid var(--primary-color);
}

.core-problems {
    margin: 3rem 0;
}

.core-problems h3 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 2rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.problem-content p {
    margin-bottom: 1rem;
}

.problem-content ul {
    margin: 0.5rem 0 1rem 1.2rem;
}

.problem-content li {
    margin-bottom: 0.5rem;
}

.architecture-overview {
    margin: 3rem 0;
}

.architecture-overview h3 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 2rem;
}

.architecture-diagram {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.arch-layer {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
}

.arch-layer.main-gateway {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: 2px solid var(--primary-color);
}

.arch-layer h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.arch-layer p {
    margin: 0;
    opacity: 0.8;
}

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

.arch-component {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
}

.arch-component strong {
    display: block;
    margin-bottom: 0.5rem;
}

.arch-component ul {
    margin: 0;
    padding-left: 1rem;
    font-size: 0.9rem;
}

.arch-component li {
    margin-bottom: 0.25rem;
}

.arch-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
    font-weight: bold;
}

.performance-benchmarks {
    margin: 3rem 0;
}

.performance-benchmarks h3 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 2rem;
}

.benchmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benchmark-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--success-color);
}

.benchmark-card h4 {
    color: var(--success-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.benchmark-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    /* background: #f8f9fa; */
    background: #f8f9fa4d;
    border-radius: 8px;
}

.stat.highlight {
    background: var(--success-color);
    color: white;
    font-weight: bold;
}

.stat-label {
    font-size: 0.9rem;
}

.stat-value {
    font-weight: bold;
    font-size: 1.1rem;
}

.editions-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.config-testing {
    margin: 2rem 0;
}

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

.test-step {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.test-step h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Responsive Design for YAML Config */
@media (max-width: 768px) {
    .approach-stats {
        grid-template-columns: 1fr;
    }
    
    .decision-grid {
        grid-template-columns: 1fr;
    }
    
    .test-steps {
        grid-template-columns: 1fr;
    }
    
    .approach-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}

/* Adding New Models Tab Styles */
.add-models-guide {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-selection {
    margin: 2rem 0;
}

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

.approach-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.approach-card.config-only {
    border-left: 4px solid #10b981;
}

.approach-card.openai-compatible {
    border-left: 4px solid #f59e0b;
}

.approach-card.full-plugin {
    border-left: 4px solid #ef4444;
}

.approach-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.difficulty {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.difficulty.easy {
    background: #d1fae5;
    color: #065f46;
}

.difficulty.medium {
    background: #fef3c7;
    color: #92400e;
}

.difficulty.hard {
    background: #fee2e2;
    color: #991b1b;
}

.time-estimate {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.example-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    margin: 0.75rem 0 0.25rem 0;
}

.approach-card ul {
    margin: 0;
    padding-left: 1.5rem;
}

.approach-card li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.step-by-step-guides {
    margin: 2rem 0;
}

.step-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.step-section h4 {
    margin-bottom: 1.5rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.approach-3-steps .plugin-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.plugin-step {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.plugin-note {
    background: #e0f2fe;
    border-left: 4px solid #0ea5e9;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.real-examples {
    margin: 2rem 0;
}

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

.example-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--success-color);
}

.example-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.example-header h5 {
    color: var(--success-color);
    margin: 0;
}

.example-time {
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.example-card p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

/* Responsive Design for Add Models */
@media (max-width: 768px) {
    .approach-cards {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .plugin-overview {
        grid-template-columns: 1fr;
    }
    
    .approach-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Simple Getting Started Section */
.simple-start {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.start-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.start-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.start-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.start-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.start-card .btn-primary,
.start-card .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.start-card .btn-primary {
    background: var(--primary-color);
    color: white;
}

.start-card .btn-primary:hover {
    background: var(--accent-color);
}

.start-card .btn-secondary {
    background: #f8f9fa;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
}

.start-card .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Editions Section */
.editions {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.editions-grid.three-editions {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 1400px;
  margin: 3rem auto;
}

.edition-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.edition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.edition-card.basic {
  border-color: #10b981;
}

.edition-card.advanced {
  border-color: var(--primary-color);
  position: relative;
}

.edition-card.enterprise {
  border-color: #f59e0b;
  background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.edition-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f1f5f9;
}

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

.edition-header h3 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.edition-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.edition-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.edition-description {
  color: var(--text-secondary);
  font-size: 1rem;
}

.edition-features ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 2rem 0;
}

.edition-features li {
  padding: 0.5rem 0;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.edition-ideal {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid var(--primary-color);
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.edition-action {
  text-align: center;
  margin-top: 2rem;
}

.edition-action .btn-primary {
  display: inline-block;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.edition-action .btn-primary:hover {
  background: var(--accent-color);
}

/* Editions Comparison */
.editions-comparison {
  margin-top: 4rem;
}

.editions-comparison h3 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.comparison-table-wrapper {
  overflow-x: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th {
  background: var(--primary-color);
  color: white;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  color: var(--text-primary);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  background: #f8fafc;
}

.comparison-table tr:hover {
  background: #f8fafc;
}

