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

body {
    font-family: 'Inter', sans-serif;
    background: 
        radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at top right, rgba(0, 120, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(0, 120, 212, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
    background-attachment: fixed;
    color: #f0f4f8;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
}

/* Disabled scanlines for cleaner, more solid look */
/*
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 120, 212, 0.005) 2px,
            rgba(0, 120, 212, 0.005) 4px
        );
    pointer-events: none;
    z-index: 0;
    animation: scanlines 0.2s linear infinite;
}
*/

/* Disabled animated particles for solid background */
/*
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%230078d4" opacity="0.08"><animate attributeName="opacity" values="0.08;0.02;0.08" dur="6s" repeatCount="indefinite"/></circle><circle cx="80" cy="30" r="1" fill="%230078d4" opacity="0.06"><animate attributeName="opacity" values="0.06;0.02;0.06" dur="8s" repeatCount="indefinite"/></circle></svg>') repeat;
    pointer-events: none;
    z-index: 0;
}
*/

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

.container { 
    max-width: 700px; 
    margin: 20px auto; 
    padding: 0 16px; 
    padding-top: 64px; 
    position: relative;
    z-index: 1;
}
    
/* Hero Section */
.hero {
    background: linear-gradient(120deg, #0078d4 0%, #1e40af 100%);
    color: #fff;
    padding: 48px 0 32px 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(0,120,212,0.08);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
}

@keyframes heroShimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}
.hero h1 {
    font-size: 3rem;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero .tagline {
    font-size: 1.3rem;
    color: #f0f9ff;
    margin-top: 12px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

header { display: none; } /* Hide old header */

/* Blog Post List */
.post-list { 
    list-style: none; 
    padding: 0; 
    position: relative;
}

.post {
    background: rgba(20, 25, 35, 0.95);
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 120, 212, 0.4);
    position: relative;
}



/* Disabled post overlay patterns for cleaner look */
/*
.post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 120, 212, 0.005) 2px,
            rgba(0, 120, 212, 0.005) 4px
        );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}
*/

.post:hover {
    transform: translateY(-1px);
    box-shadow: 
        0 4px 12px rgba(0, 120, 212, 0.15),
        0 6px 20px rgba(0,0,0,0.3);
    border-color: rgba(0, 120, 212, 0.5);
}

/* Disabled hover overlay effect */
/*
.post:hover::after {
    opacity: 1;
}
*/

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

@keyframes glitch {
    0%, 100% { transform: translateY(-8px) scale(1.02); }
    20% { transform: translateY(-8px) scale(1.02) skew(0.5deg); }
    40% { transform: translateY(-8px) scale(1.02) skew(-0.5deg); }
    60% { transform: translateY(-8px) scale(1.02) skew(0.2deg); }
    80% { transform: translateY(-8px) scale(1.02) skew(-0.2deg); }
}

.post-title { 
    font-size: 1.5rem; 
    margin: 0 0 12px 0; 
    color: #0078d4;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.post-title:hover { 
    color: #1e40af;
    transform: translateX(1px);
}

.post-title i {
    color: #0078d4;
    transition: all 0.3s ease;
}

.post-title:hover i {
    transform: translateX(1px);
    color: #1e40af;
}

/* Disabled glitch animation for professional look */
/*
@keyframes textGlitch {
    0%, 100% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 15px #ff00ff, 0 0 20px #ff00ff; }
    25% { text-shadow: 2px 0 5px #00ff00, 0 0 10px #ff00ff, -2px 0 15px #ffff00, 0 0 20px #ff00ff; }
    50% { text-shadow: -2px 0 5px #ffff00, 0 0 10px #00ff00, 2px 0 15px #ff00ff, 0 0 20px #00ffff; }
    75% { text-shadow: 0 2px 5px #ff00ff, -2px 0 10px #ffff00, 0 -2px 15px #00ff00, 2px 0 20px #00ffff; }
}
*/
.post-date { 
    color: #1e40af; 
    font-size: 0.9rem; 
    margin-bottom: 12px; 
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.5;
}

.post-date i {
    color: #1e40af;
}

.post-excerpt { 
    color: #d1d8e0; 
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Blog Post Thumbnails */
.post-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.post-thumbnail {
    position: relative;
    flex-shrink: 0;
    width: 160px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 120, 212, 0.4);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.1);
}

.thumbnail-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.post-thumbnail:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 120, 212, 0.6);
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-thumbnail:hover .thumbnail-image {
    transform: scale(1.02);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 120, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s ease;
}

.post-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-overlay i {
    color: white;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.post-thumbnail:hover .thumbnail-overlay i {
    transform: scale(1) translateX(2px);
}

.post-details {
    flex: 1;
    min-width: 0; /* Allows text to truncate properly */
}

.post-details .post-title {
    font-size: 1.3rem;
    margin: 0 0 6px 0;
    color: #0078d4;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    line-height: 1.4;
}

.post-details .post-title:hover {
    color: #1e40af;
    transform: translateX(1px);
}

.post-details .post-date {
    margin-bottom: 8px;
}

.post-details .post-excerpt {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

/* Mobile responsiveness for thumbnails */
@media (max-width: 768px) {
    .post-content {
        gap: 12px;
    }
    
    .post-thumbnail {
        width: 120px;
        height: 75px;
    }
    
    .post-details .post-title {
        font-size: 1.2rem;
    }
    
    .post {
        padding: 16px;
        margin-bottom: 16px;
    }
}

@media (max-width: 600px) {
    .post-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .post-thumbnail {
        width: 100%;
        height: 160px;
        align-self: stretch;
    }
    
    .post-details .post-title {
        font-size: 1.2rem;
    }
}

/* Enhanced Typography */
.post-body h1, .post-body h2, .post-body h3 {
    color: #f0f4f8;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.post-body h1 {
    font-size: 2.2rem;
    border-bottom: 2px solid rgba(0, 120, 212, 0.3);
    padding-bottom: 0.5rem;
}

.post-body h2 {
    font-size: 1.8rem;
    color: #0078d4;
    font-weight: 600;
}

.post-body h3 {
    font-size: 1.4rem;
    color: #1e40af;
    font-weight: 600;
}

.post-body p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
}

.post-body blockquote {
    border-left: 4px solid #0078d4;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #d1d8e0;
    background: rgba(0, 120, 212, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Code styling is now handled in the enhanced blog post section */

a { 
    color: #0078d4;
    text-decoration: none; 
    transition: all 0.3s ease; 
    font-weight: 500;
}

a:hover { 
    color: #1e40af;
    text-decoration: underline; 
}

/* Footer */
footer {
    text-align: center;
    color: #d1d8e0;
    font-size: 0.9rem;
    margin: 32px 0 12px 0;
    padding: 16px;
    background: rgba(20, 25, 35, 0.95);
    border-radius: 8px;
    border: 1px solid rgba(0, 120, 212, 0.4);
    position: relative;
    z-index: 1;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    font-weight: 400;
}

.footer-social {
    margin-bottom: 8px;
}

.footer-social a {
    color: #0078d4;
    margin: 0 8px;
    font-size: 1.2rem;
    transition: all 0.2s ease;
    vertical-align: middle;
    display: inline-block;
}

.footer-social a:hover {
    color: #1e40af;
    transform: scale(1.02);
}

@keyframes iconGlitch {
    0%, 100% { transform: translateY(-2px) scale(1.1); }
    25% { transform: translateY(-2px) scale(1.1) skew(5deg); }
    50% { transform: translateY(-2px) scale(1.1) skew(-5deg); }
    75% { transform: translateY(-2px) scale(1.1) skew(2deg); }
}

/* Top Bar */
.topbar {
    width: 100%;
    background: rgba(20, 25, 35, 0.95);
    backdrop-filter: blur(10px);
    color: #e0e6ed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 56px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 120, 212, 0.3);
}



.topbar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0078d4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s ease;
    position: relative;
}

.topbar-title i {
    color: #0078d4;
    transition: color 0.2s ease;
}

.topbar-title:hover {
    color: #1e40af;
}

.topbar-title:hover i {
    color: #1e40af;
}

.topbar-links {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    padding-right: 50px;
}

.topbar-links a {
    color: #0078d4;
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topbar-links a:hover {
    color: #1e40af;
    /* transform: translateY(-1px); */ /* Removed for cleaner look */
}

/* Tablet and small desktop responsiveness */
@media (max-width: 1024px) and (min-width: 601px) {
    .topbar {
        padding: 0 20px;
    }
    
    .topbar-links a {
        margin-left: 16px;
        font-size: 0.95rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .topbar {
        padding: 6px 12px;
        gap: 12px;
    }
    
    .topbar-title {
        font-size: 1rem;
    }
    
    .topbar-links a {
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 6px;
        padding-top: 80px;
    }
}

/* Reading Progress Bar */
.reading-progress {
    position: fixed;
    top: 57px; /* Just below topbar */
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #0078d4, #1e40af);
    z-index: 99;
    transition: width 0.1s ease;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(0, 120, 212, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-to-top:hover {
    background: rgba(124, 58, 237, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Enhanced Post Meta */
.post-meta {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d8e0;
    font-size: 0.9rem;
}

.post-meta-item i {
    color: #0078d4;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.post-tag {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.post-tag:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-1px);
}

/* Table of Contents */
.table-of-contents {
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(0, 120, 212, 0.2);
    position: relative;
}

.table-of-contents h4 {
    color: #0078d4;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    color: #d1d8e0;
    text-decoration: none;
    padding: 0.3rem 0;
    display: block;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 0.8rem;
}

.toc-list a:hover {
    color: #0078d4;
    border-left-color: #0078d4;
    padding-left: 1.2rem;
}

.toc-list .toc-h3 {
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

/* Dark Mode Toggle */
.theme-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 19px;
    height: 19px;
    background: #0078d4;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.3);
}

.theme-toggle.light::before {
    transform: translateX(23px);
    background: #f59e0b;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

/* Light Mode Variables (for future implementation) */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: rgba(15, 15, 25, 0.9);
    --text-primary: #e0e6ed;
    --text-secondary: #b0b7c3;
    --accent-primary: #0078d4;
    --accent-secondary: #7c3aed;
}

/* Responsive */
@media (max-width: 600px) {
    .container { 
        padding: 0 8px; 
        padding-top: 88px; 
    }
    .hero h1 { 
        font-size: 2rem; 
    }
    .hero { 
        padding: 32px 0 20px 0; 
    }
    .topbar {
        flex-direction: row;
        flex-wrap: wrap;
        height: auto;
        padding: 8px 16px;
        justify-content: center;
        gap: 16px;
    }
    
    .topbar-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .topbar-links {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .topbar-links a {
        margin-left: 0;
        font-size: 0.9rem;
    }
    .profile-section {
        padding: 2rem 1rem;
        margin: 0 0 2rem 0;
        border-radius: 15px;
    }
    .profile-pic {
        width: 100px;
        height: 100px;
    }
    .profile-intro h2 {
        font-size: 1.5rem;
    }
    .profile-intro p {
        font-size: 1rem;
    }
    .post {
        padding: 20px;
        margin-bottom: 16px;
    }
    .post-title {
        font-size: 1.3rem;
    }
    .footer-social a {
        margin: 0 8px;
        font-size: 1.2rem;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .interest-item {
        padding: 18px;
    }
    
    .interest-item i {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .interest-item h4 {
        font-size: 1rem;
    }
    
    .interest-item p {
        font-size: 0.85rem;
    }
}

/* Animated Profile Section */
.profile-section {
    position: relative;
    background: rgba(20, 25, 35, 0.95);
    padding: 2rem 1.5rem;
    margin: 0 0 2rem 0;
    border-radius: 8px;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.25),
        0 6px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(0, 120, 212, 0.4);
}

/* Disabled profile section patterns for cleaner look */
/*
.profile-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(0, 120, 212, 0.02) 20px,
            rgba(0, 120, 212, 0.02) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 20px,
            rgba(100, 150, 200, 0.02) 20px,
            rgba(100, 150, 200, 0.02) 40px
        );
    pointer-events: none;
    animation: cyberGrid 8s linear infinite;
}
*/

.profile-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #0078d4;
}

@keyframes cyberGrid {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile-pic-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.profile-pic-glow {
    display: inline-block;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.08), rgba(124, 58, 237, 0.08));
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    position: relative;
}

.profile-pic-glow:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.12), rgba(124, 58, 237, 0.12));
}

.profile-pic {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 120, 212, 0.1);
    background: #0a0a0f;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-pic:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 6px 18px rgba(0, 120, 212, 0.15);
}

.profile-intro {
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.profile-intro h2 {
    color: #0078d4;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    /* animation: fadeInUp 1s ease 0.5s both; */ /* Disabled for professional look */
}

.profile-intro p {
    color: #d1d8e0;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    line-height: 1.6;
    /* animation: fadeInUp 1s ease 0.7s both; */ /* Disabled for professional look */
}

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

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

/* Animated Accent Bar */
.accent-bar {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0078d4, #1e40af);
    background-size: 100% 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    box-shadow: 
        0 0 8px rgba(0, 120, 212, 0.4);
}

/* Single Post Styling */
.post-title-single {
    font-size: 2.5rem;
    color: #e0e6ed !important;
    margin: 0 0 1.5rem 0;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #0078d4, #7c3aed, #00c6fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    width: 100%;
}

.post-title-header {
    padding: 40px 40px 20px 40px;
    text-align: center;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

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

.post-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 120, 212, 0.1);
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0078d4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.back-to-blog:hover {
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
    transform: translateX(-2px);
}

/* Enhanced Blog Post Styling */
article.blog-post {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 120, 212, 0.15),
        0 12px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(0, 120, 212, 0.2);
}

/* Hero Container */
.post-hero-container {
    position: relative;
    width: 100%;
    margin: 0;
}

/* Featured Image Styling */
.post-featured-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    height: 120%; /* Slightly larger for parallax effect */
    object-fit: cover;
    transition: all 0.3s ease;
    transform: translateY(0);
    will-change: transform;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: 
        radial-gradient(ellipse at bottom left, rgba(71, 85, 105, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(30, 41, 59, 0.1) 0%, transparent 60%),
        linear-gradient(
            to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.7) 30%,
            rgba(51, 65, 85, 0.4) 60%,
            transparent 100%
        );
    backdrop-filter: blur(1px);
    display: flex;
    align-items: flex-end;
    padding: 60px 40px 40px;
    min-height: 200px;
}

.hero-content {
    width: 100%;
    z-index: 2;
}

/* Hero Tags - Simple positioning inside image */
.hero-tags {
    position: absolute;
    top: 10px; /* 10px down from top of image */
    right: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 3;
    justify-content: flex-end;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .hero-tags {
        top: 15px;
        right: 15px;
        gap: 6px;
    }
}

.hero-tag {
    background: rgba(0, 0, 0, 0.6);
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: lowercase;
    letter-spacing: 0.3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.hero-title {
    font-size: 3.5rem;
    color: white;
    margin: 0;
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.featured-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 120, 212, 0.3) 0%,
        rgba(124, 58, 237, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.post-meta-overlay {
    width: 100%;
}

/* Legacy styles for posts without featured images */
.post-title-after-image {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 40px;
    margin: 0;
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #0078d4, #7c3aed, #00c6fb) 1;
    position: relative;
    z-index: 2;
}

.post-title-after-image .post-title-single {
    margin: 0;
    text-align: center;
}

.post-category {
    display: inline-block;
}

.post-category span {
    background: rgba(0, 120, 212, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

/* Post Header Enhancements */
.post-header-content {
    padding: 40px;
    padding-bottom: 20px;
}

.post-category-inline {
    margin-bottom: 20px;
}

.category-tag {
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.post-title-single {
    font-size: 2.8rem;
    color: #e0e6ed;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(135deg, #0078d4, #7c3aed, #00c6fb);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #e0e6ed; /* Fallback */
}

.post-excerpt-single {
    font-size: 1.2rem;
    color: #d1d8e0;
    line-height: 1.6;
    margin: 0 0 30px 0;
    font-style: italic;
}

.post-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 120, 212, 0.1);
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.post-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d1d8e0;
    font-size: 0.9rem;
}

.post-meta-item i {
    color: #0078d4;
    font-size: 1rem;
}

/* Post Content Wrapper */
.post-content-wrapper {
    padding: 0 40px 40px 40px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e6ed;
}

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

.post-body h2 {
    font-size: 2rem;
    color: #0078d4;
    margin: 2.5rem 0 1rem 0;
    font-weight: 600;
}

.post-body h3 {
    font-size: 1.5rem;
    color: #7c3aed;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.post-body h4 {
    font-size: 1.3rem;
    color: #00c6fb;
    margin: 1.5rem 0 0.8rem 0;
    font-weight: 600;
}

.post-body blockquote {
    border-left: 4px solid #0078d4;
    background: rgba(0, 120, 212, 0.05);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #d1d8e0;
    position: relative;
}

.post-body blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(0, 120, 212, 0.3);
    position: absolute;
    left: 20px;
    top: -10px;
    font-family: serif;
}

.post-body code {
    background: rgba(0, 120, 212, 0.1);
    color: #00c6fb;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(0, 120, 212, 0.2);
    font-weight: 500;
}

.post-body pre {
    background: rgba(15, 15, 25, 0.95);
    padding: 2rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(0, 120, 212, 0.2);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.post-body pre code {
    background: none !important;
    color: #e0e6ed !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    display: block;
    white-space: pre;
}

/* Enhanced markdown code blocks */
.post-body pre[class*="language-"],
.post-body code[class*="language-"] {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    line-height: 1.6;
}

.post-body pre[class*="language-"] {
    background: rgba(10, 10, 15, 0.98) !important;
    border: 1px solid rgba(0, 120, 212, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.post-body pre[class*="language-"]:before {
    content: attr(class);
    position: absolute;
    top: 0;
    right: 0;
    background: rgba(0, 120, 212, 0.8);
    color: white;
    padding: 4px 12px;
    font-size: 0.75rem;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Umbraco specific markdown styling */
.post-body .markdown-content pre,
.post-body .umb-block-grid pre {
    background: rgba(10, 10, 15, 0.98);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 120, 212, 0.3);
    margin: 2rem 0;
    overflow-x: auto;
    position: relative;
}

.post-body .markdown-content code,
.post-body .umb-block-grid code {
    background: rgba(0, 120, 212, 0.1);
    color: #00c6fb;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', 'Courier New', monospace;
    font-size: 0.9em;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.post-body .markdown-content pre code,
.post-body .umb-block-grid pre code {
    background: none !important;
    color: #e0e6ed !important;
    padding: 0 !important;
    border: none !important;
    display: block;
    line-height: 1.6;
}

/* Syntax highlighting colors for common languages */
.post-body pre .token.comment {
    color: #6a9955;
    font-style: italic;
}

.post-body pre .token.keyword {
    color: #569cd6;
    font-weight: bold;
}

.post-body pre .token.string {
    color: #ce9178;
}

.post-body pre .token.number {
    color: #b5cea8;
}

.post-body pre .token.function {
    color: #dcdcaa;
}

.post-body pre .token.class-name {
    color: #4ec9b0;
}

.post-body pre .token.operator {
    color: #d4d4d4;
}

.post-body pre .token.punctuation {
    color: #d4d4d4;
}

/* Enhanced Post Images */
.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 
        0 8px 25px rgba(0, 120, 212, 0.15),
        0 12px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 120, 212, 0.2);
    transition: all 0.3s ease;
}

.post-body img:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(0, 120, 212, 0.25),
        0 16px 45px rgba(0, 0, 0, 0.4);
    border-color: rgba(124, 58, 237, 0.3);
}

/* Featured-style images (first image in post or large images) */
.post-body p:first-of-type img,
.post-body img[width="460"],
.post-body img[height="460"] {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin: 2.5rem 0;
    box-shadow: 
        0 12px 40px rgba(0, 120, 212, 0.2),
        0 16px 50px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 120, 212, 0.3);
}

.post-body p:first-of-type img:hover,
.post-body img[width="460"]:hover,
.post-body img[height="460"]:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 16px 50px rgba(0, 120, 212, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(124, 58, 237, 0.4);
}

/* Remove default paragraph margins around images */
.post-body p:has(img) {
    margin: 0;
}

.post-body p img {
    display: block;
    margin: 2rem auto;
    cursor: pointer;
    transition: all 0.3s ease;
}

.post-body img {
    cursor: pointer;
}

/* Image Lightbox */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 120, 212, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(0, 120, 212, 0.4);
    transition: all 0.3s ease;
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 40px;
    height: 40px;
    background: rgba(0, 120, 212, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 1001;
}

.lightbox-close:hover {
    background: rgba(124, 58, 237, 0.9);
    transform: scale(1.1);
}

.lightbox-info {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    background: rgba(15, 15, 25, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 120, 212, 0.3);
    color: #e0e6ed;
}

.lightbox-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #d1d8e0;
}

/* Loading spinner for lightbox */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 120, 212, 0.3);
    border-top: 3px solid #0078d4;
    border-radius: 50%;
    animation: lightboxSpin 1s linear infinite;
}

@keyframes lightboxSpin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Mobile lightbox adjustments */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 85vh;
    }
    
    .lightbox-close {
        top: -40px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .lightbox-info {
        bottom: -50px;
        padding: 12px 15px;
    }
    
    .lightbox-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 600px) {
    .lightbox-content {
        max-width: 98vw;
        max-height: 80vh;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        position: fixed;
    }
    
    .lightbox-info {
        bottom: 10px;
        left: 10px;
        right: 10px;
        position: fixed;
    }
}

/* Enhanced Post Tags */
.post-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 120, 212, 0.1);
}

