:root {
    /* Shadcn Zinc Dark Theme Colors */
    --background: hsl(240 10% 3.9%);
    --foreground: hsl(0 0% 98%);
    --card: hsl(240 10% 3.9%);
    --card-foreground: hsl(0 0% 98%);
    --popover: hsl(240 10% 3.9%);
    --popover-foreground: hsl(0 0% 98%);
    --primary: #8800f5;
    --primary-foreground: hsl(0 0% 98%);
    --secondary: hsl(240 3.7% 15.9%);
    --secondary-foreground: hsl(0 0% 98%);
    --muted: hsl(240 3.7% 15.9%);
    --muted-foreground: hsl(240 5% 64.9%);
    --accent: hsl(240 3.7% 15.9%);
    --accent-foreground: hsl(0 0% 98%);
    --destructive: hsl(0 62.8% 30.6%);
    --destructive-foreground: hsl(0 0% 98%);
    --border: hsl(240 3.7% 15.9%);
    --input: hsl(240 3.7% 15.9%);
    --ring: hsl(240 4.9% 83.9%);

    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-family);
    font-size: 14px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

header {
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
    padding-bottom: 16px;
    text-align: center;
}

h1 {
    color: var(--foreground);
    font-size: 1.75rem;
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

h2 {
    color: var(--foreground);
    font-size: 1.125rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
    border-left: 4px solid var(--primary);
    padding-left: 12px;
}

h3 {
    color: var(--foreground);
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

p {
    margin-bottom: 12px;
    font-size: 0.875rem;
}

ul {
    margin-bottom: 16px;
    padding-left: 18px;
}

li {
    margin-bottom: 6px;
    font-size: 0.875rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
}

.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.last-updated {
    font-style: italic;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    display: block;
}

@media (max-width: 640px) {
    body {
        font-size: 13px;
    }

    .container {
        margin: 0;
        padding: 16px;
        border-radius: 0;
        border: none;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1rem;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    h3 {
        font-size: 0.9rem;
    }

    p,
    li {
        font-size: 0.8125rem;
    }
}
