:root {
    --bg-color: #111111;
    --text-color: #e0e0e0;
    --accent-color: #888888;
    --link-color: #ffffff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 800px;
    --spacing-unit: 1.5rem;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    padding: 0 var(--spacing-unit);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
}

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

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

a {
    color: var(--link-color);
    text-decoration: underline;
    text-underline-offset: 4px;
}

a:hover {
    color: var(--accent-color);
}

/* Sections */
section {
    margin-bottom: 4rem;
}

.hero {
    margin-top: 4rem;
}

.socials-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.socials-list li a {
    text-decoration: none;
    font-weight: 500;
}

/* Blog List */
.blog-list {
    list-style: none;
}

.blog-item {
    margin-bottom: 2.5rem;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: #bbb;
}

/* Footer */
footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: var(--accent-color);
    font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 1rem;
    }
}