@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: #ffffff;
  color: #1d1d1f;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #1d1d1f;
}

.nav-blur {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-spacing {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3rem 0;
  gap: 0.5rem;
}

.pagination a,
.pagination span {
  padding: 0.5rem 1rem;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: #4a5568;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background-color: #f7fafc;
  border-color: #cbd5e0;
}

.pagination .current {
  background-color: #3182ce;
  color: white;
  border-color: #3182ce;
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination .disabled:hover {
  background-color: transparent;
  border-color: #e2e8f0;
}

/* Article List Styles */
.article-list {
  max-width: 4rem;
  margin: 0 auto;
}

.article-item {
  border-bottom: 1px solid #e2e8f0;
  padding: 2rem 0;
}

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

.article-meta {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-title a {
  color: #1a202c;
  text-decoration: none;
}

.article-title a:hover {
  color: #3182ce;
}

.article-excerpt {
  color: #4a5568;
  line-height: 1.6;
}

.article-tags {
  margin-top: 1rem;
}

.article-tag {
  display: inline-block;
  background-color: #e2e8f0;
  color: #4a5568;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.article-tag:hover {
  background-color: #cbd5e0;
}