/* ====================================================================
   BRUTAL LAUNCHER - Kernel tools menu
   ==================================================================== */

.io-launcher {
    background: var(--io-surface-raised);
    border: 1px solid var(--io-border);
    border-radius: 2px;
    width: 380px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 0 48px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1000;
}

.io-launcher::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        var(--io-accent-glow) 50%,
        transparent 100%
    );
    pointer-events: none;
}
.io-launcher-header {
    padding: var(--io-space-lg);
    border-bottom: 1px solid var(--io-border-subtle);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.io-launcher-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--io-space-lg);
    right: var(--io-space-lg);
    height: 1px;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(var(--io-border-fade-base), 0.3) 15%,
        rgba(var(--io-border-fade-base), 0.6) 50%,
        rgba(var(--io-border-fade-base), 0.3) 85%,
        transparent 100%
    );
    pointer-events: none;
}

.io-launcher-title {
    font-size: 13px;
    color: var(--io-text-primary);
    text-transform: lowercase;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: var(--io-space-sm);
}

.io-launcher-title i {
    color: var(--io-accent);
    font-size: 11px;
}

.io-launcher-close {
    background: transparent;
    border: none;
    color: var(--io-text-tertiary);
    cursor: pointer;
    font-size: 14px;
    transition: all var(--io-transition-base);
}

.io-launcher-close:hover {
    color: var(--io-accent);
}

.io-launcher-list {
    padding: var(--io-space-md);
    display: flex;
    flex-direction: column;
    gap: var(--io-space-sm);
    overflow-y: auto;
}

.io-launcher-item {
    display: flex;
    align-items: flex-start;
    gap: var(--io-space-md);
    padding: var(--io-space-md);
    background: var(--io-surface-base);
    border-left: 2px solid var(--io-border);
    cursor: pointer;
    transition: all var(--io-transition-base);
    color: var(--io-text-secondary);
}

.io-launcher-item:hover {
    background: var(--io-surface-hover);
    border-left-color: var(--io-accent);
    color: var(--io-text-primary);
}

.io-launcher-item:hover .io-launcher-icon {
    color: var(--io-accent);
}

.io-launcher-icon {
    font-size: 18px;
    color: var(--io-accent);
    opacity: 0.6;
    margin-top: 2px;
    transition: all var(--io-transition-base);
    flex-shrink: 0;
}

.io-launcher-content {
    flex: 1;
}

.io-launcher-label {
    font-size: 12px;
    color: var(--io-text-primary);
    text-transform: lowercase;
    letter-spacing: 0.02em;
    margin-bottom: 2px;
}

.io-launcher-desc {
    font-size: 10px;
    color: var(--io-text-tertiary);
}

.io-launcher-list::-webkit-scrollbar {
    width: 6px;
}

.io-launcher-list::-webkit-scrollbar-track {
    background: transparent;
}

.io-launcher-list::-webkit-scrollbar-thumb {
    background: var(--io-accent-subtle);
    border-radius: 3px;
}

.io-launcher-list::-webkit-scrollbar-thumb:hover {
    background: var(--io-accent);
}