/* Logo Typewriter Animation */
.cs-logo-link { text-decoration: none !important; }
.cs-logo-text {
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: #96f0aa;
    white-space: nowrap;
    display: inline-block;
    min-width: 80px;
}
.cs-logo-text .core-name { color: #fff; }
[data-bs-theme="light"] .cs-logo-text { color: #0d8a3a; }
[data-bs-theme="light"] .cs-logo-text .core-name { color: #2d2d3a; }
.cs-logo-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    background: #96f0aa;
    vertical-align: text-bottom;
    margin-left: 1px;
    opacity: 0;
    transition: opacity 0.15s;
}
.cs-logo-cursor.active {
    opacity: 1;
    animation: logoBlink 0.7s step-end infinite;
}
[data-bs-theme="light"] .cs-logo-cursor { background: #0d8a3a; }
@keyframes logoBlink { 50% { opacity: 0; } }
