@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.05);
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #f8fafc;
  transition: background-color 0.3s ease;
}

body.dark {
  background: #0f172a;
  color: #f1f5f9;
}

header {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
  margin: -20px -20px 0;
  padding: 20px;
}

.dark header {
  background: rgba(15, 23, 42, 0.8);
}

.header-content {
  display: flex;
  justify-content: flex-end;
  max-width: 800px;
  margin: 0 auto;
}

.theme-toggle {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dark .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.05);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

h2 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 0.5rem;
  margin-top: 2.5rem;
}

.dark h2 {
  color: #e2e8f0;
  border-bottom-color: #60a5fa;
}

.hero-image {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: translateY(-5px);
}

.image-caption {
  text-align: center;
  color: #666;
  margin-top: -1rem;
  margin-bottom: 2rem;
}

.dark .image-caption {
  color: #94a3b8;
}

blockquote {
  background-color: #e7f5ff;
  border-left: 5px solid #3498db;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
}

.dark blockquote {
  background-color: rgba(56, 189, 248, 0.1);
  border-left-color: #60a5fa;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.example-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dark .example-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.example-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.example-card:hover img {
  transform: scale(1.02);
}

.example-card h3 {
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.dark .example-card h3 {
  color: #60a5fa;
}

.example-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.dark .example-card a {
  color: #60a5fa;
}

.example-card a:hover {
  color: #1d4ed8;
}

ul#ai-editors {
  list-style: none;
  padding: 0;
}

ul#ai-editors li {
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.dark ul#ai-editors li {
  background: rgba(30, 41, 59, 0.3);
}

ul#ai-editors li:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.8);
}

.dark ul#ai-editors li:hover {
  background: rgba(30, 41, 59, 0.5);
}

footer {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem 0;
  color: #666;
}

.dark footer {
  color: #94a3b8;
}

@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  h1 {
    font-size: 2rem;
  }

  .example-grid {
    grid-template-columns: 1fr;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeIn 0.6s ease-out forwards;
}



  
  
  
  