:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #020617;
    color: var(--text-main);
}

.glass {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.accordion-content {
    transition: grid-template-rows 0.3s ease-out, padding 0.3s ease;
    display: grid;
    grid-template-rows: 0fr;
    padding-bottom: 0;
    overflow: hidden;
}

.accordion-open .accordion-content {
    grid-template-rows: 1fr;
    padding-bottom: 1.5rem;
}

.accordion-inner {
    min-height: 0;
}

.icon-rotate {
    transition: transform 0.3s ease;
}

.accordion-open .icon-rotate {
    transform: rotate(180deg);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

.code-pill {
    font-family: monospace;
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
    padding: 0.1rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.85em;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.highlight-text {
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0) 100%);
    padding: 0 4px;
    border-radius: 4px;
}

.marker-yellow {
    border-left: 3px solid #eab308;
    background: rgba(234, 179, 8, 0.1);
}

.marker-red {
    border-left: 3px solid #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.marker-green {
    border-left: 3px solid #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

.marker-blue {
    border-left: 3px solid #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}
