html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #353eb7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #353eb7 100%);
}

/* Blog post content styling */
.blog-content {
    line-height: 1.75;
}

.blog-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.blog-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
}

.blog-content p {
    margin-bottom: 1.25rem;
    color: #d4d4d8;
}

.blog-content a {
    color: #667eea;
    text-decoration: none;
}

.blog-content a:hover {
    color: #667eea;
    text-decoration: underline;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.25rem;
    padding-left: 2.5rem;
    color: #d4d4d8;
}

.blog-content li {
    margin-bottom: 0.5rem;
    color: #d4d4d8;
}

.blog-content ul {
    list-style: none;
    padding-left: 2.5rem;
}

.blog-content ul li {
    padding-left: 1.5rem;
    position: relative;
}

.blog-content ul li::before {
    content: "•";
    color: white;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.blog-content ol li::marker {
    color: white !important;
}

.blog-content code {
    background-color: #27272a;
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    font-size: 0.875em;
    color: #f4f4f5;
}

.blog-content pre {
    background-color: #27272a;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.25rem;
}

.blog-content pre code {
    background-color: transparent;
    padding: 0;
}

.blog-content blockquote {
    border-left: 4px solid #667eea;
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: #a1a1aa;
    font-style: italic;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.blog-content table th,
.blog-content table td {
    padding: 0.75rem;
    border: 1px solid #3f3f46;
    text-align: left;
}

.blog-content table th {
    background-color: #27272a;
    font-weight: 600;
    color: white;
}

.blog-content table td {
    color: #d4d4d8;
}

.blog-content hr {
    border: none;
    border-top: 1px solid #3f3f46;
    margin: 2rem 0;
}

.blog-content strong {
    font-weight: 600;
    color: white;
}
