/* General Styles */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 0;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-section h1 {
    color: white;
}

.hero-section .lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.hero-section .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.service-card {
    padding: 20px;
}

.service-icon {
    margin-bottom: 20px;
}

/* Blog Post Styles */
.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

/* Comment Section */
.comments-section .card {
    transition: none;
}

.comments-section .card:hover {
    transform: none;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Button Styles */
.btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,.2);
}

/* Social Links */
.social-links a {
    transition: transform 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--primary-color) !important;
}

/* Footer Styles */
footer {
    margin-top: auto;
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
}

/* Newsletter Section */
.bg-primary {
    background-color: var(--primary-color) !important;
}

/* Features Section */
.feature-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border-radius: 8px;
    margin: 0 5px;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Social Share Buttons */
.social-share .btn {
    margin-bottom: 10px;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
}

/* Skills Badges */
.skills .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
    font-weight: 500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease;
}

/* Search Page */
.input-group-lg .form-control {
    font-size: 1.1rem;
}

/* Loading States */
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

/* ===================================
   POST DETAIL PAGE - MODERN BLOG DESIGN
   =================================== */

/* Typography */
.post-article {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Hero Section */
.post-hero {
    background: #ffffff;
    padding: 3rem 0 0 0;
}

/* Post Header */
.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e8e8e8;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
}

/* Post Meta */
.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.post-date {
    font-size: 0.85rem;
    color: #6b6b6b;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e8e8e8;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b6b6b;
}

.action-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
    color: #1a1a1a;
}

/* Post Content Styling */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 4rem;
}

.post-content p {
    margin-bottom: 1.75rem;
    color: #2d2d2d;
}

.post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #2d2d2d;
}

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

.post-content ul li {
    list-style: none;
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.post-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
}

.post-content ol li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

/* Links */
.post-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.2s ease;
}