.post-tag {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.post-tag:hover {
    background: rgba(124, 58, 237, 0.2);
    transform: translateY(-1px);
    color: #7c3aed;
}

/* Mobile Responsiveness for Blog Posts */
@media (max-width: 768px) {
    article.blog-post {
        margin: 0 20px;
        border-radius: 16px;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .hero-overlay {
        padding: 40px 20px 30px;
        min-height: 150px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tags {
        /* Mobile positioning already handled above */
        gap: 6px;
    }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 3px 6px;
    }
    
    .post-title-after-image {
        padding: 25px 20px;
    }
    
    .featured-image-overlay {
        padding: 20px;
    }
    
    .featured-image-overlay {
        padding: 20px;
    }
    
    .post-header-content {
        padding: 30px 25px 15px 25px;
    }
    
    .post-content-wrapper {
        padding: 0 25px 30px 25px;
    }
    
    .post-title-single {
        font-size: 2.2rem;
    }
    
    .post-excerpt-single {
        font-size: 1.1rem;
    }
    
    .post-meta {
        gap: 15px;
    }
    
    .post-body {
        font-size: 1rem;
    }
    
    .post-body h2 {
        font-size: 1.7rem;
    }
    
    .post-body h3 {
        font-size: 1.4rem;
    }
    
    .post-body img {
        margin: 1.5rem 0;
        border-radius: 10px;
    }
    
    .post-body p:first-of-type img,
    .post-body img[width="460"],
    .post-body img[height="460"] {
        height: 220px;
        margin: 2rem 0;
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    article.blog-post {
        margin: 0 10px;
    }
    
    .post-featured-image {
        height: 200px;
    }
    
    .post-title-after-image {
        padding: 20px 15px;
    }
    
    .featured-image-overlay {
        padding: 15px;
    }
    
    .post-header-content {
        padding: 25px 20px 15px 20px;
    }
    
    .post-content-wrapper {
        padding: 0 20px 25px 20px;
    }
    
    .post-title-single {
        font-size: 1.9rem;
    }
    
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Back to Blog Section */
.back-to-blog-section {
    text-align: center;
    margin: 40px auto 40px auto;
    max-width: 900px;
    padding: 0 40px;
}

.back-to-blog-section .back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid;
    border-image: linear-gradient(135deg, 
        rgba(0, 120, 212, 0.4) 0%, 
        rgba(124, 58, 237, 0.4) 50%, 
        rgba(0, 120, 212, 0.4) 100%
    ) 1;
    color: #0078d4;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.1);
}

.back-to-blog-section .back-to-blog:hover {
    background: rgba(0, 120, 212, 0.1);
    border-image: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.6) 0%, 
        rgba(245, 158, 11, 0.6) 50%, 
        rgba(124, 58, 237, 0.6) 100%
    ) 1;
    color: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.2);
}

