body {
    padding: 2rem;
}

.container {
    max-width: 900px;
    margin: auto;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

h1 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-top: 2rem;
}

p,
li {
    color: var(--text-secondary);
    line-height: 1.6;
}

a {
    color: #3b82f6;
    text-decoration: underline;
}