<![CDATA[
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --bg-color: #05040a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --border-color: rgba(255, 255, 255, 0.1);
    --link-color: #c084fc;
    --link-hover-color: #f472b6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.header {
    padding: 4rem 0 2rem;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    font-weight: 900;
}

.gradient-text {
    background: linear-gradient(90deg, #818cf8, #c084fc, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content {
    padding: 2rem 0 4rem;
}

.content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content p, .content ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.content ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.content li {
    margin-bottom: 0.5rem;
}

.content a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: var(--link-hover-color);
    text-decoration: underline;
}

.footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.footer a {
    color: #aaa;
    text-decoration: none;
    margin: 0 0.75rem;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #fff;
}
]]>
