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

:root {
    --primary: #00ff88;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --text: #e0e0e0;
    --text-dim: #808080;
    --border: #333;
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 40px;
}

header h1 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: normal;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
    position: relative;
}

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

nav a::before {
    content: '> ';
    opacity: 0;
    transition: opacity 0.2s;
}

nav a:hover::before {
    opacity: 1;
}

main {
    flex: 1;
}

.hero {
    margin-bottom: 60px;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: normal;
}

.tagline {
    color: var(--text-dim);
    font-size: 18px;
}

.project {
    background-color: var(--surface);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
}

.project h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: normal;
}

.slogan {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
    font-style: italic;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.2s;
    font-family: inherit;
}

.button:hover {
    background-color: var(--primary);
    color: var(--background);
}

.contact {
    margin-bottom: 40px;
}

.contact h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: normal;
}

.contact p {
    margin-bottom: 10px;
}

.email {
    color: var(--primary);
    text-decoration: none;
    font-size: 18px;
}

.email:hover {
    text-decoration: underline;
}

.content {
    max-width: 700px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.content h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: normal;
}

.content h3 {
    color: var(--text);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: normal;
    border-bottom: 1px solid var(--border);
    padding-bottom: 5px;
}

.content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content li {
    margin-bottom: 8px;
}

.content a {
    color: var(--primary);
    text-decoration: none;
}

.content a:hover {
    text-decoration: underline;
}

.date {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 30px;
}

footer {
    background-color: var(--surface);
    border-top: 1px solid var(--border);
    padding: 30px 0;
    margin-top: 60px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer p {
    color: var(--text-dim);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 10px;
    }
    
    footer .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}