
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #f5f3ff, #e8e0ff);
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

h1, h2, h3 {
    color: #4f46e5;
    text-shadow: 0 0 4px rgba(79, 70, 229, 0.1);
    background: linear-gradient(90deg, #6b46c1, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    color: #6b46c1;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

.code-block {
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
    font-family: monospace;
    color: #1f2937;
    overflow-x: auto;
}

hr {
    border-color: #e5e7eb;
    margin: 2rem 0;
}

button, .button {
    background: linear-gradient(to right, #6b46c1, #4f46e5);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

button:hover, .button:hover {
    transform: translate(-2px, -2px);
    box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: #f5f3ff;
    color: #4f46e5;
    margin-top: 2rem;
    font-size: 0.875rem;
}

.section-heading {
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #dbdfe4;
}