/* About Page Styles */
.about-page {
    color: #e0e6ed;
    position: relative;
    min-height: 100vh;
}

.about-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 120, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 198, 251, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    z-index: -2;
}

.about-page::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: -1;
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes heroBorderGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: scale(1.005);
    }
}

@keyframes borderPulse {
    0%, 100% { 
        opacity: 0.3;
        box-shadow: 0 0 30px rgba(0, 120, 212, 0.05);
    }
    50% { 
        opacity: 0.5;
        box-shadow: 0 0 40px rgba(0, 120, 212, 0.08);
    }
}

@keyframes backgroundShift {
    0%, 100% { 
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% { 
        transform: translateX(-10px) translateY(-10px);
        opacity: 0.2;
    }
}

/* Enhanced About Section */
.about-hero {
    background: linear-gradient(135deg, #0078d4 0%, #16213e 50%, #1a1a2e 100%);
    padding: 80px 0 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    border: 1px solid rgba(0, 120, 212, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 8px 30px rgba(0, 120, 212, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, 
        rgba(0, 120, 212, 0.2) 0%, 
        rgba(124, 58, 237, 0.15) 50%, 
        rgba(0, 120, 212, 0.2) 100%
    );
    border-radius: 20px;
    z-index: -1;
    animation: heroBorderGlow 4s ease-in-out infinite;
}

.about-intro {
    max-width: 600px;
    margin: 0 auto;
}

.profile-pic-wrapper.large {
    margin: 0 auto 40px auto;
    width: 180px;
    height: 180px;
}

.profile-pic-wrapper.large .profile-pic {
    width: 180px;
    height: 180px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    background: rgba(15, 15, 25, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 120, 212, 0.3);
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 120, 212, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.about-content::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, 
        rgba(0, 120, 212, 0.3) 0%, 
        rgba(124, 58, 237, 0.2) 25%, 
        rgba(0, 120, 212, 0.25) 50%, 
        rgba(100, 150, 200, 0.2) 75%, 
        rgba(0, 120, 212, 0.3) 100%
    );
    border-radius: 20px;
    z-index: -1;
    animation: borderPulse 6s ease-in-out infinite;
}

.about-section {
    background: rgba(15, 15, 25, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 120, 212, 0.15);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 120, 212, 0.1);
    border-color: rgba(0, 120, 212, 0.25);
}

.about-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-section h2 i {
    color: #1e40af;
    font-size: 1.8rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d1d8e0;
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.06), rgba(124, 58, 237, 0.04));
    border: 1px solid rgba(0, 120, 212, 0.2);
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0078d4;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 120, 212, 0.2);
}

