/* GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Courier New', monospace; background: #fff; color: #000; overflow-x: hidden; line-height: 1.6; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* NAV */
.navbar { padding: 20px 5%; display: flex; justify-content: space-between; border-bottom: 2px solid #000; position: sticky; top: 0; background: #fff; z-index: 1000; }
.nav-links a { 
    margin-left: 20px; 
    text-decoration: none; 
    color: #000; 
    font-weight: bold; 
    font-size: 0.8rem;
    transition: opacity 0.2s ease;
}
.nav-links a:hover { opacity: 0.5; }

/* HERO */
.hero { height: 60vh; display: flex; align-items: center; justify-content: center; text-align: center; border-bottom: 2px solid #000; }
.hero h1 { font-size: clamp(2.5rem, 8vw, 4rem); letter-spacing: -2px; }
.glitch-text { font-size: 0.8rem; letter-spacing: 2px; opacity: 0.7; }

/* ABOUT SLIDER */
.about-section { border-bottom: 2px solid #000; }
.about-slider { background: #000; color: #fff; padding: 15px 0; white-space: nowrap; overflow: hidden; }
.slide-track { display: inline-block; animation: scroll 25s linear infinite; }
.slide-track span { font-size: 1.2rem; font-weight: bold; padding-right: 50px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* BIO SECTION */
.about-details { padding: 80px 0; }
.status-code { color: #888; font-size: 0.8rem; margin-bottom: 10px; }
.about-text p { max-width: 800px; margin-bottom: 20px; }

/* PROJECT GRID */
.project-section { padding: 80px 0; }
.manual-embed-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 20px; 
    filter: grayscale(100%); 
    transition: filter 0.5s ease; 
}
.manual-embed-grid:hover { filter: grayscale(0%); }

.art-item { 
    border: 2px solid #000; 
    aspect-ratio: 1 / 1; 
    overflow: hidden; 
    background: #000;
}

.art-item a {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.art-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.art-item:hover img { transform: scale(1.05); }

.gallery-status {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    max-width: 42rem;
}
.gallery-status.is-error { color: #a00; }

/* BUTTONS */
.load-more-container { display: flex; justify-content: center; margin-top: 40px; }
.load-more-btn { padding: 15px 30px; background: #000; color: #fff; text-decoration: none; border: 2px solid #000; font-weight: bold; }
.load-more-btn:hover { background: #fff; color: #000; box-shadow: 8px 8px 0px #000; transform: translate(-4px, -4px); }

/* CONTACT */
.contact-section { padding: 80px 0; text-align: center; border-top: 2px solid #000; }
.email-link { font-weight: bold; color: #000; font-size: 1.1rem; text-decoration: none; border-bottom: 2px solid #000; }
