/* Minimal Blog Theme CSS */
:root {
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --border-color: #374151;
    --link-color: #60a5fa;
    --link-hover: #93c5fd;
}

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

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

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

/* Navigation */
nav {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95) 0%, rgba(31, 41, 55, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.blog-logo {
    width: 40px;
    height: 40px;
    display: block;
    margin-right: 0.75rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.5);
    color: white;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 600; }
h6 { font-size: 1rem; font-weight: 600; }

p {
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.post-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(249, 250, 251, 0.9);
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--link-hover);
}

/* Utility Classes */
.text-gray-400 { color: var(--text-secondary); }
.bg-gray-800 { background-color: var(--bg-secondary); }
.border-gray-800 { border-color: var(--border-color); }

.hover\:bg-gray-700:hover {
    background-color: #374151;
}

.hover\:text-blue-400:hover {
    color: var(--link-color);
}

/* Flexbox utilities */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.items-center { align-items: center; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }

/* Grid utilities */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Spacing */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.pt-8 { padding-top: 2rem; }

/* Layout */
.min-h-screen { min-height: 100vh; }
.max-w-4xl { max-width: 56rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Text */
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-style: solid; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded { border-radius: 0.25rem; }

/* Transitions */
.transition-colors {
    transition-property: color, background-color, border-color;
    transition-duration: 200ms;
}

/* Prose content styling */
.prose {
    max-width: 65ch;
}

.prose-invert {
    color: var(--text-primary);
}

.prose-lg {
    font-size: 1.125rem;
}

.prose.max-w-none {
    max-width: none;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
}

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

.prose li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.75rem;
    padding-left: 1.75rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    color: rgba(249, 250, 251, 0.9);
}

.prose code {
    background-color: var(--bg-secondary);
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
}

.prose pre {
    background-color: var(--bg-secondary);
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.prose pre code {
    background-color: transparent;
    padding: 0;
}

.prose blockquote {
    border-left: 4px solid var(--border-color);
    padding-left: 1rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
}

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.prose hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8) 0%, rgba(31, 41, 55, 0.6) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(147, 197, 253, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--link-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    position: relative;
}

/* Blog Post Cards Enhancement */
.blog-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.6) 0%, rgba(17, 24, 39, 0.8) 100%);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 1rem;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.blog-card:hover {
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card-no-image .blog-card-content {
    padding: 2.5rem;
}

.blog-card-header {
    margin-bottom: 1.5rem;
}

.blog-card-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.blog-card-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-card-excerpt {
    color: rgba(249, 250, 251, 0.85);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 1rem;
}

.blog-card-excerpt p {
    margin-bottom: 1rem;
}

.blog-card-excerpt p:last-child {
    margin-bottom: 0;
}

.read-more-link {
    color: var(--link-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.75rem;
    transition: color 0.2s ease;
}

.read-more-link:hover {
    color: var(--link-hover);
}

.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.5rem;
}

.tag {
    background: rgba(55, 65, 81, 0.8);
    color: var(--text-secondary);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.tag:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--link-color);
    transform: translateY(-1px);
}

/* Hero Image - Full Width */
.post-hero-image {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin: 0 0 2.5rem 0;
    border-radius: 0.75rem;
}

.post-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Minimalist Post Header */
.post-header-minimal {
    padding: 0;
    margin-bottom: 2.5rem;
}

.post-title-minimal {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.post-meta-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(55, 65, 81, 0.3);
}

.post-meta-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.meta-separator {
    color: rgba(156, 163, 175, 0.5);
}

.post-tags-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-inline {
    background: rgba(55, 65, 81, 0.6);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(55, 65, 81, 0.8);
}

.tag-inline:hover {
    background: rgba(96, 165, 250, 0.1);
    border-color: rgba(96, 165, 250, 0.3);
    color: var(--link-color);
}

/* Old styles kept for compatibility */
.post-header {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.4) 0%, rgba(17, 24, 39, 0.6) 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(96, 165, 250, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--link-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.5rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.post-meta-item::before {
    content: '•';
    color: var(--link-color);
    font-weight: bold;
}

.post-meta-item:first-child::before {
    content: '📅';
}

.post-meta-item:nth-child(2)::before {
    content: '👤';
}

.post-meta-item:nth-child(3)::before {
    content: '⏱️';
}

.post-meta-item:nth-child(4)::before {
    content: '📊';
}

.post-breadcrumb {
    margin-bottom: 1rem;
    position: relative;
}

.post-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.post-breadcrumb a:hover {
    color: var(--link-color);
}

.post-tags-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    position: relative;
}

.post-tag {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(55, 65, 81, 0.8) 100%);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(96, 165, 250, 0.2);
    text-decoration: none;
}

.post-tag:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(55, 65, 81, 0.9) 100%);
    border-color: rgba(96, 165, 250, 0.4);
    color: var(--link-color);
    transform: translateY(-2px);
}

/* Post Content Enhancement */
.post-content {
    position: relative;
}

.post-content h2 {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.post-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.post-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.post-content blockquote {
    background: rgba(31, 41, 55, 0.5);
    border-left: 4px solid var(--link-color);
    border-radius: 0.5rem;
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
    margin: 2rem 0;
    position: relative;
    font-style: italic;
}

.post-content blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--link-color);
    position: absolute;
    top: 0.5rem;
    left: 0.75rem;
    opacity: 0.2;
    line-height: 1;
}