.stat-label {
    color: #d1d8e0;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Timeline Section */
.timeline-section h2 {
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0078d4, #7c3aed, #f59e0b);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -47px;
    top: 8px;
    width: 12px;
    height: 12px;
    background: #00c6fb;
    border-radius: 50%;
    border: 3px solid rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 10px rgba(0, 198, 251, 0.5);
}

.timeline-content h4 {
    color: #00c6fb;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-date {
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.timeline-content p {
    color: #d1d8e0;
    line-height: 1.6;
    margin: 0;
}

/* Recent Posts Section */
.recent-posts-section .section-subtitle {
    color: #d1d8e0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: center;
}

.recent-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.recent-post-card {
    background: rgba(0, 120, 212, 0.05);
    border: 1px solid rgba(0, 120, 212, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.recent-post-card:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 8px 25px rgba(0, 120, 212, 0.15);
}

.recent-post-card h4 {
    margin-bottom: 15px;
}

.recent-post-card h4 a {
    color: #00c6fb;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recent-post-card h4 a:hover {
    color: #1e40af;
}

.post-card-excerpt {
    color: #d1d8e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.post-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-card-date {
    color: #7c3aed;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-posts-cta {
    text-align: center;
}

.view-all-posts {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #7c3aed;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-all-posts:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: #7c3aed;
    transform: translateY(-2px);
    color: #7c3aed;
}

/* Learning Section */
.learning-content .learning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.learning-item {
    background: rgba(0, 120, 212, 0.03);
    border: 1px solid rgba(0, 120, 212, 0.15);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.learning-item:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.08);
    background: rgba(124, 58, 237, 0.03);
}

.learning-item h3 {
    color: #0078d4;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learning-item p {
    color: #d1d8e0;
    line-height: 1.6;
    margin: 0;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.skill-category {
    background: rgba(0, 120, 212, 0.03);
    border: 1px solid rgba(0, 120, 212, 0.15);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.08);
    background: rgba(124, 58, 237, 0.03);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skill-icon {
    font-size: 1.8rem;
    color: #0078d4;
    transition: all 0.3s ease;
}

.skill-category:hover .skill-icon {
    color: #7c3aed;
    transform: scale(1.1);
}

.skill-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #e0e6ed;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(0, 120, 212, 0.1);
    color: #0078d4;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.skill-tag:hover {
    background: rgba(124, 58, 237, 0.1);
    color: #7c3aed;
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-1px);
}

/* Special theme colors for skill categories */
.skill-category.frontend .skill-icon {
    color: #1e40af;
}

.skill-category.frontend:hover .skill-icon {
    color: #ff6b35;
}

.skill-category.backend .skill-icon {
    color: #10b981;
}

.skill-category.backend:hover .skill-icon {
    color: #34d399;
}

.skill-category.tools .skill-icon {
    color: #8b5cf6;
}

.skill-category.tools:hover .skill-icon {
    color: #a78bfa;
}

/* Personal Interests Section */
.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.interest-item {
    background: rgba(0, 120, 212, 0.03);
    border: 1px solid rgba(0, 120, 212, 0.15);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    text-align: center;
}

.interest-item:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.25);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.08);
    background: rgba(124, 58, 237, 0.03);
}

