    /* ── Reset & Base ─────────────────────────────────────── */
    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

    :root {
        --bg: #121212;
        --card-bg: rgba(255, 255, 255, 0.075);
        --card-border: rgba(255, 255, 255, 0.10);
        --text: #ddd;
        --muted: #888;
        --accent: #3ec6c9;
        --white: #fff;
        --card-inner: #1e1e1e;
        --font: "Fira Code", monospace;
    }

    body {
        margin: 0;
        padding: 0;
        background-color: var(--bg);
        font-family: var(--font);
        color: var(--text);
        overflow-x: hidden;
    }

    /* ── Background canvas ───────────────────────────────── */
    #bg-canvas {
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
    }

    /* ── Layout ──────────────────────────────────────────── */
    .container {
        max-width: 1000px;
        margin: auto;
        padding: 36px 16px;
        position: relative;
        z-index: 1;
    }

    .card {
        background-color: var(--card-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--card-border);
        padding: 24px;
        border-radius: 12px;
        margin-bottom: 32px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* ── Terminal prompt line ─────────────────────────────── */
    .terminal-prompt {
        font-size: 0.85rem;
        color: var(--muted);
        margin: 0 0 10px;
        font-weight: 400;
        letter-spacing: 0.3px;
    }

    .terminal-prompt .path {
        color: var(--accent);
    }

    .terminal-prompt .dollar {
        color: var(--white);
    }

    /* ── Typography ──────────────────────────────────────── */
    h1 {
        margin: 0 0 4px;
        font-size: 2rem;
        color: var(--white);
        font-weight: 700;
    }

    h1 .name-accent {
        color: var(--accent);
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .muted-subtitle {
        color: var(--muted);
        font-size: 1rem;
        margin: 0 0 16px;
        font-weight: 400;
    }

    .keyword {
        color: var(--white);
        font-weight: 600;
        padding-bottom: 1px;
    }

    /* ── Badge ───────────────────────────────────────────── */
    .badge-row {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .badge {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--card-border);
        color: var(--text);
        padding: 2px 10px;
        border-radius: 10px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .badge i {
        color: var(--white);
    }

    /* ── Icon row ────────────────────────────────────────── */
    .icon-row {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .icon-row a {
        font-size: 1.3rem;
        transition: transform 0.2s;
        text-decoration: none;
    }

    .icon-row a:hover {
        transform: scale(1.2);
    }

    .fa-linkedin,
    .fa-artstation {
        color: #49bfff;
    }

    .fa-youtube,
    .fa-itch-io {
        color: #ff6161;
    }

    .fa-github {
        color: var(--white);
    }

    .fa-envelope {
        color: #c062ff;
    }

    .fa-file {
        color: #53ff56;
    }

    /* ── Projects header ─────────────────────────────────── */
    h1.section-title {
        margin-bottom: 16px;
    }

    .projects-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
    }

    .projects-filter-label {
        font-size: 0.8rem;
        color: #666;
    }

    .projects-filter-label span {
        color: var(--accent);
        font-weight: 600;
    }

    /* ── Projects grid ───────────────────────────────────── */
    .projects-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .project-card {
        background-color: var(--card-inner);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease;
    }

    .project-card> :is(img, video) {
        width: 100%;
        height: 160px;
        object-fit: cover;
        background-color: #151515;
    }

    .project-card .content {
        padding: 16px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .project-card h3 {
        margin: 0 0 8px;
        color: var(--white);
        font-size: 1.1rem;
    }

    .project-card .content p {
        font-size: 0.85rem;
        color: #a0a0a0;
        line-height: 1.5;
        margin: 10px 0 15px;
        font-weight: 400;
    }

    /* ── Status / side icons ─────────────────────────────── */
    .status-wrapper {
        position: absolute;
        top: 18px;
        right: 16px;
        z-index: 5;
        display: flex;
        gap: 6px;
        align-items: center;
    }

    .status-wrapper a {
        opacity: 1;
        margin-top: 0;
    }

    .side-icon {
        color: var(--white);
        font-size: 1.2rem;
        opacity: 0.9;
        filter: drop-shadow(0 0 5px rgba(165, 180, 252, 0.3));
        cursor: pointer;
        transition: opacity 0.2s, transform 0.2s;
        text-decoration: none;
    }

    .side-icon:hover {
        opacity: 1;
        transform: scale(1.1);
    }

    /* ── Footer ──────────────────────────────────────────── */
    footer {
        background-color: var(--card-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid var(--card-border);
        border-radius: 12px;
        max-width: 1000px;
        margin: 40px auto;
        padding: 12px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.85rem;
        color: #8b949e;
    }

    footer p {
        margin: 0;
    }