/* Advanced Blog Post Styling */
.article-header {
  padding: 2rem;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.article-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
  animation: shimmer 8s infinite linear;
  pointer-events: none;
}

@keyframes shimmer {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.article-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.breadcrumb {
  margin-bottom: 2rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #4158D0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #C850C0;
  text-decoration: underline;
}

.prose {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333;
}

.prose h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #4158D0;
  font-size: 1.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.prose h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #4158D0, #C850C0);
  border-radius: 3px;
}

.prose p {
  margin-bottom: 1.5rem;
}

.prose ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  position: relative;
}

.prose li::before {
  content: '•';
  color: #C850C0;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.prose em {
  color: #C850C0;
  font-style: italic;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }
  
  .prose {
    font-size: 1rem;
  }
}

/* Image styling */
.prose img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
  transition: transform 0.3s ease;
}

.prose img:hover {
  transform: scale(1.02);
}

/* Code block styling */
.prose code {
  background: #f5f5f5;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: #C850C0;
}

.prose pre {
  background: #f8f8f8;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  border-left: 4px solid #4158D0;
  margin: 1.5rem 0;
}

/* Blockquote styling */
.prose blockquote {
  border-left: 4px solid #C850C0;
  padding-left: 1rem;
  margin-left: 0;
  margin-right: 0;
  font-style: italic;
  color: #555;
  background: rgba(200, 80, 192, 0.05);
  padding: 1rem;
  border-radius: 0 8px 8px 0;
}