body { min-height: 100vh; }

.dropdown {
  position: relative;
  display: inline-flex;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 80%;
  left: 0;
  min-width: 200px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 1000;
  margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  color: var(--text);
  text-decoration: none;
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: var(--surface);
  color: var(--primary);
}

.hero {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  border-radius: var(--radius-xl);
  margin: 2rem 0;
}

.hero h1 { font-size: 3rem; margin-bottom: 1rem; font-weight: 700; }
.hero p { font-size: 1.25rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

.feature-grid { margin: 4rem 0; }
.feature-card { text-align: center; }
.feature-card h3 { margin: 1rem 0; color: var(--primary); }

.code-block {
  background: var(--gray-900);
  color: var(--gray-100);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  line-height: 1.8;
}

.theme-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.theme-option {
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.theme-option:hover { border-color: var(--primary); transform: translateY(-2px); }
.theme-option.active { border-color: var(--primary); background: var(--surface); }

.docs-nav {
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.docs-nav a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  border-left: 2px solid transparent;
  transition: all var(--transition);
}

.docs-nav a:hover, .docs-nav a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  background: var(--surface);
}

.team-grid { margin: 2rem 0; }
.team-member { text-align: center; }
.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  margin-top: 1rem;
  color: var(--text-muted);
}
