<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --background-color: #12121f; /* Slightly deeper dark blue */
    --card-background: #1a1a2e; /* Original background, now card bg */
    --header-background-start: #1f1f3d;
    --header-background-end: #12121f;
    --text-color: #e0e0e0;
    --header-text-color: #ffffff;
    --accent-color-primary: #00ffff; /* Electric Blue */
    --accent-color-secondary: #9eff00; /* Neon Green */
    --accent-color-tertiary: #dd00ff; /* Brighter Purple */
    --status-completed: #39ff14; /* Neon Green for completed */
    --status-in-progress: #ffd700; /* Gold/Yellow for in-progress */
    --glow-color-primary: rgba(0, 255, 255, 0.7);
    --glow-color-secondary: rgba(158, 255, 0, 0.6);
    --font-family: 'Inter', 'Roboto', sans-serif; /* Added Inter for a more modern feel, Roboto as fallback */
    --header-gradient: linear-gradient(135deg, var(--header-background-start) 0%, var(--header-background-end) 100%);
    --subtle-bg-glow: radial-gradient(ellipse at top left, rgba(0, 255, 255, 0.05) 0%, transparent 50%), 
                        radial-gradient(ellipse at bottom right, rgba(158, 255, 0, 0.05) 0%, transparent 50%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    background-image: var(--subtle-bg-glow);
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.7;
    padding-top: 160px; /* Increased to accommodate potentially larger name/header */
    overflow-x: hidden;
    font-smooth: always; /* For macOS/iOS */
    -webkit-font-smoothing: antialiased; /* For Chrome/Safari */
    -moz-osx-font-smoothing: grayscale; /* For Firefox */
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--background-color);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-color-primary);
    border-radius: 5px;
    border: 2px solid var(--background-color);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-secondary);
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--header-gradient);
    padding: 25px 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: padding 0.4s ease, background 0.4s ease;
    text-align: center;
}

#main-header.scrolled {
    padding: 12px 40px;
    background: var(--card-background); /* Solid, slightly lighter on scroll */
    box-shadow: 0 3px 15px rgba(0,0,0,0.3);
}

#main-header h1 {
    color: var(--header-text-color);
    font-size: 3em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 12px;
    transition: font-size 0.4s ease;
    animation: titleShine 3s ease-in-out infinite alternate;
}

@keyframes titleShine {
    0% {
        text-shadow: 0 0 8px var(--accent-color-primary), 0 0 15px var(--accent-color-primary), 0 0 5px #fff;
    }
    100% {
        text-shadow: 0 0 15px var(--accent-color-primary), 0 0 25px var(--accent-color-primary), 0 0 10px var(--accent-color-tertiary), 0 0 8px #fff;
    }
}

#main-header.scrolled h1 {
    font-size: 2.2em;
    animation-play-state: running; /* Keep it subtle even when scrolled */
}

/* Name Animation Styling - Enhanced */
.name-container {
    margin-bottom: 20px;
    height: 35px; 
    perspective: 500px; /* For 3D effect */
}

.name-char {
    display: inline-block;
    font-size: 1.8em;
    font-weight: 600;
    color: var(--accent-color-secondary);
    opacity: 0;
    transform: translateY(-25px) rotateX(80deg) scale(0.8);
    animation: dropInChar 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    margin: 0 1px; /* Tiny space for better visual separation */
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.name-char:hover {
    color: var(--accent-color-primary);
    text-shadow: 0 0 10px var(--accent-color-primary), 0 0 20px var(--accent-color-primary);
}

/* Stagger character animation delays remain the same */
.name-char:nth-child(1) { animation-delay: 0.5s; }
.name-char:nth-child(2) { animation-delay: 0.55s; }
.name-char:nth-child(3) { animation-delay: 0.6s; }
.name-char:nth-child(4) { animation-delay: 0.65s; }
.name-char:nth-child(5) { animation-delay: 0.7s; }
.name-char:nth-child(6) { animation-delay: 0.75s; }
.name-char:nth-child(7) { animation-delay: 0.8s; }
.name-char:nth-child(8) { animation-delay: 0.85s; }
.name-char:nth-child(9) { animation-delay: 0.9s; }
.name-char:nth-child(10) { animation-delay: 0.95s; }
.name-char:nth-child(11) { animation-delay: 1.05s; }
.name-char:nth-child(12) { animation-delay: 1.1s; }
.name-char:nth-child(13) { animation-delay: 1.15s; }
.name-char:nth-child(14) { animation-delay: 1.2s; }
.name-char:nth-child(15) { animation-delay: 1.25s; }

@keyframes dropInChar {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        text-shadow: 0 0 5px var(--glow-color-secondary), 0 0 10px var(--glow-color-secondary);
    }
}