.interest-item i {
    font-size: 2.5rem;
    color: #0078d4;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.interest-item:hover i {
    color: #7c3aed;
    transform: scale(1.1);
}

.interest-item h4 {
    color: #e0e6ed;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.interest-item p {
    color: #d1d8e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Special theme colors for different interests */
.interest-item:nth-child(1) i {
    color: #1e40af; /* Reading - Orange */
}

.interest-item:nth-child(1):hover i {
    color: #fbbf24;
}

.interest-item:nth-child(2) i {
    color: #10b981; /* Gaming - Green */
}

.interest-item:nth-child(2):hover i {
    color: #34d399;
}

.interest-item:nth-child(3) i {
    color: #06b6d4; /* Outdoor - Cyan */
}

.interest-item:nth-child(3):hover i {
    color: #22d3ee;
}

.interest-item:nth-child(4) i {
    color: #8b5cf6; /* Community - Purple */
}

.interest-item:nth-child(4):hover i {
    color: #a78bfa;
}

/* Mobile Responsiveness for New Sections */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .skill-category {
        padding: 20px;
    }
    
    .skill-header {
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .skill-icon {
        font-size: 1.5rem;
    }
    
    .skill-tag {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
    
    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .interest-item {
        padding: 20px;
    }
    
    .interest-item i {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .interest-item h4 {
        font-size: 1.1rem;
    }
    
    .interest-item p {
        font-size: 0.9rem;
    }
    
    .about-content {
        margin: 0 20px;
        padding: 25px;
    }
    
    .about-section {
        padding: 25px;
    }
    
    .back-to-blog-section {
        padding: 0 20px;
    }
}
/* Version info styling */
.version-info {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
    text-align: center;
    opacity: 0.7;
}

.version-info:hover {
    opacity: 1;
    transition: opacity 0.2s ease;
}
