:root {
    /* Dark bases */
    --deep-black: #0a0a0f;
    --dark-slate: #16161d;
    --midnight-purple: #1f1f2e;
    --dark-indigo: #2a2a3e;
    
    /* Neon accents */
    --electric-pink: #ff006e;
    --hot-pink: #ff3d8f;
    --blazing-orange: #ff8500;
    --amber-glow: #ffa033;
    --cyber-green: #00ff88;
    --mint-glow: #33ffa3;
    
    /* Text */
    --text-primary: #e8e8e8;
    --text-secondary: #9a9a9a;
    --text-dim: #5a5a5a;
}

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

body {
    font-family: 'DM Mono', monospace;
    background: var(--deep-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Vertical neon lines feature - left side (matches blog post page) */
.neon-feature {
    position: fixed;
    left: 0;
    top: 0;
    width: 40px;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    display: flex;
    gap: 8px;
    padding: 0 10px;
}

.line {
    flex: 1;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

.line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        currentColor 20%, 
        currentColor 80%, 
        transparent 100%);
    filter: blur(1px);
}

.line:nth-child(1) {
    color: var(--electric-pink);
    animation-delay: 0s;
}

.line:nth-child(2) {
    color: var(--blazing-orange);
    animation-delay: 0.8s;
}

.line:nth-child(3) {
    color: var(--cyber-green);
    animation-delay: 1.6s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 1.0; }
}

/* Header (matches blog post page) */
body > header {
    position: fixed;
    top: 0;
    left: 40px;
    right: 0;
    height: 140px;
    background: linear-gradient(180deg, var(--deep-black) 0%, var(--deep-black) 70%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    z-index: 100;
}

.home-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease-out;
}

.home-link:hover {
    color: var(--electric-pink);
}

.logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.3));
}

.wordmark-small {
    font-family: 'Space Mono', monospace;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
}

.wordmark-small .d { color: var(--electric-pink); }
.wordmark-small .a { color: var(--blazing-orange); }
.wordmark-small .y { color: var(--cyber-green); }

.wordmark-small .d { 
    color: var(--electric-pink); 
    text-shadow: 0 0 10px rgba(255, 0, 110, 0.6), 0 0 30px rgba(255, 0, 110, 0.3); 
}

.wordmark-small .a { 
    color: var(--blazing-orange); 
    text-shadow: 0 0 10px rgba(255, 133, 0, 0.6), 0 0 30px rgba(255, 133, 0, 0.3); 
}

.wordmark-small .y { 
    color: var(--cyber-green); 
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6), 0 0 30px rgba(0, 255, 136, 0.3); 
}

nav {
    display: flex;
    gap: 30px;
    animation: fadeInRight 0.8s ease-out;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cyber-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav a:hover {
    color: var(--text-primary);
}

nav a:hover::after {
    transform: scaleX(1);
}

/* About content */
.about-content {
    margin-left: 40px;
    padding-top: 200px;
    padding-right: 60px;
    padding-bottom: 120px;
    padding-left: 100px;
    max-width: 900px;
    position: relative;
    z-index: 10;
}

.about-header {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-title {
    font-family: 'Space Mono', monospace;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* About sections */
.about-section {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--midnight-purple);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-section:last-child {
    border-bottom: none;
}

.section-heading {
    font-family: 'Space Mono', monospace;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-section p:last-child {
    margin-bottom: 0;
}

.about-section a {
    color: var(--cyber-green);
    text-decoration: none;
    border-bottom: 1px solid var(--cyber-green);
    transition: all 0.3s ease;
}

.about-section a:hover {
    color: var(--mint-glow);
    border-bottom-color: var(--mint-glow);
}

/* Colophon grid */
.colophon-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.colophon-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.colophon-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    min-width: 120px;
}

.colophon-value {
    font-size: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.color-swatch.pink { background: var(--electric-pink); box-shadow: 0 0 10px var(--electric-pink); }
.color-swatch.orange { background: var(--blazing-orange); box-shadow: 0 0 10px var(--blazing-orange); }
.color-swatch.green { background: var(--cyber-green); box-shadow: 0 0 10px var(--cyber-green); }

/* Navigation corner (matches blog post page) */
.corner-nav {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 20px;
    z-index: 200;
}

.corner-button {
    width: 100px;
    height: 100px;
    background: var(--dark-slate);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
}

.corner-button.home {
    border: 2px solid var(--electric-pink);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.3);
}

.corner-button:hover {
    transform: scale(1.1);
}

.corner-button.home:hover {
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.6);
}

.corner-text {
    font-family: 'Space Mono', monospace;
    font-size: 11px;
    text-align: center;
    line-height: 1.3;
    font-weight: 700;
}

.corner-button.home .corner-text { color: var(--electric-pink); }

.corner-overlay {
    position: fixed;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    pointer-events: none;
}

.corner-overlay.active {
    transform: scale(50);
    border-radius: 0;
}

.corner-overlay.home {
    background: var(--electric-pink);
    bottom: 40px;
    right: 40px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .neon-feature {
        width: 20px;
        gap: 4px;
        padding: 0 5px;
    }

    body > header {
        left: 20px;
        right: 0;
        height: 100px;
        padding: 0 20px;
    }

    .logo {
        width: 35px;
        height: 35px;
    }

    .wordmark-small {
        font-size: 16px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 12px;
    }

    .about-content {
        margin-left: 20px;
        padding: 140px 20px 80px;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .section-heading {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .about-section p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
    }

    .colophon-item {
        gap: 15px;
    }

    .colophon-label {
        min-width: 100px;
        font-size: 11px;
    }

    .colophon-value {
        font-size: 14px;
    }

    .corner-nav {
        bottom: 20px;
        right: 20px;
    }

    .corner-button {
        width: 65px;
        height: 65px;
    }

    .corner-text {
        font-size: 9px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .neon-feature {
        width: 15px;
        gap: 3px;
        padding: 0 3px;
    }

    body > header {
        left: 15px;
        height: 80px;
        padding: 0 15px;
    }

    .home-link {
        gap: 12px;
    }

    .logo {
        width: 30px;
        height: 30px;
    }

    .wordmark-small {
        font-size: 14px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 11px;
    }

    .about-content {
        margin-left: 15px;
        padding: 120px 15px 80px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .section-heading {
        font-size: 22px;
    }

    .about-section p {
        font-size: 14px;
    }

    .colophon-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .corner-nav {
        bottom: 15px;
        right: 15px;
    }

    .corner-button {
        width: 55px;
        height: 55px;
    }

    .corner-text {
        font-size: 8px;
    }
}