#filter-nav button {
    background-color: transparent;
    color: var(--accent-color-primary);
    border: 2px solid var(--accent-color-primary);
    padding: 10px 22px;
    margin: 0 8px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
}

#filter-nav button::before { /* Shimmer effect */
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Start further left */
    width: 50%; /* Narrower shimmer */
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: skewX(-25deg); /* Angled shimmer */
}

#filter-nav button:hover::before {
    left: 150%; /* End further right */
}

#filter-nav button:hover {
    background-color: var(--accent-color-primary);
    color: var(--background-color);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0, 255, 255, 0.35);
}

#filter-nav button.active {
    background-color: var(--accent-color-primary);
    color: var(--background-color);
    font-weight: 700;
    box-shadow: 0 0 20px var(--accent-color-primary), 0 0 10px var(--accent-color-primary) inset;
    transform: scale(1.12);
}

#projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 40px 50px;
    max-width: 1800px;
    margin: 0 auto;
}

.project-card {
    background-color: var(--card-background);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 255, 255, 0.1); /* Subtle border */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    animation: popInCard 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popInCard {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    70% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05); /* Overshoot */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.project-card:hover {
    transform: translateY(-15px) scale(1.06);
    box-shadow: 0 15px 40px var(--glow-color-primary), 0 0 25px var(--glow-color-secondary), 0 0 0 2px var(--accent-color-primary) inset;
}

.card-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-icon {
    font-size: 3.2em;
    color: var(--accent-color-primary);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
}

.project-card:hover .project-icon {
    transform: scale(1.15) rotate(8deg);
    color: var(--accent-color-secondary);
}

