<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    /* Grayscale Theme */
    --black: #000000;
    --bleepbloop-black: #0b0b0b;
    --almost-black: #111111;
    --tinted-black: #222222;
    --light-black: #333333;
    --pale-black: #444444;
    --dark-gray: #555555;
    --shaded-gray: #666666;
    --medium-gray: #777777;
    --tinted-gray: #888888;
    --light-gray: #999999;
    --pale-gray: #aaaaaa;
    --silver: #bbbbbb;
    --dark-white: #cccccc;
    --shaded-white: #dddddd;
    --almost-white: #eeeeee;
    --white: #ffffff;
}

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

@font-face {
    font-family: "HelveticaNeueCondensedBold";
    src: url("/static/fonts/HelveticaNeue-CondensedBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

html,
body {
    min-height: 100%;
    font-family: "HelveticaNeueCondensedBold";
    background-color: var(--bleepbloop-black);
    color: var(--almost-white);
    font-size: 19px;
    scroll-behavior: smooth;
    overscroll-behavior-x: none;
}

/* Layout Structure */
.layout-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    grid-template-areas: "sidebar main";
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.main-column {
    grid-area: main;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding-bottom: 2rem;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 100vh;
}

/* Header &amp; Logo */
.header-section {
    width: 100%;
    padding: 1rem 0;
    text-align: center;
    box-sizing: border-box;
}

.simple-logo {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
}

.simple-logo a {
    text-decoration: none;
    display: inline-block;
}

.simple-logo h1 {
    font-size: min(300px, 20vw);
    line-height: 1;
    margin: 0 auto;
    font-family: "HelveticaNeueCondensedBold";
    white-space: nowrap;
    display: inline-block;
    color: var(--almost-white);
    transition: font-size 0.3s ease, color 0.3s ease;
    text-align: center;
}

.simple-logo a:hover h1 {
    color: var(--medium-gray);
}

.logo-container {
    width: 100%;
    overflow: visible;
    padding: 0;
    max-width: none;
    position: relative;
    text-align: center;
    grid-area: main;
}

.logo-text {
    font-size: min(300px, 20vw);
    line-height: 1;
    display: inline-block;
    margin: 0 auto;
    padding: 0;
    white-space: nowrap;
    text-align: center;
    transition: font-size 0.3s ease;
}

.logo-subtext {
    padding: 0 100px;
    line-height: 0.7;
    font-size: 80px;
}

/* Side Navigation (Desktop) */
.sidebar-column {
    grid-area: sidebar;
    width: 250px;
    height: 100vh;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    border-right: 1px solid transparent; /* Prevent content spillover */
    box-sizing: border-box;
}

.side-nav {
    height: 100%;
    width: 100%;
    padding-left: 2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-nav-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transition: all 0.3s ease;
    padding: 2rem 2.5rem;
    align-self: center;
    margin: auto 0;
    background-color: var(--bleepbloop-black);
}

.side-nav a {
    font-size: 80px;
    text-decoration: none;
    color: var(--almost-white);
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    line-height: 0.9;
}

.side-nav a:hover, .side-nav a.active {
    color: var(--medium-gray);
}

/* Mobile Navigation */
.mobile-navbar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: var(--bleepbloop-black);
    border-top: 1px solid var(--almost-white);
    align-items: center;
    z-index: 1000;
}

.navbar-scrollable {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    gap: 1.5rem;
}

.navbar-scrollable::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.navbar-scrollable a {
    font-family: "HelveticaNeueCondensedBold";
    font-size: 28px;
    text-decoration: none;
    color: var(--almost-white);
    transition: color 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    line-height: 1;
    padding: 0.25rem 0.5rem;
}

.navbar-scrollable a:hover, .navbar-scrollable a.active {
    color: var(--medium-gray);
}

/* Ensure tap targets are large enough */
@media (max-width: 768px) {
    .navbar-scrollable a {
        padding: 0.5rem 0.75rem;
    }
}

/* Content Area */
.content-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    position: relative;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.content-box {
    width: 1100px;
    max-width: calc(100% - 2rem);
    padding: min(3rem, 5vw);
    margin: 0 auto;
    transition: all 0.3s ease;
    box-sizing: border-box;
    position: relative;
}

.content-box h1, 
.content-box h2, 
.content-box h3, 
.content-box h4, 
.content-box h5, 
.content-box h6, 
.content-box p,
.content-box form {
    text-align: left;
    margin-bottom: 1.5rem;
    width: 100%;
}

.content-box h1 {
    font-size: min(3rem, 10vw);
    line-height: 1.1;
}

.content-box h2 {
    font-size: min(2.5rem, 8vw);
    line-height: 1.2;
}

.content-box h3 {
    font-size: min(2rem, 7vw);
    line-height: 1.3;
}

.content-box p,
.content-box a {
    font-size: min(1.2rem, 4.5vw);
    line-height: 1.5;
}

.content-box a {
    color: var(--almost-white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.content-box a:hover {
    color: var(--medium-gray);
}

/* Container &amp; Layout Helpers */
.container {
    width: 100%;
    display: flex;
    max-width: none;
    margin: 0 auto;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: visible;
    box-sizing: border-box;
}

.left-aligned-container {
    width: 100%;
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    justify-content: flex-start;
    padding-left: 280px;
    transition: padding-left 0.3s ease;
    overflow: hidden;
}

.container-card {
    background-color: var(--almost-black);
    border: 1px solid var(--light-black);
    border-radius: 4px;
    padding: 20px;
}

/* HTMX and Interaction Elements */
.loading-indicator {
    position: fixed;
    top: 1rem;
    right: 1rem;
    background-color: var(--almost-black);
    color: var(--almost-white);
    border: 2px solid var(--almost-white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
    font-size: 1rem;
}

.htmx-indicator {
    opacity: 0;
    transition: opacity 500ms ease-in;
}

.htmx-request .htmx-indicator {
    opacity: 1;
}

.htmx-request.htmx-indicator {
    opacity: 1;
}

.htmx-request #loading-indicator {
    opacity: 1;
}

/* Contact Form */
.contact-form {
    width: 100%;
    margin: 2rem 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--almost-black);
    border: 1px solid var(--medium-gray);
    color: var(--almost-white);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--almost-white);
}

.contact-form button {
    background-color: var(--almost-black);
    color: var(--almost-white);
    border: 2px solid var(--almost-white);
    padding: 0.75rem 2rem;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--almost-white);
    color: var(--bleepbloop-black);
}

