/* Monospace Poetry - Terminal Aesthetic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0a;
    --text: #e0e0e0;
    --accent: #00ff88;
    --dim: #666;
    --border: #333;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

nav a {
    color: var(--dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.ascii-logo {
    text-align: center;
    margin-bottom: 4rem;
}

.ascii-logo pre {
    font-size: 0.7rem;
    color: var(--accent);
    line-height: 1.2;
    display: inline-block;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.tagline {
    margin-top: 1rem;
    color: var(--dim);
    font-size: 1rem;
    letter-spacing: 0.2em;
}

.section-title {
    color: var(--dim);
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.1);
}

.gallery-item pre {
    font-size: 0.85rem;
    line-height: 1.5;
    overflow-x: auto;
    white-space: pre;
}

.more-link {
    text-align: center;
    margin: 3rem 0;
}

.more-link a {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.more-link a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    color: var(--dim);
    font-size: 0.8rem;
}

footer .key {
    background: rgba(0, 255, 136, 0.1);
    color: var(--accent);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

/* Artist pages */
.artist-header {
    text-align: center;
    margin-bottom: 3rem;
}

.artist-header h1 {
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 1rem;
}

.bio {
    color: var(--dim);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 600px) {
    nav {
        padding: 1rem;
        gap: 1rem;
    }
    
    main {
        padding: 5rem 1rem 3rem;
    }
    
    .ascii-logo pre {
        font-size: 0.4rem;
    }
    
    .gallery-item {
        padding: 1rem;
    }
    
    .gallery-item pre {
        font-size: 0.7rem;
    }
}
