        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8fafc;
            /* slate-50 */
        }

        .gradient-text {
            background: linear-gradient(to right, #4f46e5, #9333ea);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glow-effect {
            position: absolute;
            /* top: 50%; */
            /* left: 25%; */
            /* transform: translate(-50%, -50%); */
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
            z-index: -1;
            pointer-events: none;
        }

        .logo {
            height: 30px;
            position: relative;
            top: -3px;
        }

        .prose-custom {
            color: #334155;
            /* slate-700 */
        }

        .prose-custom h2 {
            color: #1e293b;
            /* slate-800 */
            font-weight: 700;
            margin-top: 2em;
            margin-bottom: 1em;
        }

        .prose-custom h3 {
            color: #1e293b;
            /* slate-800 */
            font-weight: 600;
            margin-top: 1.5em;
            margin-bottom: 0.5em;
        }

        .prose-custom p,
        .prose-custom li {
            line-height: 1.75;
        }

        .prose-custom a {
            color: #4f46e5;
            /* indigo-600 */
            text-decoration: none;
        }

        .prose-custom a:hover {
            text-decoration: underline;
        }

        .prose-custom ul {
            list-style-type: disc;
            padding-left: 1.5em;
        }

        .custom-scrollbar::-webkit-scrollbar {
            width: 6px;
        }

        .custom-scrollbar::-webkit-scrollbar-track {
            background: #f8fafc;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .custom-scrollbar::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        .tab-active {
            border-color: #4f46e5;
            /* indigo-600 */
            color: #4f46e5;
            background-color: #eef2ff;
            /* indigo-50 */
        }