:root {
--bg-main: #0e0f14;
--bg-card: #161824;
--bg-header: #11131c;
--text-main: #e6e8f0;
--text-muted: #9aa0b5;
--accent: #6aa7ff;
--accent-soft: #3b5fbf;
}


body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: var(--bg-main);
color: var(--text-main);
margin: 0;
line-height: 1.65;
}


header {
background: var(--bg-header);
border-bottom: 1px solid var(--accent-soft);
padding: 1.5rem;
}


header h1 {
margin: 0;
color: var(--text-main);
}


nav a {
color: var(--accent);
margin-right: 1rem;
text-decoration: none;
}


nav a:hover {
text-decoration: underline;
}


main {
max-width: 900px;
margin: 2.5rem auto;
padding: 0 1.2rem;
}


.project {
background: var(--bg-card);
border-left: 4px solid var(--accent);
padding: 1.4rem 1.6rem;
margin-bottom: 2rem;
border-radius: 6px;
}


.project h2 {
margin-top: 0;
color: var(--text-main);
}


.project p {
color: var(--text-muted);
}


a.button {
display: inline-block;
margin-top: 0.8rem;
padding: 0.45rem 0.9rem;
background: var(--accent);
color: #0e0f14;
text-decoration: none;
font-weight: 600;
border-radius: 4px;
}


a.button:hover {
background: var(--accent-soft);
color: #fff;
}


footer {
text-align: center;
padding: 2.5rem 1rem;
font-size: 0.9rem;
color: var(--text-muted);
}
