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

    :root {
        /* Notion-like Core Colors */
        --bg: #ffffff;
        --bg-secondary: #f7f7f5;
        --text: #37352f;
        --text-muted: #787774;
        --border: #e9e9e7;

        /* Subtle Accents (Notion Blue/Brown/etc) */
        --accent-gradient: #37352f;
        /* Removed gradient for flat look */
        --accent: #2383e2;
        /* Notion blue */
        --accent-glow: rgba(35, 131, 226, 0.1);
        --accent-hover: #1e71c4;

        /* Glassmorphism -> Solid/Subtle */
        --glass-bg: rgba(255, 255, 255, 0.95);
        --glass-border: rgba(233, 233, 231, 0.5);
        --glass-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);

        /* Status Colors */
        --success: #0f7b6c;
        --warning: #d9730d;
        --error: #e03e3e;

        /* Layout */
        --nav-height: 60px;
        --card-bg: #ffffff;

        /* Surface/Items */
        --surface-bg: #f1f1ef;
        --surface-border: #e9e9e7;
    }

    [data-theme="dark"] {
        --bg: #191919;
        --bg-secondary: #202020;
        --text: #ffffff;
        --text-muted: rgba(255, 255, 255, 0.5);
        --border: #2C2C2C;

        --glass-bg: rgba(25, 25, 25, 0.95);
        --glass-border: rgba(255, 255, 255, 0.08);
        --glass-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.2);
        --card-bg: #202020;

        --surface-bg: rgba(255, 255, 255, 0.05);
        --surface-border: rgba(255, 255, 255, 0.1);
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.5;
        min-height: 100vh;
        overflow-x: hidden;
    }

    ::selection {
        background: var(--accent);
        color: white;
    }

    /* Dot Grid Background - Subtle Notion-like pattern */
    .bg-grid {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        /* Very subtle grey dots */
        background-image: radial-gradient(var(--text-muted) 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: 0.15;
        pointer-events: none;
    }

    /* Navigation */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: var(--nav-height);
        z-index: 100;
        transition: all 0.3s ease;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        background: var(--glass-bg);
        border-bottom: 1px solid var(--border);
    }

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

    .logo {
        position: relative;
        z-index: 102;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        text-decoration: none;
        color: var(--text);
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .logo:hover {
        transform: scale(1.05);
    }

    .logo-img {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        object-fit: cover;
        border: 2px solid var(--border);
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    .logo:hover .logo-img {
        border-color: var(--accent);
        box-shadow: 0 4px 12px var(--accent-glow);
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.desktop-nav {
        display: flex;
        gap: 2.5rem;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-muted);
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
    }

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

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 50%;
        width: 0%;
        height: 2px;
        background: var(--text);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .nav-links a.active::after {
        width: 100%;
    }

    /* Mobile Menu Button */
    .mobile-menu-btn {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 102;
        padding: 0;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background: var(--text);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Mobile Menu Overlay */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 101;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu a {
        text-decoration: none;
        font-size: 2rem;
        font-weight: 600;
        color: var(--text);
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .mobile-menu.active a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Theme Toggle */
    .theme-toggle {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: rgba(255, 255, 255, 0.05);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .theme-toggle:hover {
        border-color: var(--border);
        background: var(--surface-bg);
        transform: translateY(-1px);
        box-shadow: 0 2px 4px var(--glass-shadow);
    }

    .theme-toggle svg {
        width: 20px;
        height: 20px;
        fill: var(--text);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .theme-toggle:hover svg {
        transform: rotate(12deg) scale(1.1);
    }

    .sun-icon {
        display: none;
    }

    .moon-icon {
        display: block;
    }

    [data-theme="dark"] .sun-icon {
        display: block;
    }

    [data-theme="dark"] .moon-icon {
        display: none;
    }

    /* Page Layout & Transitions */
    .page {
        display: none;
        min-height: 100vh;
        position: relative;
        z-index: 10;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .page.active {
        display: block;
        opacity: 1;
        animation: fadeInPage 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes fadeInPage {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 8rem 2rem 4rem;
        position: relative;
    }

    .hero-container {
        max-width: 1200px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
        align-items: center;
    }

    .hero-content {
        max-width: 600px;
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 1.25rem;
        background: var(--surface-bg);
        backdrop-filter: blur(10px);
        border: 1px solid var(--border);
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-muted);
        margin-bottom: 2rem;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }

    .hero-badge .dot {
        width: 8px;
        height: 8px;
        background: var(--success);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--success);
        animation: pulse-dot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }

    @keyframes pulse-dot {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: 0.5;
            transform: scale(0.8);
        }
    }

    .hero h1 {
        font-size: 4rem;
        font-weight: 800;
        letter-spacing: -2px;
        line-height: 1.1;
        margin-bottom: 1.5rem;
        color: var(--text);
    }

    .hero h1 span {
        color: var(--text);
        position: relative;
    }

    .hero h1 .txt-type {
        border-right: 0.1em solid var(--accent);
        padding-right: 0.05em;
        animation: blink-cursor 0.75s step-end infinite;
    }

    @keyframes blink-cursor {

        from,
        to {
            border-color: transparent
        }

        50% {
            border-color: var(--accent)
        }
    }

    .hero-description {
        font-size: 1.25rem;
        color: var(--text-muted);
        margin-bottom: 2.5rem;
        line-height: 1.7;
        max-width: 500px;
    }

    .hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .hero-tags span {
        padding: 0.5rem 1rem;
        background: var(--surface-bg);
        border: 1px solid var(--border);
        border-radius: 10px;
        font-size: 0.9rem;
        font-family: 'JetBrains Mono', monospace;
        color: var(--text-muted);
        transition: all 0.3s ease;
    }

    .hero-tags span:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-2px);
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        border-radius: 14px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-family: inherit;
    }

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

    .btn-primary:hover {
        transform: translateY(-2px);
        background: var(--text-muted);
        border-color: var(--text-muted);
        color: var(--bg);
    }

    .btn-secondary {
        background: var(--surface-bg);
        color: var(--text);
        border: 1px solid var(--border);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        border-color: var(--accent);
        color: var(--text);
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-4px);
    }

    /* Hero Image - Static Notion Layout */
    .hero-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-img-container {
        position: relative;
        width: 420px;
        height: 520px;
        transition: transform 0.3s ease;
    }

    .hero-img-placeholder {
        width: 100%;
        height: 100%;
        background: var(--surface-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        /* Less rounded for Notion */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .hero-img-placeholder:hover {
        box-shadow: 0 4px 12px rgba(241, 10, 10, 0.05);
        /* Very subtle shadow */
        border-color: var(--text-muted);
    }

    .hero-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }

    /* About Section */
    .about-section {
        padding: 6rem 3rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        color: var(--text-muted);
    }

    .about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 6px;
        /* Less rounded */
        padding: 2rem;
        transition: all 0.2s ease;
    }

    .about-card:hover {
        background: var(--surface-bg);
    }

    .about-card .icon {
        width: 48px;
        height: 48px;
        border-radius: 6px;
        background: var(--surface-bg);
        border: 1px solid var(--border);
        color: var(--text);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
    }

    .about-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

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

    .skills-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .skills-list span {
        padding: 0.375rem 0.75rem;
        background: var(--bg-secondary);
        border-radius: 6px;
        font-size: 0.8rem;
        font-family: 'JetBrains Mono', monospace;
        color: var(--text-muted);
    }

    /* Bento Grid */
    .bento-grid {
        display: grid;
        grid-template-columns: 1fr 1.5fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .bento-card {
        background: var(--card-bg);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        transition: background 0.2s ease;
        height: 100%;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        /* Very subtle shadow */
    }

    .bento-card:hover {
        background: var(--surface-bg);
    }

    /* Bio Card */
    .bio-card {
        justify-content: flex-start;
        line-height: 1.6;
        color: var(--text);
        font-size: 1rem;
        background: var(--card-bg);
    }

    .bio-card p {
        margin-bottom: 1.5rem;
        color: var(--text);
        opacity: 0.9;
    }

    .highlight {
        font-weight: 600;
        padding: 0 4px;
        border-radius: 4px;
        transition: all 0.2s ease;
    }

    .highlight.yellow {
        background: rgba(217, 115, 13, 0.1);
        color: #d9730d;
    }

    .highlight.blue {
        background: rgba(35, 131, 226, 0.1);
        color: #2383e2;
    }

    .highlight.orange {
        background: rgba(217, 115, 13, 0.1);
        color: #d9730d;
    }

    .highlight.cyan {
        background: rgba(15, 123, 108, 0.1);
        color: #0f7b6c;
    }

    .highlight.rust {
        background: rgba(224, 62, 62, 0.1);
        color: #e03e3e;
    }

    .highlight.green {
        background: rgba(15, 123, 108, 0.1);
        color: #0f7b6c;
    }

    .highlight.purple {
        background: rgba(90, 30, 199, 0.1);
        color: #5a1ec7;
    }

    .highlight.red {
        background: rgba(224, 62, 62, 0.1);
        color: #e03e3e;
    }

    @media (max-width: 900px) {
        .bento-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Projects Page */
    .projects-page {
        padding: 8rem 3rem 4rem;
    }

    .projects-header {
        max-width: 1400px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .projects-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }

    .projects-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .projects-filter {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 50px;
        font-size: 0.875rem;
        color: var(--text-muted);
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--accent);
        border-color: var(--accent);
        color: white;
    }

    /* Interactive Projects List - Notion Theme */
    .projects-interactive-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        max-width: 1200px;
        margin: 0 auto 4rem;
        align-items: center;
    }

    .project-preview-panel {
        position: relative;
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 12px;
        overflow: hidden;
        background: var(--surface-bg);
        border: 1px solid var(--border);
        box-shadow: 0 4px 12px var(--glass-shadow);
        transition: transform 0.3s ease;
    }

    .project-preview-panel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 0.4s ease, transform 0.4s ease;
        transform: scale(1.02);
    }

    .project-preview-panel img.active {
        opacity: 1;
        transform: scale(1);
    }

    .preview-placeholder {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--text-muted);
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.9rem;
        text-transform: lowercase;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .project-list-panel {
        display: flex;
        flex-direction: column;
    }

    .project-list-header {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--text);
        margin-bottom: 0;
    }

    .project-list-header h2 {
        font-family: 'JetBrains Mono', monospace;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -1px;
        text-transform: uppercase;
    }

    .project-count {
        font-family: 'JetBrains Mono', monospace;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
    }

    .project-list-items {
        display: flex;
        flex-direction: column;
        border-top: 1px solid var(--border);
    }

    .project-list-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.25rem 0;
        border-bottom: 1px solid var(--border);
        text-decoration: none;
        color: var(--text);
        transition: color 0.3s ease;
        cursor: pointer;
    }

    .project-list-item:hover,
    .project-list-item.active-hover {
        color: var(--text);
    }

    .project-name-wrapper {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .project-name {
        font-size: 1.25rem;
        font-weight: 600;
        font-family: 'Inter', sans-serif;
        text-transform: lowercase;
        transition: transform 0.3s ease;
    }

    .project-arrow {
        width: 18px;
        height: 18px;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
    }

    .project-list-item:hover .project-arrow,
    .project-list-item.active-hover .project-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .project-list-item:hover .project-name,
    .project-list-item.active-hover .project-name {
        transform: translateX(4px);
    }

    .project-category {
        font-size: 0.9rem;
        color: var(--text-muted);
        font-family: 'Inter', sans-serif;
        font-weight: 500;
    }

    /* Mobile Responsive for Projects */
    @media (max-width: 900px) {
        .projects-interactive-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .project-preview-panel {
            aspect-ratio: 16 / 9;
            order: -1;
        }
    }

    /* Photography Page */
    .photo-page {
        padding: 8rem 3rem 4rem;
    }

    .photo-header {
        max-width: 1400px;
        margin: 0 auto 3rem;
        text-align: center;
    }

    .photo-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        letter-spacing: -1px;
        margin-bottom: 0.5rem;
    }

    .photo-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
    }

    .photo-filter {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .photo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
        gap: 1.5rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .photo-item {
        position: relative;
        aspect-ratio: 4/3;
        overflow: hidden;
        border-radius: 8px;
        /* Subtle rounding */
        cursor: pointer;
        border: 1px solid var(--border);
    }

    .photo-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

    .photo-item:hover img {
        opacity: 0.9;
    }

    .photo-item .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .photo-item:hover .overlay {
        opacity: 1;
    }

    .overlay h4 {
        color: white;
        font-weight: 500;
        font-size: 1rem;
    }

    .overlay span {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
    }

    .photo-offset {
        position: relative;
        bottom: -100px;
    }

    /* Lightbox */
    .lightbox {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 200;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .lightbox.active {
        display: flex;
    }

    .lightbox img {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
        border-radius: 8px;
    }

    .lightbox-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        border-radius: 50%;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s;
    }

    .lightbox-close:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    /* Contact Section */
    .contact-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 2rem;
        text-decoration: none;
        transition: transform 0.3s ease, border-color 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        border-color: var(--accent);
    }

    .contact-link {
        transition: transform 0.3s ease;
    }

    .contact-card:hover .contact-link {
        transform: translateX(5px);
    }

    /* Footer */
    footer {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        position: relative;
        z-index: 10;
        border-top: 1px solid var(--border);
    }

    .social-icons {
        display: flex;
        gap: 1rem;
    }

    .social-icons a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid var(--border);
        background: var(--card-bg);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        border-color: var(--accent);
        color: var(--accent);
        transform: translateY(-3px);
    }

    .social-icons svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    .footer-text {
        font-size: 0.875rem;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.375rem;
    }

    .footer-text .heart {
        color: #ef4444;
        animation: heartbeat 1.5s ease-in-out infinite;
    }

    @keyframes heartbeat {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }
    }

    .footer-text a {
        color: var(--accent);
        text-decoration: none;
        font-weight: 500;
    }

    .footer-text a:hover {
        text-decoration: underline;
    }

    /* Responsive */
    @media (max-width: 1024px) {
        .hero-container {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 3rem;
        }

        .hero-content {
            max-width: 100%;
        }

        .hero-tags {
            justify-content: center;
        }

        .hero-buttons {
            justify-content: center;
        }

        .hero-img-container {
            width: 300px;
            height: 360px;
        }

        .floating-card.card-1 {
            left: -5%;
        }

        .floating-card.card-2 {
            right: -5%;
        }

        .featured-project {
            grid-template-columns: 1fr;
        }

        .featured-image {
            min-height: 280px;
        }

        .featured-content {
            padding: 2rem;
        }
    }

    @media (max-width: 768px) {

        .nav-links.desktop-nav,
        .nav-right .btn-primary {
            display: none;
        }

        .theme-toggle {
            width: 38px;
            height: 38px;
            border-radius: 10px;
        }

        .theme-toggle svg {
            width: 18px;
            height: 18px;
        }

        .mobile-menu-btn {
            display: flex;
        }

        nav {
            padding: 0 1rem;
        }

        .nav-container {
            padding: 0;
        }

        .hero {
            padding: 7rem 1.5rem 3rem;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-description {
            font-size: 1rem;
        }

        .about-section {
            padding: 4rem 1.5rem;
        }

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

        .projects-page,
        .photo-page {
            padding: 7rem 1.5rem 3rem;
        }

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

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

        .floating-card {
            display: none;
        }

        .featured-content h3 {
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

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

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

        .project-links {
            flex-direction: column;
        }

        .project-link {
            justify-content: center;
        }
    }

    /* Archive Section */
    .archive-section {
        max-width: 1000px;
        margin: 4rem auto 0;
        padding: 0 2rem;
    }

    .archive-header {
        margin-bottom: 2rem;
        display: flex;
        align-items: baseline;
        gap: 1rem;
    }

    .archive-header h2 {
        font-size: 1.5rem;
        color: var(--text);
    }

    .archive-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1rem;
    }

    .archive-card {
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 1.2rem;
        transition: all 0.2s ease;
        text-decoration: none;
        display: block;
    }

    .archive-card:hover {
        border-color: var(--accent);
        background: var(--card-bg);
        transform: translateX(4px);
    }

    .archive-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5rem;
    }

    .archive-card h3 {
        font-size: 1rem;
        color: var(--text);
        font-weight: 500;
        margin: 0;
    }

    .archive-icon {
        color: var(--text-muted);
    }

    .archive-desc {
        font-size: 0.85rem;
        color: var(--text-muted);
        margin: 0;
    }

    @media (max-width: 768px) {
        .archive-grid {
            grid-template-columns: 1fr;
        }
    }

    /* Tech Loadout Card */
    .gear-card {
        padding: 1.5rem;
        background: var(--card-bg);
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .gear-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .gear-header h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: var(--text);
    }

    .gear-status-dot {
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
        animation: pulse 2s infinite;
    }

    .gear-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .gear-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 0.75rem;
        border-radius: 12px;
        background: var(--surface-bg);
        border: 1px solid transparent;
        transition: all 0.2s ease;
    }

    .gear-item:hover {
        background: var(--surface-border);
        transform: translateX(4px);
        border-color: var(--accent);
    }

    .gear-icon {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        color: var(--text-muted);
    }

    .gear-icon svg {
        width: 20px;
        height: 20px;
    }

    .gear-info {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .gear-name {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text);
    }

    .gear-type {
        font-size: 0.75rem;
        color: var(--text-muted);
    }

    .gear-pill {
        font-size: 0.7rem;
        padding: 0.25rem 0.6rem;
        border-radius: 20px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        font-weight: 600;
        border: 1px solid transparent;
    }

    .gear-pill.workstation {
        background: rgba(34, 197, 94, 0.1);
        color: #22c55e;
        border-color: rgba(34, 197, 94, 0.2);
    }

    .gear-pill.mobile {
        background: rgba(249, 115, 22, 0.1);
        color: #f97316;
        border-color: rgba(249, 115, 22, 0.2);
    }

    .gear-pill.audio {
        background: rgba(236, 72, 153, 0.1);
        color: #ec4899;
        border-color: rgba(236, 72, 153, 0.2);
    }

    .gear-pill.dev {
        background: rgba(99, 102, 241, 0.1);
        color: #6366f1;
        border-color: rgba(99, 102, 241, 0.2);
    }

    @keyframes pulse {
        0% {
            opacity: 0.6;
        }

        50% {
            opacity: 1;
        }

        100% {
            opacity: 0.6;
        }
    }

    /* Tech Stack Card */
    .stack-card {
        grid-column: span 2;
        background: var(--card-bg);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

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

    .stack-header h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: var(--text);
    }

    .stack-status-dot {
        width: 6px;
        height: 6px;
        background: #6366f1;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(99, 102, 241, 0.4);
    }

    .stack-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .stack-group {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
    }

    .stack-icon-title {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-muted);
    }

    .stack-icon-title svg {
        width: 16px;
        height: 16px;
    }

    .stack-icon-title h4 {
        margin: 0;
        font-size: 0.85rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stack-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .stack-pill {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: var(--surface-bg);
        border: 1px solid var(--surface-border);
        border-radius: 8px;
        color: var(--text);
        transition: all 0.2s ease;
    }

    .stack-pill i {
        font-size: 16px;
        opacity: 0.8;
    }

    .stack-pill:hover {
        background: rgba(99, 102, 241, 0.1);
        border-color: rgba(99, 102, 241, 0.3);
        color: #6366f1;
        transform: translateY(-2px);
    }

    .stack-pill:hover i {
        opacity: 1;
    }

    @media (max-width: 900px) {
        .stack-card {
            grid-column: 1;
        }

        .stack-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    /* Stack Card Footer */
    .stack-footer {
        margin-top: 1.5rem;
        display: flex;
        justify-content: flex-end;
        border-top: 1px solid var(--border);
        padding-top: 1rem;
    }

    .view-work-link {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .view-work-link:hover {
        color: var(--accent);
        transform: translateX(4px);
    }