:root {
    /* Color Palette */
    --bg-dark: #070709;
    --bg-panel: rgba(20, 20, 26, 0.6);
    --bg-panel-hover: rgba(30, 30, 38, 0.8);
    
    --text-primary: #f0f0f5;
    --text-secondary: #9494a0;
    
    --accent-cyan: #00f0ff;
    --accent-blue: #0088ff;
    --accent-purple: #8a2be2;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);
    
    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --blur: blur(12px);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor */
body {
    cursor: none;
}

a, button, .btn, .project-card, .blog-card, .tilt-card {
    cursor: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 0 10px var(--accent-cyan);
    transition: width 0.2s, height 0.2s;
}

.cursor-circle {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 240, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

.cursor-dot.active {
    width: 10px;
    height: 10px;
}

.cursor-circle.active {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.8);
}

@media (hover: none) and (pointer: coarse) {
    .cursor-dot, .cursor-circle {
        display: none;
    }
    body, a, button, .btn, .project-card, .blog-card, .tilt-card {
        cursor: auto;
    }
}

/* Particle Background */
#tsparticles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Base changes for tilt */
.tilt-card {
    transform-style: preserve-3d;
}

/* Typography base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

.accent {
    color: var(--accent-cyan);
}

.accent-gradient {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: rgba(7, 7, 9, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--glass-border);
    transition: var(--transition-smooth);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 1px;
}

/* Skip to content (a11y) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--accent-cyan);
    color: var(--bg-dark);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 8px;
    z-index: 10000;
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles (a11y) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.25rem;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(7, 7, 9, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-smooth);
        border-left: var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.open {
        display: block;
    }
}

/* Layout */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: var(--blur);
    -webkit-backdrop-filter: var(--blur);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 4rem;
    box-shadow: var(--glass-shadow);
}

.section-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.section-subheading {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
}

/* Hero Section */
.hero-section {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-cyan);
    margin-bottom: 2rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 240, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 240, 255, 0); }
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: #d0d0d5;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.skill-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Timeline/Experience */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

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

.timeline-dot {
    position: absolute;
    left: -2.45rem;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent-cyan);
    z-index: 1;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.timeline-date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    letter-spacing: 0.5px;
}

.timeline-title {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, -500) var(--mouse-y, -500), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
}

.glow-effect:hover::before {
    opacity: 1;
}

.glow-effect:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
}

.project-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
}

.project-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.project-links a:hover {
    color: var(--text-primary);
}

.project-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.project-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.project-tags span {
    font-size: 0.75rem;
    font-family: var(--font-display);
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

/* Footer */
.footer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.footer-left p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Page Layout */
.page-top-padding {
    padding-top: 8rem;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Blog & Writing */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.view-all-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.view-all-link:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-tag {
    color: var(--accent-cyan);
    font-family: var(--font-display);
}

.blog-date, .blog-reading-time {
    color: var(--text-secondary);
}

.blog-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Blog Index Page */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-list-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-meta-large {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-family: var(--font-display);
}

.blog-content h2 {
    font-size: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.blog-content h2 a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-content h2 a:hover {
    color: var(--accent-cyan);
}

.blog-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Human API Section */
.human-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.human-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.human-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.human-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.human-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered card reveal */
.projects-grid .project-card:nth-child(2) { transition-delay: 0.1s; }
.projects-grid .project-card:nth-child(3) { transition-delay: 0.2s; }
.projects-grid .project-card:nth-child(4) { transition-delay: 0.3s; }

.human-grid .human-card:nth-child(2) { transition-delay: 0.1s; }
.human-grid .human-card:nth-child(3) { transition-delay: 0.2s; }

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.education-card {
    background: rgba(255, 255, 255, 0.02);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.education-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.education-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.education-card .education-degree {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.education-card .education-date {
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-family: var(--font-display);
}

/* Blog Post Detail Pages */
.blog-back-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.blog-back-link:hover {
    color: var(--text-primary);
    transform: translateX(-4px);
}

.blog-post-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-post-title {
    font-size: 2.8rem;
    font-family: var(--font-display);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.blog-post-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    line-height: 1.6;
}

.blog-post-body {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-body p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.blog-post-body h2 {
    font-size: 1.6rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    margin: 2.5rem 0 1rem;
}

.blog-post-body h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin: 2rem 0 0.75rem;
}

.blog-post-body blockquote {
    border-left: 3px solid var(--accent-cyan);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background: rgba(0, 240, 255, 0.03);
    border-radius: 0 8px 8px 0;
}

.blog-post-body blockquote p {
    font-style: italic;
    margin-bottom: 0;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.blog-post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

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

.blog-post-body a {
    color: var(--accent-cyan);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.blog-post-body a:hover {
    color: var(--text-primary);
}

.blog-figure {
    margin: 2.5rem 0;
    max-width: 100%;
}

.blog-figure img {
    width: 100%;
    border-radius: 12px;
    border: var(--glass-border);
}

.blog-figure figcaption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Premium Blog Image Styles */
.blog-hero-image {
    width: 100%;
    border-radius: 16px;
    border: var(--glass-border);
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.blog-hero-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15);
    border-color: rgba(0, 240, 255, 0.3);
}

.blog-content-image {
    width: 100%;
    border-radius: 12px;
    border: var(--glass-border);
    margin: 2rem 0;
    transition: var(--transition-smooth);
}

.blog-content-image:hover {
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.1);
}

/* Premium Typography Updates */
.blog-post-body > p:first-of-type::first-letter {
    font-size: 3.5rem;
    font-family: var(--font-display);
    color: var(--accent-cyan);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.blog-post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-post-nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-nav-next,
.blog-nav-prev {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.blog-nav-next:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.blog-nav-prev:hover {
    color: var(--text-primary);
    transform: translateX(-4px);
}

.blog-series-note {
    background: rgba(0, 240, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.blog-series-note a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.blog-series-note a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .glass-panel {
        padding: 2.5rem 1.5rem;
    }

    .section-heading {
        font-size: 2rem;
    }

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

    main {
        padding-top: 5rem;
        gap: 2.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .blog-list-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .blog-post-title {
        font-size: 1.8rem;
    }

    .blog-post-body {
        max-width: 100%;
    }

    .blog-post-meta {
        flex-wrap: wrap;
    }

    .blog-meta-large {
        flex-direction: row;
        gap: 1rem;
    }

    .section-header-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}
