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

:root {
    --primary: #6366f1;
    --secondary: #a855f7;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f172a;
    color: #fff;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: linear-gradient(to right, #fff, #e9d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animate-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Explicit Typography Overrides to ensure Premium Look */
.prose h2 {
    color: #fff !important;
    font-size: 1.875rem !important;
    /* 30px */
    line-height: 2.25rem !important;
    margin-top: 2em !important;
    margin-bottom: 1em !important;
    font-weight: 700 !important;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    padding-bottom: 0.5rem;
}

.prose h3 {
    color: #e9d5ff !important;
    /* Light purple */
    font-size: 1.5rem !important;
    /* 24px */
    line-height: 2rem !important;
    margin-top: 1.5em !important;
    margin-bottom: 0.75em !important;
    font-weight: 600 !important;
}

.prose h4 {
    color: #c4b5fd !important;
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

.prose p {
    color: #cbd5e1 !important;
    /* Slate 300 */
    line-height: 1.8 !important;
    margin-bottom: 1.5em !important;
    font-size: 1.05rem;
}

.prose strong {
    color: #fff !important;
    font-weight: 700 !important;
}

.prose ul,
.prose ol {
    margin-top: 1em !important;
    margin-bottom: 1em !important;
}

.prose li {
    color: #cbd5e1 !important;
    margin-bottom: 0.5em !important;
}

.prose a {
    color: #818cf8 !important;
    /* Indigo 400 */
    text-decoration: none !important;
    border-bottom: 1px dashed #818cf8;
}

.prose a:hover {
    color: #fff !important;
    border-bottom-style: solid;
}

.prose blockquote {
    border-left-color: #a855f7 !important;
    color: #e2e8f0 !important;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}