/* Updated to match provided dark theme styles while maintaining layout structure */
:root {
    --text-color: #DADFE6;
    --bg-color: #202124;
    --link-color: #4797ff;
    --border-color: #3c4043;
}

body {
    font-family: sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 18px;
    margin: 0;
    padding: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 30px;
}

header {
    margin-bottom: 60px;
}

h1 {
    font-size: 50px;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -0.02em;
}

.site-description {
    font-size: 18px;
    color: #9aa0a6;
    margin: 0;
}

h2 {
    font-size: 30px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

p {
    margin-bottom: 1.5em;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5em;
}

li {
    margin-bottom: 8px;
    padding-left: 0;
}

li::before {
    content: "—";
    margin-right: 10px;
    color: #5f6368;
}

a:link, a:visited, a:active {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    text-decoration: underline;
}

/* Fix: Removed inline-block and margin-right which caused gaps between text and pipes */
.social-links a {
    font-weight: 500;
}

hr {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 60px 0;
}

footer {
    margin-top: 80px;
    font-size: 14px;
    color: #80868b;
}

@media (max-width: 600px) {
    .wrapper {
        padding: 40px 20px;
    }
    h1 { font-size: 36px; }
    h2 { font-size: 24px; }
}