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

:root {
    --primary: #ffffff;
    --secondary: #888888;
    --dark: #000000;
    --light: #ffffff;
    --accent: #333333;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #000000;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    text-align: center;
    padding: 4rem 0 3rem 0;
}

.header-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    margin-bottom: 2rem;
    border: 2px solid #333333;
    border-radius: 50%;
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.tagline {
    font-size: 1rem;
    color: #888888;
    font-weight: 300;
}

/* Main Content */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
}

h2 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-weight: 300;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: #111111;
    border-radius: 2px;
    padding: 2rem;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid #333333;
    transition: border-color 0.2s ease;
}

.project-card:hover {
    border-color: #ffffff;
}

.project-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.project-card p {
    color: #888888;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Link Buttons */
.link-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    border: 1px solid #333333;
    color: #ffffff;
    transition: border-color 0.2s ease;
}

.link-btn:hover {
    border-color: #ffffff;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    color: #555555;
    font-size: 0.85rem;
}

/* Articles */
.articles {
    margin-top: 3rem;
}

.article-list {
    list-style: none;
    padding: 0;
}

.article-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #222222;
}

.article-list li:last-child {
    border-bottom: none;
}

.article-list a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 300;
    transition: color 0.2s ease;
}

.article-list a:hover {
    color: #888888;
}

/* Floating Monkeys - Hidden for minimal theme */
.floating-monkeys {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 3rem;
    }
    
    .container {
        padding: 1rem;
    }
    
    .link-buttons {
        flex-direction: column;
    }
    
    .link-btn {
        justify-content: center;
    }
}