.post-content blockquote p {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

/* Table Styling */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: rgba(31, 41, 55, 0.4);
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(55, 65, 81, 0.6);
}

.post-content thead {
    background: rgba(55, 65, 81, 0.6);
}

.post-content thead th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
    font-size: 0.9375rem;
}

.post-content tbody tr {
    border-bottom: 1px solid rgba(55, 65, 81, 0.4);
}

.post-content tbody tr:last-child {
    border-bottom: none;
}

.post-content tbody tr:hover {
    background: rgba(55, 65, 81, 0.3);
}

.post-content tbody td {
    padding: 1rem 1.25rem;
    color: rgba(249, 250, 251, 0.9);
    line-height: 1.6;
    vertical-align: top;
}

.post-content tbody td:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.post-content pre {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.post-content pre::before {
    content: 'Code';
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Post Navigation */
.post-navigation {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.4) 0%, rgba(17, 24, 39, 0.6) 100%);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.post-nav-link {
    display: block;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(55, 65, 81, 0.5);
    position: relative;
    overflow: hidden;
}

.post-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.1), transparent);
    transition: left 0.5s ease;
}

.post-nav-link:hover::before {
    left: 100%;
}

.post-nav-link:hover {
    background: rgba(96, 165, 250, 0.05);
    border-color: rgba(96, 165, 250, 0.3);
    transform: translateY(-2px);
}

.post-nav-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.post-nav-title {
    color: var(--text-primary);
    font-weight: 600;
}

/* Back to Blog Button */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(55, 65, 81, 0.8) 100%);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 0.75rem;
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    margin-bottom: 2rem;
}

.back-to-blog:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2) 0%, rgba(55, 65, 81, 0.9) 100%);
    border-color: rgba(96, 165, 250, 0.5);
    transform: translateX(-4px);
}

/* Featured Images & Media Enhancement */
.featured-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.featured-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Blog Card Featured Images */
.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.02);
}

/* Cards without images get special styling */
.blog-card-no-image {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(17, 24, 39, 0.9) 100%);
    border-left: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.blog-card-no-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-no-image:hover::after {
    opacity: 1;
}

/* Content Images */
.post-content img {
    border-radius: 0.75rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 2rem auto;
    display: block;
    max-width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* CTA Banner - Inline Promotion */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2.5rem 0;
    animation: fadeInUp 0.5s ease-out;
}

.cta-banner.dismissed {
    display: none;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-text {
    flex: 1;
    min-width: 200px;
    color: var(--text-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cta-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #a855f7 0%, #06b6d4 100%);
    color: white !important;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.5);
    color: white !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile CTA Banner */
@media (max-width: 768px) {
    .cta-banner {
        padding: 1.25rem;
        margin: 2rem 0;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .cta-icon {
        display: none;
    }

    .cta-text {
        font-size: 0.875rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

/* Lazy Loading */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-image.loaded {
    opacity: 1;
}

.lazy-placeholder {
    background: linear-gradient(90deg, rgba(55, 65, 81, 0.8) 25%, rgba(96, 165, 250, 0.1) 50%, rgba(55, 65, 81, 0.8) 75%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 0.75rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }

    .post-content h2 {
        margin-top: 2.5rem;
        margin-bottom: 1.25rem;
        font-size: 1.5rem;
    }

    .post-content h3 {
        margin-top: 2rem;
        margin-bottom: 0.875rem;
        font-size: 1.25rem;
    }

    .post-content h4 {
        margin-top: 1.75rem;
        font-size: 1.125rem;
    }

    .post-content p {
        font-size: 1rem;
        line-height: 1.75;
    }

    .post-content li {
        font-size: 1rem;
        line-height: 1.75;
    }

    .container {
        padding: 0 0.5rem;
    }

    nav .container {
        padding: 0 1rem;
    }

    .blog-logo {
        width: 32px;
        height: 32px;
    }

    nav .text-xl {
        font-size: 0.9375rem;
        white-space: nowrap;
    }

    nav .flex.justify-between {
        gap: 1rem;
    }

    nav .cta-button {
        padding: 0.5rem 0.625rem;
        font-size: 0.9375rem;
        white-space: nowrap;
    }

    .hero-section {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .blog-card-content {
        padding: 1.5rem;
    }

    .blog-card-no-image .blog-card-content {
        padding: 2rem;
    }

    .blog-card-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .blog-card-header {
        margin-bottom: 1rem;
    }

    .blog-card-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        font-size: 0.8125rem;
    }

    .blog-card-excerpt {
        font-size: 0.9375rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .blog-card-image {
        height: 200px;
    }

    .post-hero-image {
        margin-bottom: 2rem;
        border-radius: 0.5rem;
    }

    .post-hero-image img {
        height: 250px;
    }

    .post-header-minimal {
        margin-bottom: 2rem;
    }

    .post-title-minimal {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .post-meta-minimal {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .post-meta-left {
        font-size: 0.875rem;
    }

    .post-header {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .post-title {
        font-size: 2.25rem;
    }

    .post-meta {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .post-meta-item {
        font-size: 0.8rem;
    }

    .post-navigation {
        padding: 1.5rem;
    }

    .back-to-blog {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }

    .image-gallery {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .gallery-item img {
        height: 150px;
    }

    /* Mobile Table Styles */
    .post-content table {
        font-size: 0.875rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .post-content thead th {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .post-content tbody td {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
}