.contact-form button .htmx-indicator {
    margin-left: 0.5rem;
    display: inline-block;
}

.contact-form a {
    color: var(--almost-white);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-form a:hover {
    color: var(--medium-gray);
}

/* Image Containers */
.image-container {
    width: 100%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Bio Section */
.bio-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    margin: 2rem 0;
}

.bio-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.bio-card .image-container {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.bio-card p {
    margin-bottom: 1rem;
}

.bio-card:not(:last-child) {
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-black);
}

@media (min-width: 768px) {
    .bio-card .image-container {
        max-width: 100%;
    }
    
    .bio-card .bio-content {
        max-width: 100%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--almost-black);
}

::-webkit-scrollbar-thumb {
    background-color: var(--medium-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--light-gray);
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .logo-text,
    .simple-logo h1 {
        font-size: min(240px, 18vw);
    }
    
    .content-box {
        padding: min(2.5rem, 4vw);
    }
}

@media (max-width: 1200px) {
    .logo-text,
    .simple-logo h1 {
        font-size: min(200px, 16vw);
    }
    
    .content-box {
        padding: min(2.5rem, 3vw);
    }
    
    .navbar-scrollable a {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .layout-wrapper {
        grid-template-columns: 180px 1fr;
    }

    .sidebar-column {
        width: 180px;
    }
    
    .side-nav {
        padding-left: 1rem;
    }
    
    .side-nav a {
        font-size: min(42px, 5vw);
    }
    
    .navbar-scrollable a {
        font-size: 32px;
    }
    
    .logo-text,
    .simple-logo h1 {
        font-size: min(160px, 14vw);
    }

    .content-box {
        max-width: calc(100% - 2rem);
        padding: min(2.5rem, 5vw);
    }
    
    .container {
        padding: 0 20px;
    }

    .content-box h1 {
        font-size: 2.5rem;
    }

    .content-box h2 {
        font-size: 2rem;
    }

    .content-box h3 {
        font-size: 1.75rem;
    }
}

/* Media query for mid-sized screens */
@media (max-width: 950px) and (min-width: 769px) {
    /* Slight adjustments to prevent overlap without switching to mobile */
    .layout-wrapper {
        grid-template-columns: 160px 1fr;
    }
    
    .sidebar-column {
        width: 160px;
    }
    
    .side-nav a {
        font-size: min(38px, 4.5vw);
    }
    
    .navbar-scrollable a {
        font-size: 30px;
    }
    
    .logo-text,
    .simple-logo h1 {
        font-size: min(150px, 13vw);
    }
}

@media (max-width: 768px) {
    .layout-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "main";
        width: 100%;
    }
    
    .sidebar-column {
        display: none; /* Hide desktop sidebar on mobile */
    }
    
    .mobile-navbar {
        display: flex; /* Show mobile navbar */
        height: 50px;
    }
    
    .main-column {
        align-items: center;
        padding-bottom: 70px; /* Space for bottom nav */
    }
    
    .navbar-scrollable {
        padding: 0.25rem 0;
        width: 100%;
    }
    
    .navbar-scrollable a {
        font-size: 28px;
        padding: 0.5rem 0.75rem;
    }
    
    .navbar-scrollable a:active {
        opacity: 0.7;
    }
    
    .left-aligned-container {
        padding-bottom: 70px; /* Space for bottom nav */
    }

    .logo-text,
    .simple-logo h1 {
        font-size: min(120px, 12vw);
        margin: 0 auto;
        text-align: center;
    }

    .content-section {
        padding: 0.5rem 1rem;
        width: 100%;
        height: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-box {
        max-width: 600px;
        width: 95%;
        padding: 2rem;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .content-box h1 {
        font-size: 2.25rem;
    }

    .content-box h2 {
        font-size: 1.875rem;
    }

    .content-box h3 {
        font-size: 1.5rem;
    }
    
    .loading-indicator {
        top: auto;
        bottom: 60px;
        right: 1rem;
        z-index: 2000;
    }
}

@media (max-width: 480px) {
    .navbar-scrollable a {
        font-size: 22px;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-scrollable {
        gap: 1rem;
    }
    
    .site-navbar {
        height: 45px;
    }

    .logo-text,
    .simple-logo h1 {
        font-size: min(70px, 15vw);
    }
    
    .header-section {
        padding: 0.5rem 0;
    }

    .content-box {
        padding: 1.5rem;
        margin: 0 auto;
        width: 100%;
    }

    .content-box h1 {
        font-size: 2rem;
    }

    .content-box h2 {
        font-size: 1.75rem;
    }

    .content-box h3 {
        font-size: 1.35rem;
    }

    .content-box p {
        font-size: 1.1rem;
    }
    
    .main-column {
        padding-bottom: 60px;
    }
}</pre></body></html>