.post-content a:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Blockquotes */
.post-content blockquote {
    border-left: 4px solid #667eea;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f9fafb;
    font-style: italic;
    font-size: 1.125rem;
    color: #4a4a4a;
    border-radius: 0 8px 8px 0;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Images */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Inline Code */
.post-content :not(pre) > code {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 5px;
    color: #e63946;
    font-family: 'JetBrains Mono', 'Consolas', monospace;
    font-size: 0.875em;
    font-weight: 500;
    border: 1px solid #e8e8e8;
}

/* Code Blocks - Modern Design */
.post-content pre[class*="language-"] {
    border-radius: 12px;
    margin: 2.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    background: #fafafa !important;
    overflow: hidden;
    position: relative;
    padding: 4rem 2rem 2rem 2rem !important;
}

.post-content code[class*="language-"] {
    font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.9rem;
    line-height: 1.7;
    background: #fafafa;
    color: #1f2328;
    text-shadow: none;
}

/* Code Block Header */
.post-content pre[class*="language-"]::before {
    content: attr(data-language);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-content pre[class*="language-"]::after {
    content: '{ }';
    position: absolute;
    top: 10px;
    right: 90px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Syntax Highlighting Colors */
.token.comment { color: #6a737d; font-style: italic; }
.token.string { color: #0a3069; }
.token.number, .token.boolean { color: #0550ae; }
.token.keyword { color: #cf222e; font-weight: 600; }
.token.function { color: #8250df; font-weight: 500; }
.token.operator, .token.punctuation { color: #1f2328; }

/* Copy Button */
div.code-toolbar > .toolbar {
    position: absolute;
    top: 8px;
    right: 16px;
    z-index: 10;
}

div.code-toolbar > .toolbar > .toolbar-item > button {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2328;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif;
}

div.code-toolbar > .toolbar > .toolbar-item > button:hover {
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

div.code-toolbar > .toolbar > .toolbar-item > button.copied {
    background: #2da44e;
    color: white;
    border-color: #2da44e;
}

/* Scrollbar */
.post-content pre[class*="language-"]::-webkit-scrollbar {
    height: 8px;
}

.post-content pre[class*="language-"]::-webkit-scrollbar-track {
    background: #e8e8e8;
    border-radius: 10px;
}

.post-content pre[class*="language-"]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
}

/* Tags */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e8e8e8;
}

.tag {
    background: #f5f5f5;
    color: #667eea;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.tag:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
}

/* Author Card */
.author-card {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 4rem;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.author-card-avatar {
    flex-shrink: 0;
}

.author-card-avatar i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 2.5rem;
}

.author-card-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.author-card-content p {
    color: #6b6b6b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Comments Section */
.comments-section {
    margin-top: 4rem;
}

.comments-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comments-title i {
    color: #667eea;
}

/* Comment Form */
.comment-form-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 3rem;
    border: 1px solid #e8e8e8;
}

.comment-form-card h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.comment-form-card input,
.comment-form-card textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.comment-form-card input:focus,
.comment-form-card textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.comment-form-card textarea {
    min-height: 120px;
    resize: vertical;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.comment-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #667eea;
    font-size: 1.25rem;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.comment-date {
    font-size: 0.85rem;
    color: #6b6b6b;
}

.comment-text {
    color: #2d2d2d;
    line-height: 1.6;
    margin: 0;
}

.no-comments {
    text-align: center;
    padding: 3rem;
    color: #6b6b6b;
}

.no-comments i {
    font-size: 3rem;
    color: #d0d0d0;
    margin-bottom: 1rem;
}

/* Tables */
.post-content table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.post-content table th,
.post-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e8e8e8;
}

.post-content table th {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    font-weight: 600;
    color: #1a1a1a;
}

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

.post-content table tr:hover {
    background: #fafafa;
}

/* Horizontal Rule */
.post-content hr {
    margin: 3rem 0;
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #e8e8e8, transparent);
}

/* Responsive Design */
@media (max-width: 768px) {
    .post-content {
        font-size: 1rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .author-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comment-item {
        flex-direction: column;
    }
}

/* ===================================
   Code Block Styling (Modern Light Theme)
   =================================== */

/* Modern Code Block Container */
.post-content pre[class*="language-"] {
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #d0d7de;
    background: #ffffff !important;
    overflow: hidden;
}

.post-content code[class*="language-"] {
    font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    line-height: 1.7;
    background: #ffffff;
    color: #1f2328;
    text-shadow: none;
}

/* Inline Code */
.post-content :not(pre) > code {
    background-color: #eff1f3;
    padding: 4px 8px;
    border-radius: 6px;
    color: #cf222e;
    font-family: 'Fira Code', 'Consolas', 'Monaco', 'Courier New', monospace;
    font-size: 0.875em;
    font-weight: 500;
    border: 1px solid #d0d7de;
}

/* Prism Light Theme Override - Modern GitHub Style */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #57606a;
    font-style: italic;
}

.token.namespace {
    opacity: .7;
}

.token.string,
.token.attr-value {
    color: #0a3069;
}

.token.punctuation,
.token.operator {
    color: #1f2328;
}

.token.entity,
.token.url,
.token.symbol,
.token.number,
.token.boolean,
.token.variable,
.token.constant,
.token.property,
.token.regex,
.token.inserted {
    color: #0550ae;
}

.token.atrule,
.token.keyword,
.token.attr-name,
.language-autohotkey .token.selector {
    color: #cf222e;
}

.token.function,
.token.deleted,
.language-autohotkey .token.tag {
    color: #8250df;
}

.token.tag,
.token.selector,
.language-autohotkey .token.keyword {
    color: #116329;
}

.token.important,
.token.function,
.token.bold {
    font-weight: 600;
}

.token.italic {
    font-style: italic;
}

/* Code Block Header with Language Badge */
.post-content pre[class*="language-"] {
    position: relative;
    padding-top: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1.5rem;
}

.post-content pre[class*="language-"]::before {
    content: attr(data-language);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
}

/* Add icon before language name */
.post-content pre[class*="language-"]::after {
    content: '{ }';
    position: absolute;
    top: 8px;
    right: 120px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    font-weight: 400;
}

/* Copy Button Styling - Modern Design */
div.code-toolbar {
    position: relative;
}

div.code-toolbar > .toolbar {
    opacity: 1;
    position: absolute;
    top: 6px;
    right: 16px;
    z-index: 10;
}

div.code-toolbar > .toolbar > .toolbar-item {
    display: inline-block;
}

div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
    background: rgba(255, 255, 255, 0.95);
    color: #1f2328;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

div.code-toolbar > .toolbar > .toolbar-item > button:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

div.code-toolbar > .toolbar > .toolbar-item > button:active {
    transform: translateY(0);
}

div.code-toolbar > .toolbar > .toolbar-item > button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.4);
}

div.code-toolbar > .toolbar > .toolbar-item > button.copied {
    background: #2da44e;
    color: white;
    border-color: #2da44e;
}

/* Scrollbar for code blocks - Modern Style */
.post-content pre[class*="language-"]::-webkit-scrollbar {
    height: 10px;
}

.post-content pre[class*="language-"]::-webkit-scrollbar-track {
    background: #f6f8fa;
    border-radius: 10px;
}

.post-content pre[class*="language-"]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    border: 2px solid #f6f8fa;
}

.post-content pre[class*="language-"]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a4191 100%);
}

/* Line Numbers (optional enhancement) */
.post-content pre[class*="language-"] code {
    display: block;
    overflow-x: auto;
}

/* Markdown Content Styling */
.post-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1f2328;
    font-weight: 700;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #f6f8fa;
    position: relative;
}

.post-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1f2328;
    font-weight: 600;
}

.post-content h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #57606a;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #1f2328;
}

.post-content ul, 
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    line-height: 1.8;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content ul li {
    list-style-type: none;
    position: relative;
    padding-left: 1.5rem;
}

.post-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.post-content ol li {
    list-style-type: decimal;
    color: #1f2328;
}

.post-content blockquote {
    border-left: 4px solid #667eea;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    color: #1f2328;
    font-style: italic;
    border-radius: 0 12px 12px 0;
}

.post-content blockquote p:last-child {
    margin-bottom: 0;
}

.post-content hr {
    margin: 2.5rem 0;
    border: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #d0d7de, transparent);
}

.post-content a {
    color: #0969da;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-content table {
    width: 100%;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    overflow: hidden;
}

.post-content table th,
.post-content table td {
    padding: 0.75rem;
    border: 1px solid #d0d7de;
}

.post-content table th {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    font-weight: 600;
    color: #1f2328;
}

.post-content table tr:nth-child(even) {
    background-color: #f6f8fa;
}

.post-content table tr:hover {
    background-color: rgba(102, 126, 234, 0.05);
}