.project-card h2 {
    font-size: 2.2em;
    font-weight: 600;
    color: var(--header-text-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-card p {
    font-size: 1.05em;
    color: var(--text-color);
    flex-grow: 1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.status-badge {
    align-self: flex-start;
    padding: 9px 18px;
    border-radius: 25px;
    font-size: 0.9em;
    font-weight: 600;
    color: var(--background-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulseBadge 2.8s infinite ease-in-out;
    position: relative;
    overflow: hidden; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.status-badge::after { /* Shine effect for badges */
    content: '';
    position: absolute;
    top: -50%;
    left: -75%; /* Start further off-screen */
    width: 40px;
    height: 200%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    transform: rotate(35deg);
    animation: badgeShine 3.5s infinite linear 0.5s; /* Added delay to desync */
}

@keyframes badgeShine {
    0% { left: -75%; opacity: 0.5; }
    20% { left: 125%; opacity: 1; }
    100% { left: 125%; opacity: 0;}
}

.status-badge.completed {
    background-color: var(--status-completed);
    box-shadow: 0 0 15px var(--status-completed), 0 0 5px var(--status-completed) inset;
    color: #003300; /* Darker green for text */
}

.status-badge.in-progress {
    background-color: var(--status-in-progress);
    box-shadow: 0 0 15px var(--status-in-progress), 0 0 5px var(--status-in-progress) inset;
    color: #4d3800; /* Darker gold for text */
}

@keyframes pulseBadge {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Card animation delays - start after name animation */
.project-card:nth-child(1) { animation-delay: 1.3s; }
.project-card:nth-child(2) { animation-delay: 1.45s; } /* Increased stagger */
.project-card:nth-child(3) { animation-delay: 1.6s; }
.project-card:nth-child(4) { animation-delay: 1.75s; }

/* Skills Section Styling - Enhanced */
#skills-section {
    padding: 60px 40px;
    background-color: transparent; /* Make it blend with body bg */
    margin-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden; /* For pseudo-elements */
}

#skills-section::before { /* Decorative top line */
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--accent-color-primary);
    border-radius: 2px;
    box-shadow: 0 0 15px var(--accent-color-primary);
}


#skills-section h2 {
    font-size: 2.8em;
    font-weight: 700;
    color: var(--header-text-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: sectionTitleFadeIn 0.8s ease forwards 1.8s; /* Delay after cards */
}

@keyframes sectionTitleFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
}

.skill-category {
    background-color: var(--card-background); /* Consistent with cards */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 1px rgba(158, 255, 0, 0.08); /* Neon green subtle border */
    flex-basis: calc(33.333% - 40px);
    max-width: 420px;
    text-align: left;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: skillCategoryPopIn 0.6s ease-out forwards;
}

/* Stagger skill category animation */
.skills-container .skill-category:nth-child(1) { animation-delay: 2.0s; }
.skills-container .skill-category:nth-child(2) { animation-delay: 2.15s; }
.skills-container .skill-category:nth-child(3) { animation-delay: 2.3s; }

@keyframes skillCategoryPopIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.skill-category h3 {
    font-size: 1.6em;
    font-weight: 600;
    color: var(--accent-color-secondary);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--accent-color-secondary);
    padding-bottom: 12px;
    display: inline-block;
    text-shadow: 0 0 5px var(--glow-color-secondary);
}

.skill-tag {
    display: inline-block;
    background-color: var(--accent-color-primary);
    color: var(--background-color);
    padding: 9px 18px;
    margin: 6px;
    border-radius: 25px;
    font-size: 1em;
    font-weight: 500;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, background-color 0.3s ease;
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    animation: popInSkillTag 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.skill-tag:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 18px var(--accent-color-primary);
    background-color: var(--accent-color-secondary);
    color: #111;
}

/* Stagger skill tags - relative to parent category's animation */
/* This type of complex staggering is often better with JS, but CSS can approximate */
.skill-category:nth-child(1) .skill-tag:nth-child(odd) { animation-delay: 2.2s; }
.skill-category:nth-child(1) .skill-tag:nth-child(even) { animation-delay: 2.25s; }
.skill-category:nth-child(2) .skill-tag:nth-child(odd) { animation-delay: 2.35s; }
.skill-category:nth-child(2) .skill-tag:nth-child(even) { animation-delay: 2.4s; }
.skill-category:nth-child(3) .skill-tag:nth-child(odd) { animation-delay: 2.5s; }
.skill-category:nth-child(3) .skill-tag:nth-child(even) { animation-delay: 2.55s; }


@keyframes popInSkillTag {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive Design Adjustments */
@media (max-width: 992px) { 
    body {
        padding-top: 150px; /* Adjusted */
    }
    #main-header h1 {
        font-size: 2.5em;
    }
    .name-char {
        font-size: 1.5em;
    }
    .skill-category {
        flex-basis: calc(50% - 30px);
        max-width: none; /* Allow full width of flex item */
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px; 
    }
    #main-header {
        padding: 20px 20px;
    }
    #main-header.scrolled {
        padding: 10px 20px;
    }
    #main-header h1 {
        font-size: 2.2em;
    }
    #main-header.scrolled h1 {
        font-size: 1.8em;
    }
    .name-container {
        height: 30px; 
        margin-bottom: 15px;
    }
    .name-char {
        font-size: 1.3em;
    }
    #filter-nav button {
        padding: 9px 18px;
        font-size: 0.9em;
    }
    #projects-grid {
        grid-template-columns: 1fr;
        padding: 30px 25px;
        gap: 30px;
    }
    .project-card h2 {
        font-size: 1.8em;
    }

    #skills-section {
        padding: 50px 20px;
    }
    #skills-section h2 {
        font-size: 2.2em;
    }
    .skill-category {
        flex-basis: 100%;
        padding: 25px;
    }
    .skill-category h3 {
        font-size: 1.4em;
    }
    .skill-tag {
        font-size: 0.95em;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 120px; 
    }
     #main-header h1 {
        font-size: 2em;
    }
    #main-header.scrolled h1 {
        font-size: 1.6em;
    }
    .name-char {
        font-size: 1.1em;
    }
    #filter-nav {
        gap: 6px;
    }
    #filter-nav button {
        flex-basis: calc(50% - 8px);
        margin-bottom: 6px; 
        padding: 8px 12px;
        font-size: 0.8em;
        letter-spacing: 0.3px;
    }
    .project-card {
        border-radius: 15px;
    }
    .card-content {
        padding: 25px;
    }
    .project-icon {
        font-size: 2.8em;
    }
    .project-card h2 {
        font-size: 1.6em;
    }
    .status-badge {
        padding: 8px 15px;
        font-size: 0.85em;
    }
}

/* Accessibility: Focus Visible */
#filter-nav button:focus-visible, 
.project-card:focus-visible, 
.skill-tag:focus-visible {
    outline: 3px solid var(--accent-color-secondary);
    outline-offset: 4px;
    box-shadow: 0 0 15px var(--glow-color-secondary);
} </pre></body></html>