body {
    font: 400 16px/1.5 -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Segoe UI Emoji", "Segoe UI Symbol",
        "Apple Color Emoji", Roboto, Helvetica, Arial, sans-serif;
}

h1 {
    font-size: 1.8rem;
}
h2 {
    font-size: 1.5rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    /* padding-bottom:2px; */
    margin-top: -10px;
    /* margin-bottom:2px; */
    border-bottom: 1px solid #efefef;
    font-size:80%;
}

@media screen and (min-width: 768px) {
    body { padding-top: 5rem; }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%) !important;
    color: white !important;
    margin-top: -2rem;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    overflow: hidden;
}

.hero-section * {
    color: white !important;
}

.hero-section .text-primary {
    color: white !important;
}

.hero-section .lead {
    color: white !important;
}

/* Icon Circle Styles */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Hover Effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Professional Tool Grid Styles */
.tool-grid .card {
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

.tool-grid .card:hover {
    border-left-color: #28a745;
    transform: translateX(5px);
}

.tool-usage-count {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* CTA Button Enhancements */
.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Badge Styles */
.badge {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

/* Blog-specific styles */
.hover-card {
    transition: all 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4, .blog-content h5, .blog-content h6 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content h1 { font-size: 2rem; }
.blog-content h2 { font-size: 1.75rem; }
.blog-content h3 { font-size: 1.5rem; }
.blog-content h4 { font-size: 1.25rem; }

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

.blog-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
}

.blog-content pre {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    padding: 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content code {
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.9em;
    color: #e83e8c;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.blog-content a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.blog-content a:hover {
    border-bottom-color: #007bff;
}

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

/* Quick note styling */
.badge.bg-info {
    background-color: rgba(13, 202, 240, 0.1) !important;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(33, 37, 41, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-banner-text {
    color: #e9ecef;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-banner .btn-outline-secondary {
    color: #adb5bd;
    border-color: #6c757d;
}

.cookie-banner .btn-outline-secondary:hover {
    background: #6c757d;
    color: white;
}

@media (max-width: 576px) {
    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Dark mode adjustments */
[data-bs-theme="dark"] .blog-content {
    color: #e9ecef;
}

[data-bs-theme="dark"] .blog-content blockquote {
    color: #adb5bd;
}

[data-bs-theme="dark"] .blog-content pre {
    background-color: #212529;
    border-color: #495057;
}

[data-bs-theme="dark"] .blog-content code {
    background-color: #212529;
    color: #f8f9fa;
}

[data-bs-theme="dark"] .hover-card:hover {
    box-shadow: 0 8px 25px rgba(255,255,255,0.1) !important;
}

/* Ad Container Styles - Minimal, non-intrusive */
.ad-container {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--bs-border-color, #dee2e6);
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
    margin: 2rem 0;
    background-color: var(--bs-body-bg, transparent);
}

.ad-container ins {
    max-width: 100%;
}

.ad-container::before {
    content: "Advertisement";
    display: block;
    font-size: 0.7rem;
    color: var(--bs-secondary, #6c757d);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dark mode ad container */
[data-bs-theme="dark"] .ad-container {
    border-color: var(--bs-border-color, #495057);
}

/* =====================================================
   SEO CRAWLER FEATURE SECTION
   ===================================================== */

.crawler-feature-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.crawler-feature-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.crawler-feature-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-list li {
    font-size: 1.05rem;
}

.feature-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Crawler Preview Wrapper */
.crawler-preview-wrapper {
    position: relative;
    padding: 20px;
}

.crawler-preview {
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Preview Header (macOS style) */
.preview-header {
    background: linear-gradient(180deg, #3a3a3c 0%, #2c2c2e 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px 16px 0 0;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.preview-dots .dot.red { background: #ff5f57; }
.preview-dots .dot.yellow { background: #ffbd2e; }
.preview-dots .dot.green { background: #28c840; }

.preview-title {
    color: #98989d;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Preview Input Group */
.preview-input-group {
    padding: 16px;
    background: #f8f9fa;
    display: flex;
    gap: 12px;
    align-items: center;
}

.preview-input {
    flex: 1;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.9rem;
}

.preview-input i {
    color: #6c757d;
}

.typing-text {
    color: #212529;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(20) infinite;
    max-width: 0;
}

.typing-cursor {
    animation: blink 0.7s infinite;
    color: #007bff;
    font-weight: bold;
}

.preview-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    user-select: none;
}

.animated-btn {
    animation: btnPulse 8s ease-in-out infinite;
}

/* Progress Section */
.preview-progress-section {
    padding: 20px 16px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.preview-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
}

.preview-stats .stat {
    text-align: center;
}

.preview-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    animation: countUp 8s ease-out infinite;
}

.preview-stats .stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.animated-counter {
    animation: counterFadeIn 8s ease-out infinite;
}

.preview-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #007bff 0%, #28a745 100%);
    border-radius: 4px;
    animation: progressFill 8s ease-out infinite;
    width: 0%;
}

.progress-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-align: center;
    animation: fadeInOut 8s infinite;
}

/* Results Preview */
.preview-results {
    padding: 0 16px 16px;
    background: white;
}

.result-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    font-size: 0.85rem;
}

.result-row.row-1 { animation: resultAppear 8s ease-out infinite; animation-delay: 3s; }
.result-row.row-2 { animation: resultAppear 8s ease-out infinite; animation-delay: 3.5s; }
.result-row.row-3 { animation: resultAppear 8s ease-out infinite; animation-delay: 4s; }
.result-row.row-4 { animation: resultAppear 8s ease-out infinite; animation-delay: 4.5s; }

.result-status {
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
    min-width: 40px;
    text-align: center;
}

.result-status.status-ok {
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
}

.result-status.status-warning {
    background: rgba(255, 193, 7, 0.2);
    color: #997a00;
}

.result-status.status-error {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}

.result-url {
    color: #007bff;
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 0.8rem;
    min-width: 100px;
}

.result-title {
    color: #6c757d;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Keyframe Animations */
@keyframes typing {
    0%, 10% { max-width: 0; }
    30%, 100% { max-width: 200px; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes btnPulse {
    0%, 20% { transform: scale(1); box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2); }
    25% { transform: scale(1.05); box-shadow: 0 4px 16px rgba(40, 167, 69, 0.4); }
    30%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2); }
}

@keyframes progressFill {
    0%, 25% { width: 0%; }
    70% { width: 78%; }
    90%, 100% { width: 78%; }
}

@keyframes counterFadeIn {
    0%, 20% { opacity: 0; transform: scale(0.8); }
    30%, 90% { opacity: 1; transform: scale(1); }
    95%, 100% { opacity: 0; transform: scale(0.8); }
}

@keyframes resultAppear {
    0%, 35% { opacity: 0; transform: translateY(10px); }
    45%, 90% { opacity: 1; transform: translateY(0); }
    95%, 100% { opacity: 0; transform: translateY(0); }
}

@keyframes fadeInOut {
    0%, 25% { opacity: 1; }
    90% { opacity: 1; }
    95%, 100% { opacity: 0; }
}

/* Dark mode for crawler section */
[data-bs-theme="dark"] .crawler-feature-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

[data-bs-theme="dark"] .crawler-feature-section::before {
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
}

[data-bs-theme="dark"] .glass-card {
    background: rgba(30, 30, 40, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .preview-input-group {
    background: #2d2d3a;
}

[data-bs-theme="dark"] .preview-input {
    background: #1a1a2e;
    border-color: #3d3d4a;
}

[data-bs-theme="dark"] .preview-input i,
[data-bs-theme="dark"] .typing-text {
    color: #e9ecef;
}

[data-bs-theme="dark"] .preview-progress-section,
[data-bs-theme="dark"] .preview-results {
    background: #1a1a2e;
}

[data-bs-theme="dark"] .preview-progress-bar {
    background: #3d3d4a;
}

[data-bs-theme="dark"] .result-row {
    background: #2d2d3a;
}

[data-bs-theme="dark"] .preview-stats .stat-value {
    color: #e9ecef;
}

/* =====================================================
   ENHANCED HERO & CARDS (Modern SaaS Style)
   ===================================================== */

/* Floating shapes in hero */
.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Enhanced badge styling */
.hero-section .badge {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Tool category cards enhancement */
.tool-category-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tool-category-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 123, 255, 0.1);
}

[data-bs-theme="dark"] .tool-category-card {
    background: rgba(40, 40, 50, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        margin-left: -15px;
        margin-right: -15px;
        padding: 3rem 15px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .blog-content {
        font-size: 1rem;
    }

    .blog-content h1 { font-size: 1.75rem; }
    .blog-content h2 { font-size: 1.5rem; }
    .blog-content h3 { font-size: 1.25rem; }

    .ad-container {
        margin: 1.5rem 0;
        padding: 0.75rem 0;
    }

    /* Crawler section responsive */
    .crawler-feature-section {
        padding: 2rem 0;
    }

    .crawler-feature-section h2 {
        font-size: 1.75rem;
    }

    .crawler-preview-wrapper {
        padding: 10px;
    }

    .preview-input-group {
        flex-direction: column;
    }

    .preview-input {
        width: 100%;
    }

    .preview-btn {
        width: 100%;
        justify-content: center;
    }

    .preview-stats .stat-value {
        font-size: 1.2rem;
    }

    .result-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .result-url {
        min-width: auto;
        flex-basis: 100%;
        order: 3;
    }

    .result-title {
        display: none;
    }
}

/* =====================================================
   MODERN BLOG DESIGN
   ===================================================== */

/* Blog Hero Section */
.blog-hero {
    padding: 2rem 0;
}

.blog-title-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Featured Post Card */
.featured-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.featured-badge {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #7c5e00;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}

.featured-gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-gradient-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.featured-icon-wrapper {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Modern Blog Cards */
.modern-blog-card {
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.modern-blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.modern-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(102, 126, 234, 0.2);
}

.modern-blog-card:hover::before {
    transform: scaleX(1);
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-blog-card:hover .card-accent {
    opacity: 1;
}

.card-title-hover {
    position: relative;
    transition: color 0.2s ease;
}

.modern-blog-card:hover .card-title-hover a {
    color: #667eea !important;
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Tag Pills */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-pill {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tag-pill:hover {
    background: rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

/* Note Badge */
.note-badge {
    background: linear-gradient(135deg, #13d2f0 0%, #0dcaf0 100%);
    color: white;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(13, 202, 240, 0.3);
}

/* Article Page Styles */
.article-header {
    padding-top: 2rem;
}

.article-title {
    line-height: 1.2;
    color: #1a1a2e;
}

.article-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #6c757d;
}

.article-byline {
    border-bottom: 2px solid #e9ecef;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Enhanced Blog Content */
.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2d3748;
}

.blog-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    color: #1a1a2e;
}

.blog-content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    margin: 2rem 0;
    transition: transform 0.3s ease;
}

.blog-content img:hover {
    transform: scale(1.02);
}

.blog-content blockquote {
    border-left: 4px solid #667eea;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4a5568;
}

.blog-content pre {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.5rem;
    overflow-x: auto;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-content code {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
}

.blog-content pre code {
    background: transparent;
    color: #d4d4d4;
    padding: 0;
}

.blog-content a {
    color: #667eea;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.2s ease;
    font-weight: 500;
}

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

/* Share Section */
.share-section h6 {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.share-btn {
    transition: all 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Empty State */
.empty-state {
    padding: 4rem 2rem;
}

/* Dark Mode Adjustments */
[data-bs-theme="dark"] .blog-title-gradient {
    background: linear-gradient(135deg, #8b9eff 0%, #9d7bc6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-bs-theme="dark"] .featured-post-card,
[data-bs-theme="dark"] .modern-blog-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .article-title,
[data-bs-theme="dark"] .blog-content h2,
[data-bs-theme="dark"] .blog-content h3 {
    color: #e9ecef;
}

[data-bs-theme="dark"] .blog-content {
    color: #cbd5e0;
}

[data-bs-theme="dark"] .blog-content blockquote {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
    color: #a0aec0;
}

[data-bs-theme="dark"] .blog-content pre {
    background: #0d1117;
    border-color: #30363d;
}

[data-bs-theme="dark"] .blog-content code {
    background: rgba(102, 126, 234, 0.15);
}

[data-bs-theme="dark"] .featured-post-card:hover,
[data-bs-theme="dark"] .modern-blog-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .featured-post-card .display-6 {
        font-size: 1.75rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .blog-content {
        font-size: 1rem;
    }

    .featured-icon-wrapper {
        font-size: 3rem;
    }

    .blog-hero {
        padding: 1rem 0;
    }

    .blog-title-gradient {
        font-size: 2.5rem;
    }
}